How do I add a command to telnet to a router on a drawing

R

Richard Tuttle

I can add a hyperlink when hovering over a router on a drawing, but would
like to add pop up to right click and click on telnet to device????
 
A

Al Edlund

try something like this (assumes you have a custom property for ipaddress

"""TELNET:""&Prop.Ipaddress"

al
 
M

Michel LAPLANE

Look at the sdk help and use the CALLTHIS function you can pass some
parameters. The content of the EventDblClik cell could be
"CALLTHIS("ThisDocument.RunWithArg",,Prop.Row_1).
And the vba could be
Sub RunWithArg(shpObj as Visio.Shape,ipAddress as string)
MsgBox "This is my IP Address" + ipAddress
end sub

If the Prop.row_1 contain your ipadress it with work.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top