M
Michael White
OK, here's what I need to do...
Start my app from Sub Main()
In Sub Main(), display a login dialog. This dialog creates a singleton User
object which contains all the code necessary to authenticate. The user
object is global to the entire application. This will need to loop until the
user logs in or cancels.
If the login succeeds, I need to display a splash screen while the app is
performing the necessary startup processes. The user may cancel the login,
in which case I need to exit the app.
If the startup processes complete, then I need to load the main MDI parent
form and unload the splash. If they fail, I exit the app.
What's the reccommended way of going about this?
Thanks..
Start my app from Sub Main()
In Sub Main(), display a login dialog. This dialog creates a singleton User
object which contains all the code necessary to authenticate. The user
object is global to the entire application. This will need to loop until the
user logs in or cancels.
If the login succeeds, I need to display a splash screen while the app is
performing the necessary startup processes. The user may cancel the login,
in which case I need to exit the app.
If the startup processes complete, then I need to load the main MDI parent
form and unload the splash. If they fail, I exit the app.
What's the reccommended way of going about this?
Thanks..