I have two forms and there is a button on Form1 which i want to open
Form2 with. How can I do this. I 've looked on the net and books with
no luck
Please Help
David Pope - 28 Jan 2005 16:28 GMT
Form frm = new Form2();
frm.Show();
>I have two forms and there is a button on Form1 which i want to open
> Form2 with. How can I do this. I 've looked on the net and books with
> no luck
>
> Please Help
Cor Ligthert - 28 Jan 2005 16:47 GMT
Salim,
\\\
dim frm as form2
frm.showdialog
///
I hope this helps?
Cor