B
bryan.benway
I currently have a network map in Visio where I have macros setup on
the double click of a network item such as a router.
The current script is:
Sub Telnet()
x = Shell("RUNDLL32.EXE URL.DLL,FileProtocolHandler
telnet://10.100.1.1", vbNormalFocus)
End Sub
Which opens up a terminal session to the device.
In Visio, the Shape has an custom property that I want to pull into the
function so when I double click each router, I can reference the same
function and not have to hard code the IPs into each sub
the double click of a network item such as a router.
The current script is:
Sub Telnet()
x = Shell("RUNDLL32.EXE URL.DLL,FileProtocolHandler
telnet://10.100.1.1", vbNormalFocus)
End Sub
Which opens up a terminal session to the device.
In Visio, the Shape has an custom property that I want to pull into the
function so when I double click each router, I can reference the same
function and not have to hard code the IPs into each sub