>From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] >Sent: martes, 30 de octubre de 2007 1:24 >To: [email protected] >Subject: [Mono-list] Forms > >This is not a Mono specific question but rather a forms question. I have done some VB.net programming and know how to open and hide forms using > >form2.open () >me.hide() > >How is this done in C++.net
I have no idea > and in C#.net? > form2 form = new form2 (); form.Show (); this.Hide (); (which is the equivalent of the following VB code, since C# doesn't have default instances, required for doing "form2.open ()") Dim form As New form2 form.Show () Me.Hide () Rolf >I know to hide in c++.net is This-- >Hide but don't know how to open another form (Form2). > >Can someone show me the code to hide and open forms in c++ and c# _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
