Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to run Microsoft Office. Docum. Imaging tiff file from FoxPro

Status
Not open for further replies.

ewsnow

Technical User
Sep 19, 2002
8
0
0
PR
Hi.....
Is very simple to start an application like Microsoft Office Document Image from FoxPro Version 2.6W. I need when the application open, directly open the tiff file I wanted. I heard that VFP have a Hyperlink function, but 2.6 not. Could someone have a solution to that?. Thanks
 
Hi.....
Is very simple to start an application like Microsoft Office Document Image from FoxPro Version 2.6W. I need when the application open, directly open the tiff file I wanted. I heard that VFP have a Hyperlink function, but 2.6 not. Could someone have a solution to that?. Thanks
 
Have you ever used the RUN command?
Code:
cMyPic = "c:\images\mytiff.tif"
RUN /N MSPAINT &cMyPic

Of course, substitute MSPAINT with the name of the app you want to use to open the .TIF.




Have you ever used the RUN command?
Code:
cMyPic = "c:\images\mytiff.tif"
RUN /N MSPAINT &cMyPic

Of course, substitute MSPAINT with the name of the app you want to use to open the .TIF.




-Dave Summers-
[cheers]
Even more Fox stuff at:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top