Question:
Can I automatically reconnect the Viewer to another E3Server via scripts?
Solution:
Yes, you can. To do so, you must write a script. In the example below, the script is executed in a button’s Click event:
'Opens another Viewer, connect to another server
path = "C:\Program Files\Elipse Software\Elipse E3\Bin\Viewer.exe"
arg = "MachineName"
Application.ExecuteExternalApp path, arg, "", 1
'Closes this Viewer
Application.Exit()