I've not yet found a need to have a second instance of a form. When is this usually done?
Dave ----- Original Message ----- From: Waqas Hussain To: [email protected] Sent: Wednesday, January 12, 2005 1:05 AM Subject: Re: [vbhelp] how to re-use a form? What do you mean re-use a form? Do you want to use a form as an object to create multiple instances? If yes then see this. e.g I have a Form1 in my project dim objFrm as New Form1 objFrm.show dim objFrm2 as new Form1 objFrm.show This way you can have two copies of the same form. Waqas. On Wed, 12 Jan 2005 01:45:26 -0500, .rEs <[EMAIL PROTECTED]> wrote: > > just wondering, how to re-use a form. > cant find it in msdn > thanks in advance '// ======================================================= Rules : http://ReliableAnswers.com/List/Rules.asp Home : http://groups.yahoo.com/group/vbHelp/ ======================================================= Post : [email protected] Join : [EMAIL PROTECTED] Leave : [EMAIL PROTECTED] '// ======================================================= ------------------------------------------------------------------------------ Yahoo! Groups Links a.. To visit your group on the web, go to: http://groups.yahoo.com/group/vbhelp/ b.. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. [Non-text portions of this message have been removed] '// ======================================================= Rules : http://ReliableAnswers.com/List/Rules.asp Home : http://groups.yahoo.com/group/vbHelp/ ======================================================= Post : [email protected] Join : [EMAIL PROTECTED] Leave : [EMAIL PROTECTED] '// ======================================================= Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/vbhelp/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
