Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Option Explicit
Dim str As String
Private Sub Form_Load()
Me.KeyPreview = True
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
str = str & Chr(KeyAscii)
If str = "vinner" Then
MsgBox "You have opened an easter egg."
End If
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
Static Timeout As Double
If (Timeout <> 0) Then
if (Timer > Timeout) Then Str = ""
End If
Timeout = Timer + 2
str = str & Chr(KeyAscii)
If str = "vinner" Then
MsgBox "You have opened an easter egg."
End If
End Sub