Hyperlink with program arguments

E

Eric

Is it possible to have a hyperlink to an executable and
pass in arguments.

For example:

c:\notepad.exe myfile.txt

Thanks,

Eric
 
P

Perry

Look at the (read/write) Address property of the Hyperlink object as in:

ActiveDocument.Hyperlinks(1).Address = "c:\notepad.exe myfile.txt"

Krgrds,
Perry
 
Top