P
paulotuatail
This should be easy. I have added an about box to my project and named it frmAbout. Having modified it and saved it. I built the project.
I have a menu with about on it and the code is this.
private void about_Click(object sender, EventArgs e)
{
frmAbout MyAbout = new frmAbout();
MyAbout.Show();
}
However when I run this I get microsofts default About box not the one I have in my project. This sounds daft but what is going on?
I have a menu with about on it and the code is this.
private void about_Click(object sender, EventArgs e)
{
frmAbout MyAbout = new frmAbout();
MyAbout.Show();
}
However when I run this I get microsofts default About box not the one I have in my project. This sounds daft but what is going on?