User`s guide

Modify Method - This method provides a means to change tool parameters listed in the Dialog Bar on the right side
of the main window frame. The menu containing the parameter to be changed must be active. The Options method
can be used to make it active.
Syntax
AppObj.Modify(Label, Value)
AppObj is the required GigaView Application Object.
Label is a required String variable that contains the identifier for the parameter to be changed.
Value is a required String variable that contains the new value to be used.
Example
Dim Visi
Set Visi = CreateObject ("Visi.Application")
Visi.New ("JitterGenerator")
Visi.Modify "Sync Mode", "Jitter Sync" ‘Changes a list box item
Visi.Modify "Frequency (MHz)", "250.0" ‘Changes a numeric value in an edit box
Visi.Options 2 ‘Make the correct menu active
Visi.Modify "Reset All", "" ‘Activate a pushbutton control
MsgBox Method - This method can be used to provide information to the program user.
Syntax
AppObj.MsgBox(Message)
AppObj is the required GigaView Application Object.
Message is a required String variable that contains the message to the user.
Example
Dim Visi
Set Visi = CreateObject ("Visi.Application")
Visi.New ("Histogram")
For FREQ = 10 To 50 Step 10
MESG = “Set Signal Generator to “ & FREQ & “ MHz”
Visi.MsgBox MESG
Visi.SingleStop
Next
New Method - This method can be used to create a new tool.
Syntax
AppObj.New(ToolType)
AppObj is the required GigaView Application Object.
ToolType is a required String variable that contains the type of tool to create. It may be one of the following:
BitClockDataCom CompositePlot
HiFreqMod Histogram
JitterGenerator Locktime
LoFreqMod MarkerDataCom
MarkerlessDataCom Oscilloscope
PhaseNoise RandomDataCom
Skew Statistics
StripChart SwitchMatrix
Example
Dim Visi
Set Visi = CreateObject ("Visi.Application")
Visi.New ("Histogram")
Visi.New ("Oscilloscope")
©
WAVECREST Corporation 2005
Appendix A
275