Ok. This may not be the BEST way of doing this, but it is what I thought of...
I want to embed several help files and other such information into a visio diagram in the form of an object - wordpad document.
And at specific times, the coding will grab the data from that object, and place it into a list box.
The problem is, I do not know how to reference the information.
For example, to grab the data from my excel sheet i have embedded i use the line of code:
Set xlsheet = ActivePage.Shapes("DataBank").Object.Worksheets(10)
And then I tell it somewhere else:
Variable = xlsheet.range(coumn & row)
How do i accomplish the same task, but with a text file instead?
I want to embed several help files and other such information into a visio diagram in the form of an object - wordpad document.
And at specific times, the coding will grab the data from that object, and place it into a list box.
The problem is, I do not know how to reference the information.
For example, to grab the data from my excel sheet i have embedded i use the line of code:
Set xlsheet = ActivePage.Shapes("DataBank").Object.Worksheets(10)
And then I tell it somewhere else:
Variable = xlsheet.range(coumn & row)
How do i accomplish the same task, but with a text file instead?