Help file for application

  • Thread starter Thread starter gordon
  • Start date Start date
G

gordon

Hi

Could someone please tell me the best way to provide help in an application?
I have an 'about' item , but what is the best way of providng instructions
and help in the app?

Doug
 
Hi Doug,

Although it's incomplete, Microsoft's HTML Help Workshop can help you to
create some documentation and it's free:

HTML Help 1.4 SDK
Microsoft HTML Help Downloads
http://msdn2.microsoft.com/en-US/library/ms669985.aspx

You should edit the contents and index files without the workshop's help.
They're just html files (where xml should have been used), although you'll
have to try to preserve their incorrect markup otherwise you'll get
workshop-compiler errors :|

Including context-sensitive help or a TOC link from a menu item, for
example, is easy in a WinForms app using the HelpProvider component:

Windows Forms Programming
HelpProvider Component Overview (Windows Forms)
http://msdn2.microsoft.com/en-us/library/s3ztx0at.aspx
 
Hi Doug,

(It appears that my original response was somehow deleted so I'm reposting
it just in case)

Although it's incomplete, Microsoft's HTML Help Workshop can help you to
create some documentation and it's free:

HTML Help 1.4 SDK
Microsoft HTML Help Downloads
http://msdn2.microsoft.com/en-US/library/ms669985.aspx

You should edit the contents and index files without the workshop's help.
They're just html files (where xml should have been used), although you'll
have to try to preserve their incorrect markup otherwise you'll get
workshop-compiler errors :|

Including context-sensitive help or a TOC link from a menu item, for
example, is easy in a WinForms app using the HelpProvider component:

Windows Forms Programming
HelpProvider Component Overview (Windows Forms)
http://msdn2.microsoft.com/en-us/library/s3ztx0at.aspx
 
Hi,

Isn't NDoc for documenting source code only? I've never tried authoring
help files with it and I don't remember there being any way to do that
either.
 
Hi Salman,

"Documentation" for "source code", not help files such as context-sensitive
help, instructions and tutorials for end users.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top