T
TazMaster67
Guest
Within VB6 I was able to create a login window and wait for the user input with the following code:
frmMain.Show vbModel
This would then return from that login window with a valid or invalid user information.
Now the code I am using in .NET is as follows:
Dim wMain As New frmMain()
wMain.Show()
What happened to the vbModel option or what would I use to get the same results.
frmMain.Show vbModel
This would then return from that login window with a valid or invalid user information.
Now the code I am using in .NET is as follows:
Dim wMain As New frmMain()
wMain.Show()
What happened to the vbModel option or what would I use to get the same results.