Open files on client side from ORACLE Forms
Posted
by Mousarules
on Stack Overflow
See other posts from Stack Overflow
or by Mousarules
Published on 2010-06-07T09:35:24Z
Indexed on
2010/06/07
9:42 UTC
Read the original article
Hit count: 393
I'm trying to put a code on a button so that the used would be able to open a specific excel file whenever he pressed it , unfortunately the code i was using ( AppID ) happened to be opening the file on the server side not the client side ; please find the code below :
DECLARE
AppID PLS_INTEGER;
BEGIN
AppID := DDE.App_Begin('C:\Program Files\Microsoft Office\Office12\WINWORD.EXE C:\test\'||:TT_PER_RF_MAIN.T_NUMBER||'.docx', DDE.APP_MODE_NORMAL);
END;
Can anyone help me how to let the users ( client side ) be able to open it on thier own PCs?
© Stack Overflow or respective owner