Solved Print TempVars value to text? (1 Viewer)

mamradzelvy

Member
Local time
Today, 08:23
Joined
Apr 14, 2020
Messages
145
HI!
I'm trying to have a little piece of text on my menu form which would display the currently logged in user.
I handle the log in process via TempVars(UserName) but i'm unable to print it's values into text that would display on a form.
Any tips on how to go about this?
 

mamradzelvy

Member
Local time
Today, 08:23
Joined
Apr 14, 2020
Messages
145
HI!
I'm trying to have a little piece of text on my menu form which would display the currently logged in user.
I handle the log in process via TempVars(UserName) but i'm unable to print it's values into text that would display on a form.
Any tips on how to go about this?
Nevermind, trial and error has done the trick once again!

Code:
Me.txtStats.Caption = TempVars(UserName)

Just didn't know how to work with this object properly.
 

Users who are viewing this thread

Top Bottom