
First of all, you should select a component and/or a
member, pertain to that component. After this you can do the following:
- Change HelpContextID property (this new value is automatically saved)
- Change the description of the component or member. This description can be
viewed in Object Browser. If you want to change the description of a component
(e.g. form), you must leave the combo-box "Members" empty (unselected). (this
new value is automatically saved)
- Export the selected component as HTML file. Select a folder and a valid
file name (*.htm or *.html extension) and then press button "Export as HTML".
If the check box is selected, the output HTML file will keep VB standard
colors.
- Error handling - select the destination of this option from "Apply to"
combo-box. The options are: "selected component" (applied to all members) or
"selected member" (applied only for selected member - one member at a time).
You can insert or remove the statement "On Error Resume Next" or a custom
error handler. For custom error handler you can give the name of the label
used (default is "err_label") and 3 versions of treating the errors:
displaying a message-box, writing the error in Immediate window or calling a
custom procedure (you can give the name of the procedure). Also, you can
change the code inserted as error handler, directly in the text-box.
You can't combine multiple customs error handlers, automatically. It could be
necessary to change code by hand, in complex scheme. Also, there isn't a simple
way to delete a custom error handler. If this function doesn't produce desirable
results you can recover to initial version pressing CTRL-Z, multiple times.
Tips: First of using "Insert" button to
insert "On Error Resum Next" statement, press "Remove" button. Doing so, an
existing statement won't be duplicated.
Go back !