Can anyone tell me how to create a macro to open a file on my computer within
outlook? There are several files that I need to look at when using outlook.
I have tried attaching them to a task or contact but there are still several
steps to open it. I was hoping for a quick way to open a file to view.
Thanks.
Michael Kairys - 30 Jul 2005 17:50 GMT
How about:
Public Sub ViewFile()
Dim cmd As String
cmd = "notepad somefile.txt"
Status = Shell(cmd, vbNormalFocus)
End Sub