Microsoft KB Archive/136250

From BetaArchive Wiki
Knowledge Base


Article ID: 136250

Article Last Modified on 7/1/2004



APPLIES TO

  • Microsoft Visual Basic 4.0 Standard Edition
  • Microsoft Visual Basic 4.0 Professional Edition
  • Microsoft Visual Basic 4.0 Professional Edition
  • Microsoft Visual Basic 4.0 16-bit Enterprise Edition
  • Microsoft Visual Basic 4.0 32-Bit Enterprise Edition
  • Microsoft Visual Basic 5.0 Learning Edition
  • Microsoft Visual Basic 6.0 Learning Edition
  • Microsoft Visual Basic 5.0 Professional Edition
  • Microsoft Visual Basic 6.0 Professional Edition
  • Microsoft Visual Basic 5.0 Enterprise Edition
  • Microsoft Visual Basic 6.0 Enterprise Edition



This article was previously published under Q136250

SUMMARY

This article demonstrates how you can determine if an error you are receiving from a Visual Basic program is a Visual Basic trappable error or if it coming from another source.

MORE INFORMATION

When you run Visual Basic, follow these steps to get more information on a specific error:

  1. Stop your program if it is currently running.
  2. Press the F8 key to go from design mode to break mode.
  3. Press CTRL+G to activate the debug window.
  4. Enter the following statement and wait for the error message to appear:

    Error <error-number> For example, type Error 70 and the following error message appears:

    Run-time error '70':
    Permission denied

  5. Press the F1 key to get information from online Help on that specific error.

    For example, in Visual Basic 4.0, pressing F1 on Error 70 displays the Permission denied (Error 70) page from Visual Basic Help.

    In Visual Basic 6.0, pressing F1 on Error 70 displays the Permission denied (Error 70) page from the Visual Basic for Applications Reference.

If the error description is: Application-defined or object-defined error, then the error number does not correspond to an error defined by Visual Basic for Applications (VBA). Such errors may be defined by the host application (for example, Microsoft Excel or Visual Basic), but if you want to generate them from code, you must use the Raise method, and fill in all relevant arguments.


REFERENCES

The Visual Basic 6.0 Reference Documentation has a section on Trappable Errors. This section includes documentation on the core Visual Basic language errors, miscellaneous Visual Basic errors, OLE Container Control errors, RDO errors, and ActiveX Control errors.

For additional information on trappable errors for Visual Basic 3.0, click the article number below to view the article in the Microsoft Knowledge Base:

108340 How To Determine Visual Basic 3.0 Trappable Errors



Additional query words: 70

Keywords: kbhowto kbref kbdocs KB136250