I'm trying to create a project kindof like a web page.
i want to make it so that when i click a button it will hide ther current form and bring up a new form. what do i need to do?
thank you for your support
Printable View
I'm trying to create a project kindof like a web page.
i want to make it so that when i click a button it will hide ther current form and bring up a new form. what do i need to do?
thank you for your support
Multiple Forms = MDI ???
if you want to show a new form and hide the exsisting form...
VB Code:
[color=blue]Dim[/color] frm [color=blue]As New[/color] Form2()[color=green]'/// Your other form's name goes here.[/color] frm.Show()[color=green]'/// show the other Form.[/color] [color=blue]MyBase[/color].Hide()[color=green]'/// Hide the first Form[/color]