Search results

  1. webguy22

    ExeOutput 2 Beta

    Thanks for replying. Tried the above possible solutions but can still see the PHP source. Is this just an part of the input file normal behavior that cannot be avoided? Obviously, one purpose of ExeOutput is to protect the PHP source. Any news on the query alert issue?
  2. webguy22

    ExeOutput 2 Beta

    Saw something else. When using a simple input type=“file” name=“file1”, with debugging turned on or off, and when trying to open a file in the same directory as the executing EXE file, I see multiple files associated the the EXE and also the source files (in my case, in a folder called src).
  3. webguy22

    ExeOutput 2 Beta

    Please try example 1
  4. webguy22

    ExeOutput 2 Beta

    You can grab it from this link: http://www.tutorialscollection.com/jquery-alert-how-to-use-alert-box-in-jquery-with-code-and-running-example/. Will this work?
  5. webguy22

    ExeOutput 2 Beta

    No. No events have been added. Just attaching the script code, in the PHP source, to display a jquery version of a javascript alert.
  6. webguy22

    ExeOutput 2 Beta

    I did determine that when the external call (via script in the index.php file) to the 3rd party code file jQuery.js is removed, the close X works. I have yet to determine if there is some sort of conflict with the windows close.
  7. webguy22

    ExeOutput 2 Beta

    Regrading “In my testing, if you click the title bar close X, the exe locks up. File -> Exit Application works fine (as long as you haven’t already clicked title bar close X)”, it fails when using jquery alert code. Code is located here...
  8. webguy22

    ExeOutput 2 Beta

    In my testing, if you click the title bar close X, the exe locks up. File -> Exit Application works fine (as long as you haven’t already clicked title bar close X).
  9. webguy22

    How to set up a exo_return_hescriptcom call in a form or link

    Joe, thank you. That’s what I was looking for, but it the compiled exe file was still failing to read the file. It does work with ExeOutput2.
  10. webguy22

    How to set up a exo_return_hescriptcom call in a form or link

    Just asking for a little help before I purchase the product. Is that too much to ask?
  11. webguy22

    How to set up a exo_return_hescriptcom call in a form or link

    I previously reviewed that link but couldn’t get it to do what I want. I guess I’m not explaining this well enough. Are there code examples to do exactly what a form INPUT/FILE does to work with ExeOutput to get a local file?
  12. webguy22

    How to set up a exo_return_hescriptcom call in a form or link

    I know I can use the example you provided: echo “Asking for filename… ”; // Executes HEScript to call the system dialog “Open”… $filename = exo_return_hescriptcom(“UserMain.OpenDlgFile”, “Error”); // The $filename variable contains the full path to the file selected by the user. It can be...
  13. webguy22

    How to set up a exo_return_hescriptcom call in a form or link

    I would like to use the INPUT/FILE element, but once the PHP code is compiled, it no longer works. Assume because of this: http://www.exeoutput.com/help/choosingfilesupload. So how do you still use INPUT/FILE element when using ExeOutput for local file retrieval?
  14. webguy22

    How to set up a exo_return_hescriptcom call in a form or link

    Does anybody have a code example of how to replace a standard HTML form input type=‘file’ … with exo_return_hescriptcom(“UserMain.OpenDlgFile”, “Error”); I looked everywhere and could not find an example. I want the user to click on a link or button to get a local file. Probably a simple to do...
  15. webguy22

    Temp directory "Data" [SOLVED]

    Thank you for replying, and your help.
  16. webguy22

    Temp directory "Data" [SOLVED]

    Thank you for replying. So how best to handle the php function to return the current directory? Use the HEScript function as you described?
  17. webguy22

    Passing parameters to an exe when reloading via Javascript

    Thank you for replying. Wasn’t sure if I could call the exe from Javascript. I found a workaround using PHP to reload the page (and do what I needed to do without calling javascript). I now better understand how ExeOutput works too. You can close this topic.
  18. webguy22

    Temp directory "Data" [SOLVED]

    When executing PHP getcwd() function to get current directory (http://php.net/manual/en/function.getcwd.php), it returns the last folder as Data. For example, running an .exe built by ExeOutput in file structure D:/TEST/PROGRAMS. When executing getcwd(), it returns D:/TEST/PROGRAMS/Data. Per...
  19. webguy22

    Passing parameters to an exe when reloading via Javascript

    Yes, that fixed that issue. Thank you. Regarding calling the program, with a query, in javascript, I guess I could set a global variable instead of using the query. But I’m not sure of the syntax to use to call/reload the exe. Can you help? Please see self.location. function reload(form) {...
  20. webguy22

    Passing parameters to an exe when reloading via Javascript

    This is a followup to topic http://www.gdgsoft.info/how-section-f41/can-pass-parameters-the-exe-t2456.html First, I placed the above PHP code at the top of my PHP file right after session_start();: <?php print_r(exo_return_hescriptcom("MyScript.GetPassedParameter|1","HESCRIPT_MISSING")); ?> And...
Back
Top