Screen Pop-Up in Access Question

illy2k

Registered User.
Local time
Today, 13:03
Joined
Apr 21, 2003
Messages
51
Has anyone ever seen in some programs, where the developer has a splash screen, where you strike several keys at the same time, and a screen pops up that says created by _____, and ect. Does anyone know how to accomplish this in access?
 
You could try something like this:

Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)Dim intCtrlDown As Integer

intCtrlDown = (Shift And acCtrlMask) > 0

Select Case KeyCode

Case vbKeyF2

If intCtrlDown Then
Msgbox "Hey...you pressed Ctl+F2"
KeyCode = 0
End If
End Select

End Sub
 
try this
 

Attachments

Users who are viewing this thread

Back
Top Bottom