Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

In VFP5 PRO how make my splash screen?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
0
0
I need change default Splash screen in VFP 5 PRO. How make this?
 
If you talking about the development environment, just add a -t to your shortcut to stop it. i.e.
"C:\Program Files\DevStudio\VFP\vfp.exe" -t -cC:\VFP50\config.fpw

Rick
 
Another alternative is to create a text file called config.fpw, include the line SCREEN = OFF and add this in your project. When it's compiled, the foxpro screen should never appear as well.

The advantage to this is that you wont need to include additional parameters in the shortcut and the brief flash of the screen won't appear.

Stephen
 
TangoZulu

Another interpretation of your question is that you want a splash screen specific to an application.

Could you clarify your question, please?

Chris [pc2]
 
Hi, just put this code in the main program (prg)

hide window screen
set talk off
do form wsplash
wait "" timeout 2

wsplash.release
rele wind wsplash

...


It will show form wsplash for 2 seconds.

In form designer create the form wsplash, adjust the size you want, put the picture u want and this properties:

AlwaysOnTop=.t.
AutoCenter=.t.
ControlBox=.f.
Desktop=.f.
MDIForm=.f.
ShowInTaskBar=.f.
ShowWindow=2-As Top-Level Form


Sergio M. Netto.


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top