Hello Everyone,
I'm writing an application that, so far, only has three forms:
frmSplashScreen
frmLicenseScree n
frmConfiguratio nScreen
Now, frmSplashScreen has a timer that sits it on screen for 2 seconds
then executes the following commands:
frmLicenseScree n.Show()
Me.Hide()
So, frmLicenseScree n 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:
frmConfiguratio nScreen.Show()
Me.Close()
At this point, the ONLY form being shown on the screen is
frmConfiguratio nScreen. That's true for about 2 seconds. After that,
frmLicenseScree n 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.LicenseAgre ement reopen?
Thanks in Advance,
Anthony
I'm writing an application that, so far, only has three forms:
frmSplashScreen
frmLicenseScree n
frmConfiguratio nScreen
Now, frmSplashScreen has a timer that sits it on screen for 2 seconds
then executes the following commands:
frmLicenseScree n.Show()
Me.Hide()
So, frmLicenseScree n 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:
frmConfiguratio nScreen.Show()
Me.Close()
At this point, the ONLY form being shown on the screen is
frmConfiguratio nScreen. That's true for about 2 seconds. After that,
frmLicenseScree n 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.LicenseAgre ement reopen?
Thanks in Advance,
Anthony
Comment