« weekday or weekend sheet formula: Formula Excel | Main | Select certain sheets in workbook: VBA Excel »
Sunday
Jul152007

Create a time delay (pause): VBA Excel

Private Sub Workbook_Open()
Application.OnTime EarliestTime:= _
Now + TimeValue("00:00:08"), Procedure:="EndSplash"
UserForm1.Show
End Sub