I want my splash form to appear for 5 seconds.<br>
<br>
Private Sub MDIForm_Load()<br>
<br>
frmSplash.Show<br>
Sleep 5000<br>
Unload frmSplash<br>
mdiMain.Show<br>
<br>
End Sub<br>
<br>
The project's Start-up object is mdiMain.<br>
<br>
Problem: Only the frame for the splash is visible for 5 seconds, (then the MDI form appears). <br>
<br>
Question: Why is the splash form itself not visible? <br>
Tried making the splash an MDI-child...did not help.<br>
<br>
Thanks from a beginner. John<br>
<br>
Private Sub MDIForm_Load()<br>
<br>
frmSplash.Show<br>
Sleep 5000<br>
Unload frmSplash<br>
mdiMain.Show<br>
<br>
End Sub<br>
<br>
The project's Start-up object is mdiMain.<br>
<br>
Problem: Only the frame for the splash is visible for 5 seconds, (then the MDI form appears). <br>
<br>
Question: Why is the splash form itself not visible? <br>
Tried making the splash an MDI-child...did not help.<br>
<br>
Thanks from a beginner. John<br>