Recent content by Fenoma

  1. F

    Error on running app

    Hi, this is the computer of my client, and the only thing I could rescue was this event viewer report. Is there another way to get more information about the error? I know that there is not another service like wamp or xampp. thanks
  2. F

    Error on running app

    I compiled my app with version 2024.2 and when i run it in windows 11, it crashes without any alert. When i check on windows event viewer i get this error: Faulting application name: FactoriApp.exe, version: 1.3.0.4, time stamp: 0x67688e63 Faulting module name: unknown, version: 0.0.0.0, time...
  3. F

    Heexternal doesn't work anymore

    I compiled my app with the new versión 2024.2 and now the heexternal doesn’t work anymore. I had this function: function OpenBrowser(website) { //EXEOUTPUT console.log(website); url = "heexternal://" + website; location.href = url; } Why? How can I open a URL with the default browser now?
  4. F

    Missing Visual C++ redistributable for Visual Studio 2019 x86

    Hi, this happened in a client’s computer. The app was running without any issues until last thursday. I’ve been reading in some forums that the last update of windows 11 created problem with this component, but I’m not so sure. I don’t know if Microsoft will release a patch or fix, but it seems...
  5. F

    Missing Visual C++ redistributable for Visual Studio 2019 x86

    Hi GianBarbera, I had the same issue last week on thursday. could you solve it? I checked on “Programs and Features” and in the register of window (HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\VisualStudio\14.0\VC\Runtimes\x86) and it showed installed. Also I paste in my app folder the...
  6. F

    Open external File with default application

    Hi thanks for the reply. Yes I figure that could be missing the UserMain, but still getting the same error. It’s really strange, because I use other procedures like MinimizeWindow: exeoutput.RunHEScriptCom(“UserMain.MinimizeWindow”); and works perfect, but for some reason any new script that I...
  7. F

    Open external File with default application

    Hi OldTeacher, thanks for the reply. The problem is not about syntax. Actually when I include it in the UserMain script, it doesn’t alert any syntax issue and save it without problem. The problem is that Exeoutput doesn’t recognize the procedure (Unknown Method). I also tried with heopenit and...
  8. F

    Open external File with default application

    Im trying to set a script to open a file with the default application of windows. I have some Powerpoint files that i need to open with the microsoft app and im using this: procedure OpenAFile(FilePath: String); var res: integer; begin res := OpenFile(FilePath, “”, SW_SHOWNORMAL); if res < 32...
  9. F

    Go back to exeoutput 2021

    Hi!, oh that sounds amazing. Sure here is the link to download the files: https://wetransfer.com/downloads/dd6ef09103d9e2b93b7095b1a0d6b00320240924183448/ef572159052f6d125f0dd196f214931a20240924183504/c1a720?trk=TRN_TDL_01&utm_campaign=TRN_TDL_01&utm_medium=email&utm_source=sendgrid Anyway I...
  10. F

    Go back to exeoutput 2021

    Hi Matthias, thanks for the reply. Sadly my app is in kiosk mode, so no chances to resize the window. Still strange problem, with the 2021 version was very stable and the app doesn’t consume high resources, so i will try to go back and see if it works.
  11. F

    Go back to exeoutput 2021

    Hi, Im having serious issues with chromium in version 2024. I constantly get blank pages and when I check errors in PHP or Javascript everything looks OK. However, if I go to the devTools I get the message “Debugging connection was closed. Reason: Render process gone”. Which suggest chromium...
  12. F

    Disable Multithread seems not work

    Yes I can see that. But the problem is that I’m getting blank pages randomly. When I check if there are any error on PHP, nothing. Then I go to the dev Tools and i get the error: “DevTools was disconnected from the page” and doesn’t show anything. If I reload the page manually (from the context...
  13. F

    Disable Multithread seems not work

    Hi, i’m having problems with the load of pages. Sometimes i get a blank page. I read that could be because of multithreading, so I disabled it. However, when i see the process in the task Manager, the application still show several processes running. Can you help me please
  14. F

    Run PHP 7.4 in Exeoutput 2024

    Thanks again. What I did finally was move the app to PHP 8.1 and fix the compatibility issues. Seems to work ok. I will close the request.
  15. F

    Run PHP 7.4 in Exeoutput 2024

    Hi, thanks for the reply. I already check everything. At first i got an alert about not having PHP 7.4 with a link to download it. In the list it didn’t show up. I went to php page and download the PHPRuntime74 and copy to the folder of ExeOutput, and the alert didn’t show up anymore, but the...
Back
Top