HYPERLINK allowed link to directory in 370 but not 400

cbuethecbuethe Member Posts: 3
In a recent executable upgrade from 370 to 400 we found that all functions but the HYPERLINK seems to work the same. The database has a simple command of

HYPERLINK('c:\');

This did not return an error in 370 but returns an error in 400 of

C/SIDE hyperlinking failed.
You tried to hyperlink to this target:
c:\
Do you want to place that hyperlink target on the clipboard?

I located reference to the fin.stx file, which controls the available extensions for HYPERLINK, but saw no reference to folder or how to add anything to access just a folder.

When you go to Windows Explorer and type in c:\ as a link it opens Windows Explorer and this is what is desired.

Any ideas?

Comments

  • krikikriki Member, Moderator Posts: 9,112
    You can try this:
    SHELL(ENVIRON('windir') + '\explorer.exe','c:\');
    
    Regards,Alain Krikilion
    No PM,please use the forum. || May the <SOLVED>-attribute be in your title!


  • sunnyksunnyk Member Posts: 280
    Hi,
    What if the file is keep in some Server instead of local C drive. for E.g. \\Server1\HiddenFolder\Folder1
Sign In or Register to comment.