Dec 5, 2004 #1 keenanbr Programmer Oct 3, 2001 469 IE I've just started teaching myself C#. This should be easy. How can I display a new form e.g. Click a button on one form and get a new form to display. Regards
I've just started teaching myself C#. This should be easy. How can I display a new form e.g. Click a button on one form and get a new form to display. Regards
Dec 5, 2004 #2 onpnt Programmer Dec 11, 2001 7,778 US Try looking into MDI (multiple document interface) good resource MDI ___________________________________________________________________ onpnt.com SELECT * FROM programmers WHERE clue > 0 (0 row(s) affected) -->faq333-3811 Upvote 0 Downvote
Try looking into MDI (multiple document interface) good resource MDI ___________________________________________________________________ onpnt.com SELECT * FROM programmers WHERE clue > 0 (0 row(s) affected) -->faq333-3811
Dec 6, 2004 Thread starter #3 keenanbr Programmer Oct 3, 2001 469 IE no, i just want to display an ordinary form in vb i'd do frmWhatever.show is it more complicated in C# i thought this would be simple Upvote 0 Downvote
no, i just want to display an ordinary form in vb i'd do frmWhatever.show is it more complicated in C# i thought this would be simple
Dec 6, 2004 #4 Salte2 Programmer Nov 5, 2004 17 NO its similar in C# frmWhatever.Show(); or frmWhatever.ShowDialog(); Upvote 0 Downvote
Dec 6, 2004 #5 chiph Programmer Jun 9, 1999 9,878 US In .NET, forms are objects, so all you'd do is call the Show or ShowDialog method on it. Chip H. ____________________________________________________________________ If you want to get the best response to a question, please read FAQ222-2244 first Upvote 0 Downvote
In .NET, forms are objects, so all you'd do is call the Show or ShowDialog method on it. Chip H. ____________________________________________________________________ If you want to get the best response to a question, please read FAQ222-2244 first