User`s guide
Show Method - This method makes the GigaView application visible. It is only necessary if GigaView is launched
via an external program such as Microsoft’s Visual Basic.
Syntax
AppObj.Show
AppObj is the required GigaView Application Object.
Example
Dim Visi
Set Visi = CreateObject ("Visi.Application")
Visi.Show
Visi.New ("Histogram")
SingleStop Method - Issues the SingleStop command to perform a single acquisition on the current tool. If the
current tool is in the process of being cycled, it will stop cycling at the completion of the next successful acquisition.
Syntax
AppObj.SingleStop
AppObj is the required GigaView Application Object.
Example
Dim Visi
Set Visi = CreateObject ("Visi.Application")
Visi.New ("Histogram")
Visi.SingleStop
StatusBar Method - This method can be used to hide or show the StatusBar at the bottom of the main window frame.
Syntax
AppObj.StatusBar(Show)
AppObj is the required GigaView Application Object.
Show is the required Boolean variable indicating whether the StatusBar should be shown or not.
Example
Dim Visi
Set Visi = CreateObject ("Visi.Application")
Visi.New ("Histogram")
Visi.StatusBar(False)
Tile Method - This method tiles all the child views inside the main window frame.
Syntax
AppObj.Tile
AppObj is the required GigaView Application Object.
Example
Dim Visi
Set Visi = CreateObject ("Visi.Application")
Visi.New ("Histogram")
Visi.New ("Oscilloscope")
Visi.Tile
ToolBar Method - This method can be used to hide or show the ToolBar at the top of the main window frame.
Syntax
AppObj.ToolBar(Show)
AppObj is the required GigaView Application Object.
Show is the required Boolean variable indicating whether the ToolBar should be shown or not.
Example
Dim Visi
Set Visi = CreateObject ("Visi.Application")
Visi.New ("Histogram")
Visi.ToolBar(False)
Appendix A
©
WAVECREST Corporation 2005
278










