D
Dennis Que
Access 97 used the SetTimer function on its startup screen for Loge and
other information. I tried to use this in Access 2000 and it would not work.
Does anyone know what replaced the "SetTimer" that was in 2000.
________________________________
Function SetTimer()
' Set the timer for 10 seconds.
Forms![Startup].TimerInterval = 1000
End Function
Function CloseNewStartupfrom()
Reset the TimerInterval property.
If Forms! [Startup]. TimerInterval <> 0 then
Forms![Startup].TimerInterval = 0
End If
' Close the Startup form, and open the Main Switchboard form.
DoCmd.OpenForm "Main switchboard"
DoCmd.Close acForm. "Startup"
End Function
other information. I tried to use this in Access 2000 and it would not work.
Does anyone know what replaced the "SetTimer" that was in 2000.
________________________________
Function SetTimer()
' Set the timer for 10 seconds.
Forms![Startup].TimerInterval = 1000
End Function
Function CloseNewStartupfrom()
Reset the TimerInterval property.
If Forms! [Startup]. TimerInterval <> 0 then
Forms![Startup].TimerInterval = 0
End If
' Close the Startup form, and open the Main Switchboard form.
DoCmd.OpenForm "Main switchboard"
DoCmd.Close acForm. "Startup"
End Function