A
Anthony P.
Hello Everyone,
I'm writing an application that, so far, only has three forms:
frmSplashScreen
frmLicenseScreen
frmConfigurationScreen
Now, frmSplashScreen has a timer that sits it on screen for 2 seconds
then executes the following commands:
frmLicenseScreen.Show()
Me.Hide()
So, frmLicenseScreen is loaded properly and frmSplashScreen is HIDDEN
(not closed becasue that would kill the application).
Next, there is a button click that executes the following commands:
frmConfigurationScreen.Show()
Me.Close()
At this point, the ONLY form being shown on the screen is
frmConfigurationScreen. That's true for about 2 seconds. After that,
frmLicenseScreen pops up again and we start the process all over
again.
I'm confused. I know I can't Me.Close() frmSplashScreen since that
would kill the application. But what am I doing wrong that is making
frm.LicenseAgreement reopen?
Thanks in Advance,
Anthony
I'm writing an application that, so far, only has three forms:
frmSplashScreen
frmLicenseScreen
frmConfigurationScreen
Now, frmSplashScreen has a timer that sits it on screen for 2 seconds
then executes the following commands:
frmLicenseScreen.Show()
Me.Hide()
So, frmLicenseScreen is loaded properly and frmSplashScreen is HIDDEN
(not closed becasue that would kill the application).
Next, there is a button click that executes the following commands:
frmConfigurationScreen.Show()
Me.Close()
At this point, the ONLY form being shown on the screen is
frmConfigurationScreen. That's true for about 2 seconds. After that,
frmLicenseScreen pops up again and we start the process all over
again.
I'm confused. I know I can't Me.Close() frmSplashScreen since that
would kill the application. But what am I doing wrong that is making
frm.LicenseAgreement reopen?
Thanks in Advance,
Anthony