MTSkull Posted June 3, 2003 Posted June 3, 2003 I am new to VB.net so be kind. In my sub Main I call a popup dialog box that displays the loading status as different tasks are completed so the user knows what is going on. So I pushed all this processing out to a module. I set up the module to access the form in one of 2 ways, as a status window that opens shows what is going on with text through a label, and as a modal message box that opens as a dialog and displays buttons and text as necessary. Here�s the question. Since I declare the form as new then use that to reference its properties. Can I have multiple instances of the form open at the same time? For instance. dim form1 as new frmMessage dim form2 as new frmMessage ??? Will this give me 2 references to the same object or 2 different objects? Is there a way I can create the form so I can have multiple instances of the same form? Thanks Brian :confused: Quote "Beer is proof that God loves us and wants us to be happy." -Benjamin Franklin
*Experts* mutant Posted June 3, 2003 *Experts* Posted June 3, 2003 What you doing is creating two separate objects, so there shouldnt be a problem. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.