I've been trying to do the same thing in Visual c# 2005 express edition (bete), using:
private void button1_Click(object sender, System.EventArgs e)
{
Form2 frm = new Form2();
frm.Show();
}
which is that i found on MSDN and is also suggested by someone here (ctor i think), but i get this error code when i compile it:
Quote:
|
The type or namespace name 'Form2' could not be found (are you missing a using directive or an assembly reference?)
|
i have created both forms already, any ideas?
Cheers
Nez