> > I need to run a simple VFP EXE that checks some tables and sends an Email, if required every half an hour through Windows Task Scheduler. (For some reason, I can't have the application running all the time and perform the task through a VFP Timer.) I don't want to display the application on the screen when it launches. I used the following commands in the application.
> >
> >
> > _VFP.Visible = .F.
> > _Screen.Visible = .F.
> >
> >
> > Though the application does not show on the screen, I see a flash on the screen before it minimises on the Taskbar. Is it possible to remove the flash when the application launches?
> >
> >
> > - Ravi Taxali
> >
Visual FoxPro Made Simple -- An excellent book for beginners as well as experienced programmers
>
> Setting Visible property in the application is too late :-)
> Make an Config.FPW file and put this line in it:
> SCREEN=OFF
> Built this file IN the EXE.
>
> -----------------
> Borislav Borissov
>
>
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller>
The only thing normal about database guys is their tables.I included "SCREEN=OFF" in a configuration file and started VFP with that configuration file. Then built the application. It did not work and I still see the flash. Besides, I did not get -- "Built this file IN the EXE."
Do I need to specify the configuration file in the main file of my application? How?
Thank you so much.
- Ravi Taxali
Visual FoxPro Made Simple -- An excellent book for beginners as well as experienced programmers