Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Splash blues - a sequel
Message
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00637415
Message ID:
00637464
Views:
18
Marc,

You could have the second splash screen release the first one in its Activate event.
* Launcher
DO FORM My1stSplash NAME loSplash

...

Do AppStartup WITH loSplash
* AppStratup
LPARAMETERS poSplash
DO My2ndSplash WITH poSplash
* My2ndSplash Init event
LPARAMETERS poOldSplash
Thisform.oOldSplash = poOldSplash
* My2ndSplash Activate event
IF TYPE("Thisform.oOldSplash.Name") = "C"
   Thisform.oOldSplash.Release()
ENDIF
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform