Hi there,
Does anyone know how to open a .MSG file when calling it using the SHELL function.
I have a client who stores MSG files as BLOB files in Navision V4 SP1. They cannot open the files again beacuse the code to open them in Navision uses HYPERLINK, which has been changed in V4 to only open file extensions that have been specified in the fin.stx file. Microsoft say that they will not alter any fin.stx files but this file extension will be added when SP3 is released.
They advised that I should be using the SHELL command to open the MSG file, but so far I can only open a new message with the message that I want to view attached to it.
I am using the following code:
SHELL(Text000,Filename);
The Text variable TEXT000 = C:\Program Files\Microsoft Office\Office11\Outlook.exe
Filename = Temporary file location.
Thanks in advance
Paul
0
Comments
http://www.mibuso.com/forum/viewtopic.php?t=12861
I am having the same problem but i found a solution on this page http://office.microsoft.com/nl-nl/outlo ... 11043.aspx
(its in dutch) the solution is to use a parameter so the shell command would be:
The Text variable TEXT000 = C:\Program Files\Microsoft Office\Office11\Outlook.exe /f
Filename = Temporary file location.
then the .msg file wil be open normal and not as a attatchment on a new email