IBasicNoUIErrorAlert Event |
Occurs when an error has occurred.
(Evaluation errors do not trigger this event.)
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxevent EventHandler<EventArgs> ErrorAlert
Event ErrorAlert As EventHandler(Of EventArgs)
event EventHandler<EventArgs^>^ ErrorAlert {
void add (EventHandler<EventArgs^>^ value);
void remove (EventHandler<EventArgs^>^ value);
}
Value
EventHandlerEventArgs
Remarks
The event handler receives an argument of type
EventArgs.
The error may be a syntax error, or a run-time error.
You can use the Error property to determine the nature of the error.
Only applications that handle errors directly should hide them from users.
See Also