I need to open some files from Navision
I use the HYPERLINK statement as follows:
HYPERLINK('file://C:/mygiffile.gif');
No problem with pdf, gif, jpeg and others.
But when I try with tif files, as follows:
HYPERLINK('file://C:/mytiffile.tif');
I get the error:
"C/SIDE hyperlinking failed.
You tried to hyperlink to this target:
[url=file://C:/mytiffile.tif]file://C:/mytiffile.tif[/url]
Do you want to place the hyperlink target on the clipboard?"
I also need to open ".dwg" (autocad) files with a autocad viewer.
Thanks in advance.
Marco Morreale
0
Comments
MS Office Imaging is commig up on my machine if I try to open .TIF with hyperlink.
If I type "file://C:/mytiffile.tif" in my browser address bar it opens correclty.
Marco
Loads of topics about this!
Marco
http://www.mibuso.com/forum/viewtopic.p ... erlink+tif
The same statement gets me the error reported before.
I will go on searching the forum, anyway.
Thanks
Marco
ShellExt Automation 'Microsoft Shell Controls And Automation'.Shell
and then enough to write few lines of code
CREATE(ShellExt);
ShellExt.Open("File Name");
CLEAR(ShellExt);
Thank you, Gandrius
Marco