I figured it out myself guys. If anyone is trying to do the same thing, I had to add "Form" in front of the form name.
eg.
Private Sub Form_Load() Dim strUser As String Dim strApp As String strUser = Environ("username") strApp = "Form frmTest1" Me.txtUser = strUser Me.txtLink3 = strApp...
I am most likely considered an advanced novice to programming in VBA.
I am trying to add a feature in my database dashboard that shows a list of hyperlinks that are the most frequently used forms and reports based upon the user. I can figure out how to capture the event each time the form or...