Specifications

540 Chapter 18
COM Interface Reference
Application object
RfOverload event
Explanation Indicates that “RF overload” error was detected in the E4991A.
Examples The following is an example of stopping a program by force when the “RF overload” error
occurs during measurement. The following program has to be described in user form or
class module.
Example 18-15 Example of using RfOverload event
Public WithEvents Evnt As E4991ALib.Application
Private Sub Evnt_RfOverload()
MsgBox "Error: RF overload"
End
End Sub