Recent content by sysadm

  1. S

    Just want to say "Thanks!"

    I just figured out that data is irrelevant… as long as you put the right data in the APPLICATION OUTPUT, RESOURCES. It does retain that data, and when the End User right mouse button on .exe all is good! 🙂 This is correct right? SysAdm
  2. S

    Just want to say "Thanks!"

    Maybe my question will get answered here quicker… I had emailed support already. I did a SEARCH and did not find an answer, so here it goes: After purchasing a Registered Version of ExeOutput, under ENVIRONMENT OPTIONS, DEFAULT SETTINGS, it keeps defaulting back to the original data. No matter...
  3. S

    Just want to say "Thanks!"

    Finally purchased a copy today!!! Woo Hoo!! 😛 Just want to say thanks for a great product!! 😃 Our website will launch this week, product was made using ExeOutput!! Thanks again… SysAdm
  4. S

    Cookies

    Thanks for the clarification… One thing about the 30 day expiration for ExeOutput, the .exe that is created with the trial version DOES expire in 30 days correct? To clarify, if you make an .exe with the trial version, and the End User does not have ExeOutput installed, doesn’t the .exe EXPIRE...
  5. S

    Cookies

    O.k… instead of starting a new post since this all related, I’ll continue my questions in this post… Here it goes… **I would like to have my finished .exe file expire after X amount of times it has been run or TIMED by number of days. ** Issues with this that I see: **A.** If I use the Trial...
  6. S

    [SOLVED] Want to minimize active Window

    I kind of have it working!!! I put this in the UserMain file: function GetActiveWindow(): LongWord; external "[email protected] stdcall"; function ShowWindow(hWnd : LongWord; nCmdShow : LongWord): LongWord; external "[email protected] stdcall"; Const SW_MINIMIZE = 6; procedure...
  7. S

    Cookies

    I’m not… this was a hypothetical concept, I haven’t actually tried it!! Would it work??? Thanks in advance… SysAdm
  8. S

    [SOLVED] Want to minimize active Window

    That is correct… I know I can call the function using PHP, but I need the actual function… Example: Thanks in advance… SysAdm
  9. S

    Cookies

    So does this mean I could have a variable set in : window.external.SetGlobalVariable(name, value, true); Like this: window.external.SetGlobalVariable(runs, 5, true); Then have some PHP code increment the number of times the .exe has been launched and when it reaches the 5 number of times have...
  10. S

    [SOLVED] Want to minimize active Window

    Well I just got back to using EXEOutput again… Quick minimize question… this has nothing to do with using tray icon or not… What I need is the main window to minimize on a Sample HTML code: <form action="searching.php" method="post"> <input type="submit" name="submit" value="SEARCH"> </form>...
  11. S

    (SOLVED) - Need a simple example of UserMain pop-up window

    Thank you for the link… that worked perfectly… 😛 SysAdm
  12. S

    (SOLVED) - Need a simple example of UserMain pop-up window

    I need a simple working example of using UserMain.OnDisplayWindow and UserMain.OnCloseWindow without user interaction… In other words, I would like to “popup” a window that has an animated SEARCHING.gif image and then close this window automatically using OnCloseWindow function when the search...
  13. S

    (SOLVED) - SAVE from menu and as HTML file format?

    Got it!!! Instead of using HESscript - (UnpackTemporaryResource) to copy the logo.jpg I ended up using straight PHP: <?php $storagelocation = exo_getglobalvariable('HEPubTempPath', ''); $lfile = 'logo.jpg'; $filename = $storagelocation."\\$lfile"; copy($lfile, $filename); ?> This...
  14. S

    (SOLVED) - SAVE from menu and as HTML file format?

    Correct me if I’m wrong… but if I want to unpack a file called logo.jpg that is in my compiled .exe, in the root folder, then in my HEScript I have: function UnpackTemporaryResource(const SourceName: String): String; begin end; Then I call this in my PHP like this?: exo_runhescriptcom...
  15. S

    (SOLVED) - SAVE from menu and as HTML file format?

    I’m getting closer… Issue is exo_needcompanionfile() - I’m including my HTML logo images in the .exe build in a folder called iart How can I use the exo_needcompanionfile() command correctly to copy my images that are in the iart folder to the users Temp/folder so my HTML pages that are being...
Back
Top