Hi I am developing a Web based Content Management System and I want to integrate it with Axapta.
When I insert a new document I have in a Axapta table the path of the new file inserted on our server. So How can I open a Word, PDF, ... document from Axapta using X++?
There is some way to launch a windows command from Axapta in order to open the document with one of the applications installed in the client computer?
Thanks guys
0
Comments
You can take a look at winapi::ShellExecute
May it could help you.
Good luck,
Mkz
A Dynamics Ax (Axapta) tricks site in Spanish language
{
;
WinAPI::shellExecute('C:\TMP\\resumen.pdf');
}
Opened my PDF document.