Windows 8 problem

delhipro

New member
in windows 8, when I click on my publication, it shows this error.

unable to download index.html from heserver.
unable to open this internet site. The requested site is either unavailable or can not be found. Please try again later.

index.html is my home page while compiling the publication.
 
Last edited:
Cannot reproduce the problem. Could you send your publication to us?
BTW does the help file of HTML Executable work for you?
 
Last edited:
You can for instance zip the files and upload the archive to http://demo.ovh.com/en. This is a free and ad-free secure hosting service: after upload, they will give you a URL. Please send me this URL so I can download the Zip archive.
 
Last edited:
procedure bms4;
var
S3: String;
S4: String;
begin
S3 := GetGlobalVar(“rnumber1”,“564”);
S4 := GetGlobalVar(“rnumber2”,“4”);
WriteRegStr(4,“SOFTWARE\ABC1”,“XXX4”,S3);
WriteRegStr(4,“SOFTWARE\DEF1”,“YYY3”,S4);
end;

This HE Script is working perfectly, on windows xp, but on windows 8, this script is unable to write anything to the registry please check.
 
Last edited:
WriteRegStr will only work in HKEY_LOCAL_MACHINE if the EXE is run with administrative privileges. Otherwise it will fail due to security restrictions. Try to switch to another key if possible like HKEY_CURRENT_USER or run your EXE elevated (Run as => Administrator).
 
Last edited:
Back
Top