Browse and launch external app files easily

You may want to launch an external application from within Notes documents without embedding or attaching files. These two buttons give you great control over finding the file, storing the link and launching it.


You need two buttons and a field.
Browse
Launch
LinkPath (Text, Editable)

When you click the browse button you will get a File Browse dialog box. When you select a file it will store the full path in the LinkPath field. When you click the Launch button the file will be launched with its application.

Browse button formula
tmp :=@Prompt([LOCALBROWSE] ; "Browse"; "Select the file you wish to link to this document..."; 3); @Command([ViewRefreshFields]); FIELD LinkPath := @If(tmp=""; LinkPath; tmp);

Launch button formula
@Command([Execute]; LinkPath)

Very simple but effective.

This was first published in October 2001

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.