5
Answers

displaying a form

Nick Ingram

Nick Ingram

15y
2.5k
1
In C# one thing i realised is, you can't show a form with the usual form.show() line of code. So the way I did it was by declaring the form first. In visual basic all I had to type was, "Dim Form As Form1". That might not be exactly right but it was something like that. How can I display a form in C#?
Answers (5)
0
Nick Ingram

Nick Ingram

NA 12 0 15y
Yes, thanks to all, the problem was solved.
0
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 15y
So is yur question answered?
0
Nick Ingram

Nick Ingram

NA 12 0 15y
Sorry for the wait I was out of town for about a day and forgot to bring my pc. I tried what you guys instructed but an error accured with the new 'form1' we declared. What me by surprise was it failed during the build and didn't appear in the error list.
0
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 15y
Is yur question answered? If so then please mark the post that answered it. If not then you need to provide more information.
0
Kirtan Patel

Kirtan Patel

NA 35k 2.8m 15y
There are Two ways

Show Normal Form

 Form2 f2 = new Form2();

 f2.Show();

 

           

Display Form Like Dialog in which Only One Form active at a Time you can not Do any thing till Form 2 is Open

---------------------------------------------

Form2 f2 = new Form2();

f2.ShowDialog();