Hi, I am writing a program in C#, and I want a customize form to pop up. I created the new form and set it up as a new item (Form frmCustomize = new Form();). So then, in my code, I put this code in for when they click on Customize, and the form shows, but none of the controls are there, any reasons why, or any help?
The code:
// When they click 'Customize' from the help menu the Customize form shows
private void customizeToolStripMenuItem_Click(object sender, EventArgs e)
{
// Show the customize form
frmCustomize.Show();
}
2007-02-04
01:28:15
·
4 answers
·
asked by
SM
3