Click here to Skip to main content
15,891,423 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
Hi,

Can anybody please help me how to implement the F1 help which means whenever i click on F1 a help window should happen using VB.Net using MVVM.


I am not getting any idea.Please suggest
Posted
Comments
[no name] 3-Jun-14 8:54am    
http://www.bing.com/search?q=f1+help+wpf

1 solution

a. You have to create a HTML help file using HTML Workshop. Create some html files and using HTML Workshop build it to .chm file
b. After creating Help file move it to your project output folder [Bin\Debug\]
c. Add a menu strip to your form and and a menu item named Help. Set the shortcut to F1 for this menu item.
d. Add code to click event of this menu item -
Process.Start("Your_Help_file_name.chm")


TO download HTML workshop - DOWNLOAD[^]
 
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