Print Hyperlink Contents

chaddiesel

Registered User.
Local time
Today, 08:49
Joined
Mar 30, 2005
Messages
24
I have a table with a hyperlink field pointing to an Excel file that I
would like to automatically print out on a report form.

For example, I have a table:


Part--------Drawing(hyperlink field)
---------------------------------------------------------------------------*------------
Part1------\\sharedrive\drawings\part1excelfile.xls(hyperlink)
Part2------\\sharedrive\drawings\part2excelfile.xls(hyperlink)
Part3------\\sharedrive\drawings\part3excelfile.xls(hyperlink)


I want to be able to automatically print the associated drawing for the
parts returned in a query. If the query returns Part1 and Part3, I
want part1excelfile.xls and part3excelfile.xls to print out--whether it
be on a report or form.


I have been able to print a report based on a plain text field that
contained the path to a jpg image and the following code used a source
for an image frame:


Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Me![ImageFrame].picture = me![ImagePath]
End Sub


ImagePath being the field that lists the location of the file
(\\sharedrive\picture.jpg)


However, now, I need to do this with an Excel file.


Can this be done? I don't want to store the excel file as an OLE
object and have a huge database file.


Any help would be appreciated.


Thanks,


-Chad
 

Users who are viewing this thread

Back
Top Bottom