Hello,
Im trying to open a new windows form by clicking in a menustrip item. Its not the first time I make that but now it doesn't work and I dont know why.
Here it is the code I have:
private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
{
AboutBox about = new AboutBox();
about.Show();
}
private void helpToolStripMenuItem_Click(object sender, EventArgs e)
{
HelpBox helpbox = new HelpBox();
helpbox.Show();
}
About box works perfectly but help box don't. I proceeded the same way. Here it is the Solution Explorer printscreen:
http://i195.photobucket.com/albums/z259/Pongidae/asd.jpg
I donk know if it is important. Now Im using Visual Sudio 2008 but I started this project with Visual C# Express version. I thoght it was a limitation of express version but in visual studio I have the same result.
error CS0246: The type or namespace name 'HelpBox' could not be found (are you missing a using directive or an assembly reference?)
Any suggestions?
Thanks in advance!