Sub TestLab()
' Starts the application
Dim Viewer
Set Viewer = CreateObject("Xm3Viewer.Application")
' Shows the GUI
Viewer.Show(1)
End Sub
IronPython example
from System import Type, Activator
type = Type.GetTypeFromProgID("Xm3Viewer.Application")
MyXm3Viewer = Activator.CreateInstance(type)
#Show the GUI
MyXm3Viewer.Show(1)