Thread: My solution
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Research freak Research freak is offline
external usenet poster
 
Posts: 1
Default My solution

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