erutherford
Active Member
- Joined
- Dec 19, 2016
- Messages
- 453
I have a simple splash form that closes after .05 seconds. At the end of the splash form closing, I want to open an other form.
End Sub
I thought it would work the same as "sheets!", but nope. any ideas? still searching.
thanks
Code:
Private Sub UserForm_Activate()
Application.OnTime Now + TimeValue("00:00:04"), "KillTheForm"
Form("UserForm1").Select
End Sub
I thought it would work the same as "sheets!", but nope. any ideas? still searching.
thanks