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.
Private Sub Text2_DblClick(Cancel As Integer)
DoCmd.OpenForm "frmpopnotes"
End Sub
Private Sub txtnotespopup_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
If KeyAscii = 13 Then
Forms!form1!Text2 = Forms!form1!Text2 & txtnotespopup & " " & Now & vbCrLf
txtnotespopup = ""
End If
End Sub