Revision: 41061
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at February 11, 2011 09:43 by heislekw
Initial Code
' Change Timer value from default of 0 to something like 200
Private Sub Form_Timer()
' error trap is used to process situations when a form is clicked outside of the popup form
On Error GoTo NotForm:
If Me.Name = Screen.ActiveForm.Name Then Exit Sub
NotForm:
DoCmd.Close acForm, Me.Name, acSaveNo
End Sub
Initial URL
Initial Description
Initial Title
Make popup form close when user clicks outside of it
Initial Tags
Initial Language
Visual Basic