Search results

  1. D

    Windows 8 problem

    yes we run as=> administrator the exe file.
  2. D

    Windows 8 problem

    We are running with administrative privileges only but it does not work.
  3. D

    Windows 8 problem

    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...
  4. D

    Windows 8 problem

    how to send you, attach file not supporting .exe file in your forum
  5. D

    Windows 8 problem

    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.
  6. D

    Cpu id

    Please see the above posts. Please tell Is there any HESCRIPT which gives the actual cpu id like what is generated by Javascript, and if not then whats the way out.
  7. D

    Cpu id

    I am using the following hescript to create cpuvalue. procedure cpuidvalue; var S2: String; begin S2 := GetManualHardwareID(2) SetGlobalVar(“cpuvalue”, S2, False); end; Please answer for both my questions: is there any HESCRIPT which gives the actual cpu id. If not, whether cpuid created by...
  8. D

    Cpu id

    HI, This function window.external.GetGlobalVariable(‘cpuvalue’, ‘none’); gives value like: B668ED322C6878F683A9DF2F0BDDBBEB where as the actual cpu id which is received through javascript, is: BFEBFBFF000206A7 is there any HESCRIPT which gives the actual cpu id. If not, whether cpuid created...
  9. D

    Taking value from javascript to hescript (SOLVED)

    Thanks for the help. One point to note, if I use True, it is not working, I have removed it and now its working perfectly.
  10. D

    Taking value from javascript to hescript (SOLVED)

    The variable is now correctly setup. But when I use the following hescript procedure bms4; var S3: String; begin S3 := GetGlobalVar(rnumber1,“7777”, True); WriteRegStr(4,“SOFTWARE\BMS79”,“SAN5”,S3); end; it gives me error as unknown identifier ‘rnumber1’ whereas this is the name of global...
  11. D

    Taking value from javascript to hescript (SOLVED)

    Hi, Can I take a javascript variable value to hescript. Is this possible. Basically, I want to generate a random number in javascript and then want to transfer its value to registry. For writing to registry I am using hescript function WriteRegStr, so i want to use the value in writeregstr...
  12. D

    Problem with users using IE9

    Yes, but http://heserver do not work.
  13. D

    Writing and reading to/from Windows Registry in an ebook

    I need examples of HEscript for writing to registry and reading from registry, please provide some examples. I also need to pass key and value to the registry which will be through a variable. please provide some examples.
  14. D

    Problem with users using IE9

    I am not able to redirect the page from my website. See here how it works: I check the serial entered by my user at my website say http://www.xyz.com/serial.asp if the serial is correct and matches to my database, the serial.asp page will redirect the user to our publication through...
  15. D

    Problem with users using IE9

    Please also send me password for beta 4 release. I am not able to PM you.
  16. D

    Problem with users using IE9

    They get a blank page it never gets loaded. It looks after checking the value at my website on internet they are not able to return to the publication at local computer. I use response.redirect(“ghe://heserver/mso.html”) in my website. It works fine on earlier IE.
  17. D

    Problem with users using IE9

    Hi, I have been distributing my publication to various users. But recently I started facing one problem. With users using IE 9, my command of %url% is not working. I am checking some input from my user, checking it online through my website and the redirecting the user to my publication...
Back
Top