Specifications

COM+ reference
10
Glink: API reference manual Gallagher & Robertson
If you are going to use the GlinkApi's events, then you must use the WithEvents
keyword. However, when using the WithEvents keyword you cannot use the
New keyword and will need to create the object at runtime:
Dim WithEvents glapi as Glink.GlinkApi
Private Sub Form_Load()
Set glapi = New Glink.GlinkApi
'or Set glapi = CreateObject("Glink.GlinkApi")
End Sub
Once the object is created you can use any method or property directly.
Set glapi = New Glink.GlinkApi
glapi.SessionName ("my config.glinkconfig")
glapi.start
glapi.notifyString "LOGICAL ID--", False, 1, True
glapi.setVisible (True)
Lists of the relevant properties and methods will appear as soon as you type the
dot (or bracket).