Specifications
OLE reference
Gallagher & Robertson Glink: API reference manual 153
The Visible property
Visible: Boolean Visible state
This property can be used to get or set the visible state of the Glink window.
When started as an automation server, this value will be FALSE which means
that the Glink window will be hidden. You can change this by setting the Visible
property to TRUE. If the Glink Visible property is still TRUE when you finish
using the Glink.Auto object, Glink will be left on the screen rather than
terminated.
VBA Example:
Dim GL As Object
Set GL = CreateObject ("Glink.Auto")
GL.LoadConfig ("WRK.glinkconfig")
GL.ProcessLine = True
GL.GWConnect ("ggate", "phoenix")
GL.GParam = "0"
GL.ScriptCommand ("Conv 'OGIN' 'NAME'; Conv 'SSWORD' 'PASS'; GPar '1'")
While GL.GParam = "0"
DoEvents
Wend
GL.Visible = True
The Width property
Width: Integer Window width
This property can be used to get or set the width of the main Glink window. This
value is in pixels.
The Zoomed property
Zoomed: Boolean Zoomed state
This property can be used to get or set the current zoomed state of the Glink
window. At start-up, this value will be FALSE.