> >
> > Hi Borislav,
> >
> > Thank you so much for your quick response.
> > I did as you suggested. My configuration file (Configscreen.fpw) is included in the project as a Text file. It contains the following commands:
> >
> >
> > Date=British
> > DELETED=ON
> > EXCLUSIVE= OFF
> > Hours = 24
> > Century = ON
> > SCREEN=OFF
> >
> >
> > I rebuilt the project, however, I still get the flash when the application launches. My application is a simple prg file with the following code.
> >
> >
> > CLEAR ALL
> > CLOSE ALL
> > SET TALK ON
> > SET SAFE OFF
> > SET EXCLUSIVE OFF
> > SET DELETED ON
> > SET DATE TO ANSI
> > SET CENTURY ON
> > SET HOURS TO 24
> > SET NEAR OFF
> >
> > SET DEFAULT TO ....
> > SET PATH TO ....
> >
> > _VFP.Visible = .F.
> > _Screen.Visible = .F.
> >
> > LOCAL loSeconds
> >
> >
> > USE Data\MySQLQueueLog
> > GO BOTTOM
> > loSeconds = VAL(SYS(2)) - (HOUR(created)*3600+ MINUTE(created)*60+ SEC(created))
> > USE IN MySQLQueueLog
> >
> > IF loSeconds > 600 && seconds
> > * Some code
> > ENDIF
> > quit
> >
> >
> >
> > I tried removing the _VFP.Visible and _Screen.Visible commands, but that also did not help. I am missing something. Any suggestion?
> >
> > Thank you for your help.
> >
> > - Ravi Taxali
> >
Visual FoxPro Made Simple -- An excellent book for beginners as well as experienced programmers
>
>
> No, NOT Configscreen.fpw it SHOULD be named Config.fpw.
> VFP looks for Config.fpw by default.
>
> -----------------
> 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.Hi Borislav,
It works!
Thank you so much for your help.
- Ravi Taxali
Visual FoxPro Made Simple -- An excellent book for beginners as well as experienced programmers