devxlogo

Exe Pops Up and Closes Immediately

Exe Pops Up and Closes Immediately

Question:
I have written a simple application with one form. I compiled the project as an .exe. My exe works fine if I am inside VFP, but when I make a shortcut to this exe on my desktop and try to run it, the form flashes by quickly and closes.

I did have FoxPro 2.6 installed on my machine, but made sure all the references to cdx, etc. were now pointing to VFP. What am I doing wrong?

Answer:
In Fox 2.x apps it was necessary to create what was referred to as a “foundation read.” This read level (e.g., READ VALID glDontQuit) was used as an event loop: a loop that kept the application alive and waiting for events to occur. When it was time to leave the application, the READ VALID expression (glDontQuit) was set so that the read was ended, allowing the executable to end.

VFP has a command called READ EVENTS that does this for you. READ EVENTS starts the VFP event loop, and ends the event loop only when you execute the command CLEAR EVENTS.

Put the following code in the main program of your executable:

DO FORM MyFormREAD EVENTS

In the Click event of the button on MyForm that is supposed to close the application, put the following:

CLEAR EVENTS

This will end the event loop that keeps the executable in memory. The code that follows the READ EVENTS command then will execute.

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist