The following code is on a form, and isn't doing what I want it to do.
Private Sub Timer1_Timer()
If Timer1.Enabled = True Then
cmdStart.Visible = False
Else
cmdStart.Visible = True
End If
End Sub
The command button is visible when the form loads, contrary to my desire. I want the form, which is a splash screen to load, then after about 12 seconds, the cmdStart command button appears. Allowing the user to start the actual program. By the way, the timer interval is set to 12,000. I think that is equal to 12 seconds
Thanks,
Sal
