My solution

R

Research freak

I created command buttons for each server, and used the following VBA
code with them:

Private Sub CommandButton<servername>_Click()
Shell ("Z:\vncviewer.exe <servername>")
End Sub

This runs the program and passes the servername. I did not look into
picking the servername from a list, but I think that would be
relatively trivial to do as well.

Randy
 
Top