I have a simple vfp project with one program (ppp), and one form (ppp). The form is an empty form, and the progran contains this:
SET DELETED ON
SET DATE TO DMY
SET SAFETY OFF
_screen.visible=.F.
DO FORM ppp
READ events
RETURN
I build the project to an .exe using the project manager and no errors appear, and I can execute the .exe from the main FoxPro window without any problem.
However, when I double-click the exe from Windows nothing happens. What am I doing wrong?