7352 Series Digital Multimeter Operation Manual
6.7.2 Sample Programs (SCPI commands for GPIB)
6-59
Call ibwrt(dmm, ":TRACE:NUMBER 0,9,(@1)" & vbLf)
'Sets the recall data range for the left side display. (0 to 9)
Call ibwrt(dmm, ":TRACE:DATA? (@1)" & vbLf)
'Requests the measured data on the left side display.
Call ibrd(dmm, dt)
'Substitutes the measured value on the left side display for a variable.
Cells(1, 1) = "'" & dt
'Substitutes the measured value on the left side display for a cell.
Call ibwrt(dmm, ":TRACE:NUMBER 0,9,(@2)" & vbLf)
'Sets the recall data range for the right side display. (0 to 9)
Call ibwrt(dmm, ":TRACE:DATA? (@2)" & vbLf)
'Requests the measured data on the right side display.
Call ibrd(dmm, dt)
'Substitutes the measured value on the right side display for a vari-
able.
Cells(2, 1) = "'" & dt
'Substitutes the measured value on the right side display for a cell.
Call ibonl(dmm, 0)
'Terminates.