B
Banaticus
From http://support.microsoft.com/?kbid=209984
Private Sub ExitMicrosoftAccess_MouseDown(Button As Integer, Shift _ As
Integer, X As Single, Y As Single)
If Shift And acCtrlMask Then
DoCmd.Close
End If
End Sub
What's this "If Shift"? Where's this Shift come from and how does the Sub
get the acCtrlMask variable?
Private Sub ExitMicrosoftAccess_MouseDown(Button As Integer, Shift _ As
Integer, X As Single, Y As Single)
If Shift And acCtrlMask Then
DoCmd.Close
End If
End Sub
What's this "If Shift"? Where's this Shift come from and how does the Sub
get the acCtrlMask variable?