HideError

Property
This property governs whether error messages are displayed or not.

 

HideError

The settings are:

HideError:

Means:

TRUE

Error messages are not displayed.

FALSE

Error messages are displayed.

When you set HideError to TRUE, you will have to check for errors yourself, and display any appropriate messages to the user.

 

Example
In the code fragment below, Cf is a C/FRONT OCX object:

Cf.HideError = TRUE
Cf.AnyFunction

If (Cf.LastError <> 0) Then

  Call ErrorHandler

EndIf

Cf.HideError = FALSE



© 2009 Microsoft Corporation. All rights reserved.