Opening an RTF or DOC file from an Access Form command button

G

Guest

Shell "C:\Program Files\Windows NT\Accessories\wordpad.exe
c:\temp\document.rtf", vbNormalFocus

This command opens an rtf with WordPad.

In VB.NET Process.start "c:\temp\document.rtf"
Opens the file in either Word or WordPad depending upon the mapping of the
..rtf extension.

Is there a way to accomplish the same thing as Process.Start but from Access
2003.

Shell "c:\temp\document.rtf" crashes
 
R

Rick Brandt

genojoe said:
Shell "C:\Program Files\Windows NT\Accessories\wordpad.exe
c:\temp\document.rtf", vbNormalFocus

This command opens an rtf with WordPad.

In VB.NET Process.start "c:\temp\document.rtf"
Opens the file in either Word or WordPad depending upon the mapping
of the .rtf extension.

Is there a way to accomplish the same thing as Process.Start but from
Access 2003.

Shell "c:\temp\document.rtf" crashes

Application.FollowHyperlink "c:\temp\document.rtf"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top