May 11, 2003 #1 S surya_my Newcomer Joined May 11, 2003 Messages 2 Location asia i'm using unload me(), but it says not declared, how?
May 11, 2003 #2 S surya_my Newcomer Joined May 11, 2003 Messages 2 Location asia link 2 form how to link a two form together? and make the form1 disappear after form2 appear?
May 12, 2003 #3 M mutant Guest Use Me.Close(), Unload Me doesnt work anymore. To hide first one and show another one do this: Visual Basic: Dim formvariable As New FormClassName Me.Hide() formvariable.Show()
Use Me.Close(), Unload Me doesnt work anymore. To hide first one and show another one do this: Visual Basic: Dim formvariable As New FormClassName Me.Hide() formvariable.Show()