3

VBA solutions can vary widely in size.

I would like to add user help documentation to all solutions but the level of effort to create and deploy the help needs to match the size of the solution.

Community
  • 1
  • 1
Robert Mearns
  • 11,796
  • 3
  • 38
  • 42
  • When you say help documentation to all solutions, are you refering to code commenting and documenting the code written, or help from user input point of view and helping him understand what fields need to be inputed – Dheer Oct 08 '08 at 11:21

2 Answers2

6

You should check the VBA version of MZ-Tools. It is an add-in for VBA that can automatically generate documentation from your code (function name, parameters, comments, subject, etc.). You can also use it to automatically generate line numbers, onError labels, etc. More on the automatic documenting feature can be found here.

It is free, easy, and very efficient. Once you notice how much you save time by using it, please do like me: donate.

Ray
  • 187,153
  • 97
  • 222
  • 204
Philippe Grondier
  • 10,900
  • 3
  • 33
  • 72
1

You may wish to consider HTML Help. It allows you to produce help files that are similar to standard Microsoft help. It is not particularly difficult to use, for the most part.

Fionnuala
  • 90,370
  • 7
  • 114
  • 152