I illy2k Registered User. Local time Today, 13:03 Joined Apr 21, 2003 Messages 51 Apr 24, 2003 #1 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?
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?
jfgambit Kinetic Card Dealer Local time Today, 13:03 Joined Jul 18, 2002 Messages 798 Apr 24, 2003 #2 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
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
chewy SuperNintendo Chalmers Local time Today, 13:03 Joined Mar 8, 2002 Messages 581 Apr 24, 2003 #3 try this Attachments easter egg.zip easter egg.zip 9.9 KB · Views: 157