|
|
|
|
Re: how to open document of all office in developer 6i useing OLE2 [message #427329 is a reply to message #424256] |
Thu, 22 October 2009 01:50 |
coolbunny111
Messages: 12 Registered: June 2009
|
Junior Member |
|
|
You can open any document whether it's related of ms office or acrobat by using dde.appbegin instead of using ole2
Here I m affixing a sample code for your reference
declare
AppID PLS_INTEGER;
begin
AppID := DDE.App_Begin('C:\Program Files\Adobe\Acrobat 7.0\Acrobat\ACROBAT.EXE '||'H:\oracle_r_n_d\send_mail\EMPTOT.PDF',DDE.APP_MODE_MAXIMIZED);
end;
hope this will suffice your purpose
|
|
|