Search results

  1. webguy22

    Exe sometimes freezes under 2024.2

    Under 2024.2 compile, sometimes the exe will lock up / freeze when doing a simple task like clearing a form input file, javascript command, or even exiting the exe. Stopping the exe, via Task Manager, and then trying to reload the exe only displays the top menu items and “Please wait…” - it...
  2. webguy22

    Running two ExeOutput versions on computer

    Is there a way to run both 2024.2 and 2024-1-2 on a computer? I’m running into a problem with 2024.2 and wonder if it’s my PHP script or 2024.2. Would like to compile under 2024-1, where it used to work, just to check. But when I try to install 2024-1-2 via download exophpsetup2024-1-2.exe it...
  3. webguy22

    New Version of ExeOutput?

    Is a new version of ExeOutput in the works? Getting close to three years without one.
  4. webguy22

    CSS accent-color not working

    Using accent-color:black to modify the color of a radio button in a form. Using ExeOutput 2021.0, when project is compiled, CSS accent-color defaults to blue. On my localhost, using Chrome versions 114.0.5735.199 (Official Build) (64-bit), the radio button is black. Is also black using Firefox...
  5. webguy22

    Toolbar icons revert back to glowing when not pressed

    Example 1: Home icon clicked. Icon glowing but glow turned off when mouse leaves toolbar. Ok, seems to be the correct action. Call a non-Home page. This page has a link to open a file using OpenFile. If that link is clicked (file opened in notepad) and file is closed, the most recent toolbar...
  6. webguy22

    Compressing the final .EXE file with UPX

    Under Deployment, when “Compress the final .EXE file with UPX (may require additional build time)” is checked, the .exe loads slower. Checked: filesize 65,901KB. Loads in 16 seconds. Unchecked: filesize 75,004. Loads in 8 seconds. Why is this happening?
  7. webguy22

    Zoom Toolbar Action Settings

    When using Zoom Out or Zoom In, how much (percentage wise) is each zoom incremented (or decremented)? 5%, 10%, etc. Can this percentage be changed? Let’s say it defaults to 10%, can I make it 5% increments? Is there a way to view or display the zoom percentage? For example, when you do a CTRL+...
  8. webguy22

    How to change height of toolbar icon

    I just want the words/caption in each toolbar icon. I was able to remove the png’s (right or wrong I entered 99 in ImageIndex (program blows up if empty) and blanked out Images) but cannot get the icon height to change. It’s currently at 65 and it will not let me change. On the GUI, I’m able to...
  9. webguy22

    Cannot get GetCurrentHTMLPagePath to work

    function DemoCallback(content) { alert("DemoCallback"); alert(content); } function clearFolders(oForm) { exeoutput.GetHEScriptCom('hescript://UserMain.GetHTMLPath',DemoCallback); } My UserMain: function GetHTMLPath: String; Begin MessageBox("Start GetHTML Path","Test",MB_OK)...
  10. webguy22

    Data folder (use of) clarification

    Two questions. (Using ExeOutput V2021.0) If everything is contained in the compiled exe, and the only calls outside the exe are to files located on an external web site, is a there any reason to deploy a Data folder with the application? If no, for a deployment using MySQL, then only the exe...
  11. webguy22

    Is there a way to check if MySQL server is connected (or not)?

    And avoid error message “WARNING: cannot start the portable MySql server…” when executing application. Application does proceed but, as expected, when trying to use MySQL get “PHP Fatal error: Uncaught Error: Call to a member function query()”. Connection can fail, for multiple reasons...
  12. webguy22

    Safe port to use for mySQL

    For setup, is there a port number, or a range, that’s pretty safe where a user will not be using (and to avoid a potential conflict)? I’m avoiding 3306. Thinking 3308 is probably ok. Assume there are better choices. Thanks
  13. webguy22

    UserMain - how to get a global variable

    How do I get a global variable in a UserMain function? Function AskFolder: String; Begin defaultDirectory := GetGlobalVar( ‘defaultDirectory’, “”); Result := SelectDirectory(“Choose a folder”, defaultDirectory); End; Did not work. Also tried exo_getglobalvariable. I’m probably missing...
  14. webguy22

    SelectDirectory - when setting a root, is it possible to select another folder?

    Is it possible to select another folder below the root in the folder selection dialog? Example: Result := SelectDirectory(“Choose a folder”, “C:\Users\Jim”); Will only show the Jim folder and it’s subfolders. But there’s no choice to go back to the Users and pick another folder, say Jean. 95%...
  15. webguy22

    GetGlobalVariable not working in JavaScript - SOLVED

    var dirs = exeoutput.GetGlobalVariable( ‘directories’, “”); alert(dirs); always returns undefined. exeoutput.SetGlobalVariable works fine in JS. Example: exeoutput.SetGlobalVariable( ‘directories’, “”, true ); Saw this post: Exeoutput.SetGlobalVariable problem where user said...
  16. webguy22

    Is there a step by step process to install a code signing certificate?

    I received my user.crt file from Comodo. In ExeOutput, under Security -> Code Signing, there’s a drop down with three choices: PFX File, Certificate Subject Name, and Certificate Thumbprint. Which one do I use? I don’t have a PFX File. Here’s what I did and the compiler result… Opened...
  17. webguy22

    Multiple processes running for one compiled exe

    Curious, but why is that? Have one compiled ExeOutput exe yet I see four processes running in Windows Task Manager when I execute the compiled program. All four do go away when I quit the exe.
  18. webguy22

    How To Implement a Progress Bar

    Forum post Progress Bar status changing talks about how to set up a progress bar. It said: Note that in ExeOutput 2, this will be easier. Something like: exo_runhescriptblock(“main.jauge.Value := 40;”); Question. Is it now exo_runhescriptcom instead of exo_runhescriptblock? And what’s the...
  19. webguy22

    Keyboard Shortcut Toolbar Control Action

    Is there a way to have the selected keyboard shortcut actually do the action instead of just highlighting the action on the toolbar? My toolbar is set up for keyboard shortcuts. Example C for Copy. Now, if you hit C on the keyboard, the Copy toolbar control is highlighted. Then the user still...
  20. webguy22

    Function GetClipboardText losing formatting

    For example, if I do a toolbar Copy and manually paste into a email, it formats fine: 1976 Cleveland Indians At 1976 Oakland Athletics 4/8/1976 Indians… 0 0 1 0 0 0 0 0 0 - 1 7 0 Athletics… 1 0 1 0 0 1 0 0 x - 3 6 0 But if I do a GetClipboardText to store into a variable and call the email...
Back
Top