Specifications

Chapter 18 533
COM Interface Reference
Application object
18. COM Interface Reference
CalMeasure method
Explanation Measures calibration data (Open/Short/Load/Low-loss capacitor) and waits for the
completion of measurement. This method sends a response back.
VB syntax Application.CalMeasure(CalType)
or
CalMeasure(CalType)
Parameter CalType: To be selected from the following.
Response Value of long integer type (1 or 0) is sent back.
Examples The following is a program example of indicating the completion of measurement after
connecting the open standard of the calibration kit to the 7-mm terminal and measuring the
calibration data.
Example 18-5 Example of using CalMeasure method
Dim Bool As Long
MsgBox "Connect OPEN Standard to 7mm Terminal"
Bool = Application.CalMeasure(CalOpen)
If Bool = 1 Then
MsgBox "OPEN Calibration Done!"
ElseIf Bool = 0 Then
MsgBox "OPEN Calibration Aborted!"
End If
CalOpen Specifies measurement of Open calibration data
CalShort Specifies measurement of Short calibration data
CalLoad Specifies measurement of Load calibration data
CalLowLossC Specifies measurement of Low-loss capacitor calibration data
1 Measurement of each standard’s calibration data was completed.
0 Measurement was interrupted.