Telnet Via Visio 
Author Message
 Telnet Via Visio

I have created a macro in Visio that executes a Telnet window when
double clicking on an Ip address.

What I would like to know is how I can write code that would read the Ip
address that is in the text box?



Fri, 31 Jan 2003 03:00:00 GMT  
 Telnet Via Visio
If I understand your question correctly, the text for a Visio shape is
accessed through the shape.text property. Check out the help for an
example.

Theo

In article


Quote:
> I have created a macro in Visio that executes a Telnet window when
> double clicking on an Ip address.

> What I would like to know is how I can write code that would read the
Ip
> address that is in the text box?

Sent via Deja.com http://www.deja.com/
Before you buy.


Sun, 02 Feb 2003 03:00:00 GMT  
 Telnet Via Visio
I don't have Visio in front of me, so this may not be correct, but it
should show the general idea:

Dim aShape as Visio.Shape
dim ipAddr as String

' assign the name IpAddrBox to the text box
' right click the shape, go format, click on special
set aShape = ActivePage.Shapes.Item("IpAddrBox")

ipAddr = aShape.Text

In article


Quote:
> I have created a macro in Visio that executes a Telnet window when
> double clicking on an Ip address.

> What I would like to know is how I can write code that would read the
Ip
> address that is in the text box?

Sent via Deja.com http://www.deja.com/
Before you buy.


Wed, 05 Feb 2003 12:00:57 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. oracle table fill from flatfile via .cmd/.ctl files using telnet

2. Telnet to Unix systems via Winsock

3. Visio in VB6 via OLE = long delay before screen updates

4. Accessing Items in a Visio Group via VBA

5. Updating Visio Documents via MS Access

6. Write color index to Visio shapesheet via VB?

7. upgrade the VB program from Visio 5 to Visio 2000

8. Visio 2000 & Visio 2002 Differences

9. Saving Visio shapes to file/db (Visio 2000)

10. SendToBack in Visio 2000 & Visio 2002

11. visio viewer or visio web component

12. visio diagram to XML / creating textfiles with VBA in Visio

 

 
Powered by phpBB® Forum Software