O
one sick moo
I want some VBA code to activate a program called VNCViewer then paste in an
address and activate.
I have been able to open the program using the following code:
Private Sub cbVNC_Click()
Dim Program As String
Dim TaskID As Double
On Error Resume Next
Program = "C:\Program Files\RealVNC\VNC4\vncviewer.exe"
TaskID = Shell(Program, 1)
End Sub
Which opens the program no problem. Any ideas how I can pass an address to
it and get it to look it up? The action of this would be to paste in the data
then press return
Thanks
address and activate.
I have been able to open the program using the following code:
Private Sub cbVNC_Click()
Dim Program As String
Dim TaskID As Double
On Error Resume Next
Program = "C:\Program Files\RealVNC\VNC4\vncviewer.exe"
TaskID = Shell(Program, 1)
End Sub
Which opens the program no problem. Any ideas how I can pass an address to
it and get it to look it up? The action of this would be to paste in the data
then press return
Thanks