A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Powerpoint, Publisher and Visio » Visio
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Dynamic link to external config files



 
 
Thread Tools Display Modes
  #1  
Old September 23rd, 2004, 07:54 PM
Bill Clark
external usenet poster
 
Posts: n/a
Default Dynamic link to external config files

Using Visio Pro v2002. I want to create a drawing that has several text
fields (or links or whatever that will do the job) that are linked to
different configuration files on my network and will show changes as I open
the drawing. For example: I want one field on my drawing to link to my
Autoexec.ncf file on one of my Novell servers. When I open the drawing, I
want to see the CONTENTS of the .ncf file, not just a link with the name of
the .ncf file. And when I change the original .ncf file on the server, I
want the changes reflected in my drawing when I next open it. How can I do
this? TIA

Bill


  #2  
Old September 23rd, 2004, 10:24 PM
Al Edlund
external usenet poster
 
Posts: n/a
Default

Well,
Step one - identify what your underlying communication strategy is going to
be. If they were MS servers I'd go with WMI. Since you have Novell you might
want to consider using Telnet.
Step two - identify a toolset to get to the data independent of Visio. I use
PowerTCP's Telnet client (in both a VB6 and VB.Net implementation) and
handle the remote interface that way.
Step three - Identify how you want Visio to trigger on the opening.
Persistent events tied to a custom stencil work o.k.
Step four - decide if you want to do it as a standalone application that
calls Visio and opens the drawing, or you want to write it as an Addon. In
VB6 (since I didn't need the data to come out of the drawing) I used a
standalone to query and update, when I needed to integrate I started using
v2003 and VB.NET as an addon.
Since your playing with text files and doesn't sound like your using any
significant graphics function, you might want to reconsider doing it as a
visio app.
Al

"Bill Clark" wrote in message
...
Using Visio Pro v2002. I want to create a drawing that has several text
fields (or links or whatever that will do the job) that are linked to
different configuration files on my network and will show changes as I
open the drawing. For example: I want one field on my drawing to link to
my Autoexec.ncf file on one of my Novell servers. When I open the
drawing, I want to see the CONTENTS of the .ncf file, not just a link with
the name of the .ncf file. And when I change the original .ncf file on
the server, I want the changes reflected in my drawing when I next open
it. How can I do this? TIA

Bill




  #3  
Old September 23rd, 2004, 10:58 PM
Bill Clark
external usenet poster
 
Posts: n/a
Default

Whoa!! Man, I didn't think it would be that complicated to get something
like this. OK, I did some research after posting and ran across a company
called AmazingVisio and they have a product called EasyLink that appears to
do what I want. Has anyone had any dealings with this company and/or
product? Big thanks to your reply Al, I just don't think I have that much
time/skill to go with your suggested route.

Bill

"Al Edlund" wrote in message
...
Well,
Step one - identify what your underlying communication strategy is going
to be. If they were MS servers I'd go with WMI. Since you have Novell you
might want to consider using Telnet.
Step two - identify a toolset to get to the data independent of Visio. I
use PowerTCP's Telnet client (in both a VB6 and VB.Net implementation) and
handle the remote interface that way.
Step three - Identify how you want Visio to trigger on the opening.
Persistent events tied to a custom stencil work o.k.
Step four - decide if you want to do it as a standalone application that
calls Visio and opens the drawing, or you want to write it as an Addon. In
VB6 (since I didn't need the data to come out of the drawing) I used a
standalone to query and update, when I needed to integrate I started using
v2003 and VB.NET as an addon.
Since your playing with text files and doesn't sound like your using any
significant graphics function, you might want to reconsider doing it as a
visio app.
Al

"Bill Clark" wrote in message
...
Using Visio Pro v2002. I want to create a drawing that has several text
fields (or links or whatever that will do the job) that are linked to
different configuration files on my network and will show changes as I
open the drawing. For example: I want one field on my drawing to link
to my Autoexec.ncf file on one of my Novell servers. When I open the
drawing, I want to see the CONTENTS of the .ncf file, not just a link
with the name of the .ncf file. And when I change the original .ncf file
on the server, I want the changes reflected in my drawing when I next
open it. How can I do this? TIA

Bill






  #4  
Old September 24th, 2004, 02:56 PM
Al Edlund
external usenet poster
 
Posts: n/a
Default

Bill,
If you work the problem through it's basically 'just' remote viewing of a
file on the server and then wanting to post it to something (visio). So the
underlying challange is the automation of the viewing process. There are a
number of network protocols that could be used, all of them open you to some
sort of set of security exposures. Finding a third party tool that meets
your needs, and budget, is often a lot easier than writing your own.
Al
"Bill Clark" wrote in message
...
Whoa!! Man, I didn't think it would be that complicated to get something
like this. OK, I did some research after posting and ran across a company
called AmazingVisio and they have a product called EasyLink that appears
to do what I want. Has anyone had any dealings with this company and/or
product? Big thanks to your reply Al, I just don't think I have that much
time/skill to go with your suggested route.

Bill

"Al Edlund" wrote in message
...
Well,
Step one - identify what your underlying communication strategy is going
to be. If they were MS servers I'd go with WMI. Since you have Novell you
might want to consider using Telnet.
Step two - identify a toolset to get to the data independent of Visio. I
use PowerTCP's Telnet client (in both a VB6 and VB.Net implementation)
and
handle the remote interface that way.
Step three - Identify how you want Visio to trigger on the opening.
Persistent events tied to a custom stencil work o.k.
Step four - decide if you want to do it as a standalone application that
calls Visio and opens the drawing, or you want to write it as an Addon.
In VB6 (since I didn't need the data to come out of the drawing) I used a
standalone to query and update, when I needed to integrate I started
using v2003 and VB.NET as an addon.
Since your playing with text files and doesn't sound like your using any
significant graphics function, you might want to reconsider doing it as a
visio app.
Al

"Bill Clark" wrote in message
...
Using Visio Pro v2002. I want to create a drawing that has several text
fields (or links or whatever that will do the job) that are linked to
different configuration files on my network and will show changes as I
open the drawing. For example: I want one field on my drawing to link
to my Autoexec.ncf file on one of my Novell servers. When I open the
drawing, I want to see the CONTENTS of the .ncf file, not just a link
with the name of the .ncf file. And when I change the original .ncf
file on the server, I want the changes reflected in my drawing when I
next open it. How can I do this? TIA

Bill








 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Create dynamic link to multiple worksheets/workbooks Gerry at Maxx Worksheet Functions 1 September 28th, 2004 04:23 PM
Inserting MP3 Files Sue Powerpoint 1 August 4th, 2004 09:58 PM
Internal Link treated as an unfound external link Henri Martin Links and Linking 4 March 10th, 2004 08:02 PM
External Link To Other Files FERDIE Worksheet Functions 3 January 15th, 2004 01:07 AM


All times are GMT +1. The time now is 05:22 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.