D
Dave Guenthner
I have a csharp form1.cs created with VS. I have added a menu bar
with one option called help. I then created another form in VS called
help.cs. How can I launch the help form from the main form called
form1.
Seems simple.
private void menuItem5_Click(object sender, System.EventArgs e)
{
// Menuitem5_Click is the help menu item user sees
// Call help.cs
help.Gives me a bunch of methods like ActiveForm etc
}
Any suggestions. Basically I want to design a "help" form in VS and
then call it from my main form.
Thanks,
Dave
with one option called help. I then created another form in VS called
help.cs. How can I launch the help form from the main form called
form1.
Seems simple.
private void menuItem5_Click(object sender, System.EventArgs e)
{
// Menuitem5_Click is the help menu item user sees
// Call help.cs
help.Gives me a bunch of methods like ActiveForm etc
}
Any suggestions. Basically I want to design a "help" form in VS and
then call it from my main form.
Thanks,
Dave