Sep 10, 2002 #1 fludan Technical User Feb 1, 2002 41 US Hi I would like to run a macro after the form is open for 20sec. I don't no how to do with with a event procedure Pleas Help Thanks Frank
Hi I would like to run a macro after the form is open for 20sec. I don't no how to do with with a event procedure Pleas Help Thanks Frank
Sep 10, 2002 #2 SiJP Programmer May 8, 2002 708 GB Code: Private Sub Form_Open(Cancel As Integer) DoCmd.Maximize Me.TimerInterval = 20000 End Sub Sub Form_Timer() Call MACRONAME End Sub Upvote 0 Downvote
Code: Private Sub Form_Open(Cancel As Integer) DoCmd.Maximize Me.TimerInterval = 20000 End Sub Sub Form_Timer() Call MACRONAME End Sub