How do you call the Help file from a Menu (F1)

  • Thread starter Thread starter Mark Johnson
  • Start date Start date
M

Mark Johnson

How do you call the from NDOC created Documentation.chm file from a Help
Menu or F1.

Will this also work on Compact?

Mark Johnson, Berlin Germany
(e-mail address removed)
 
Mark Johnson said:
How do you call the from NDOC created Documentation.chm file from a Help
Menu or F1.

Will this also work on Compact?

Mark Johnson, Berlin Germany
(e-mail address removed)
 
Try this:

System.Diagnostics.Process.Start(new
System.Diagnostics.ProcessStartInfo("myfile.chm"));

This won't work on the compact framework, though.

Chris C.
 
Back
Top