I am writing a VB.NET Windows app. So far, I have two Windows Forms: [tt]MainMenu[/tt] and [tt]Edit_select[/tt]. Not surprisingly, MainMenu is the name of the startup form. In class MainMenu (but outside of any of its subroutines), I have the following:[tt]
Public Shared menu_form As New MainMenu[/tt]
In the [tt]Menu_Load[/tt] ("Handles MyBase.Load"
of MainMenu, I have the following:[tt]
menu_form = Me
Edit_select.es_form.Hide()[/tt]
Then in class Edit_Select, I have this:
[tt]Public Shared es_form As New Edit_select[/tt]
Here's my question: When that Hide() line executes, it's a very choppy transition between the two forms; the user can see one disappear, [pause], and the second form appear. Is there a smoother way to move from one form to the other?
Thanks very much,
Lazer
Public Shared menu_form As New MainMenu[/tt]
In the [tt]Menu_Load[/tt] ("Handles MyBase.Load"
menu_form = Me
Edit_select.es_form.Hide()[/tt]
Then in class Edit_Select, I have this:
[tt]Public Shared es_form As New Edit_select[/tt]
Here's my question: When that Hide() line executes, it's a very choppy transition between the two forms; the user can see one disappear, [pause], and the second form appear. Is there a smoother way to move from one form to the other?
Thanks very much,
Lazer