I have 3 different forms:
- Login
- Navigation
- Welcome
The form Navigation has a Navigation Control that displays the form Welcome as a subform.
In the form Welcome, there is a public variable as following:
Public trueLoginName As String
While is the form Login, there is a Dim bariable as following:
Dim trueLoginId As String
I need to somehow set trueLoginName = trueLoginId in the Login form. Any ideas? Thanks!
- Login
- Navigation
- Welcome
The form Navigation has a Navigation Control that displays the form Welcome as a subform.
In the form Welcome, there is a public variable as following:
Public trueLoginName As String
While is the form Login, there is a Dim bariable as following:
Dim trueLoginId As String
I need to somehow set trueLoginName = trueLoginId in the Login form. Any ideas? Thanks!
Comment