Hi all,
I have set up a small database that records details about a number of machines and would like to be able to jump to the C: drive of any selected machine. I tried doing this via this code, but nothing happens. Could anyone please help me.
Many thanks
ModeX
Private Sub Command124_Click()
On Error GoTo error1
Dim p1 As String
p1 = "\\" & [Server ID] & "\c$"
a = Shell(p1, vbNormalFocus)
GoTo end1
error1:
end1:
Also,
does anyone know of a way to fire up perfmon.exe for a remote machine by the same method. Bascially I would like to find a machine in the database and click a button to look at the performance of that machine
Thanks once again
ModeX
I have set up a small database that records details about a number of machines and would like to be able to jump to the C: drive of any selected machine. I tried doing this via this code, but nothing happens. Could anyone please help me.
Many thanks
ModeX
Private Sub Command124_Click()
On Error GoTo error1
Dim p1 As String
p1 = "\\" & [Server ID] & "\c$"
a = Shell(p1, vbNormalFocus)
GoTo end1
error1:
end1:
Also,
does anyone know of a way to fire up perfmon.exe for a remote machine by the same method. Bascially I would like to find a machine in the database and click a button to look at the performance of that machine
Thanks once again
ModeX