Click here to Skip to main content
15,904,926 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello everybody

I am developing a c# application. In my application I want to show help file in menu item. Thats why iam using this code

C#
private void helpfileToolStripMenuItem_Click(object sender, EventArgs e)
{
    Help.ShowHelp(this.menuStrip1,chmpath);
}


it is working well but the problem is if i goto another child form in my mdi form the help file not minimized.

How do I minimize and maximize the help file in a MDI form by default and wich properties are set in my mdi form?

Thanks for the help.
Posted
Updated 13-Nov-11 23:46pm
v3
Comments
Slacker007 14-Nov-11 5:46am    
Edited: some readability and code block.

1 solution

You are going to have to do this manually. I suggest that whenever you attempt to open an MDI child form, you check to see if the help file is open it and then minimize it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900