Form timer

J

jonudden

I want a form to close after 2min. The form i want to close is th
welcome form, so it would be closing the DB. Anyone know how t
accomplish this
 
D

Douglas J Steele

In the form's Load event, put the line

Me.TimerInterval = 120000

to set the timer for 2 minutes.

Put the logic to close the form in the form's Timer event.
 
Top