how to open a excel file on web by using DDE [message #338579] |
Tue, 05 August 2008 06:58 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
jebesh_s
Messages: 34 Registered: August 2007 Location: Chennai
|
Member |
|
|
Dear all,
I need to open a excel file on web by using DDL (forms10G)
i have written a code like below it is working fine in local meachine but not in web please help me to do this
Declare
M_APP_ID pls_integer;
M_CONV_ID pls_integer;
begin
M_APP_ID:=DDE.App_Begin('C:\Program Files\Microsoft Office\OFFICE11\EXCEL.EXE F:\Bin\ORION\DORN106\upload\UPLOAD_FC_1.xls',DDE.APP_MODE_NORMAL);
M_CONV_ID:=DDE.Initiate('EXCEL', 'F:\Bin\ORION\DORN106\upload\UPLOAD_FC_1.xls');
EXCEPTION
WHEN DDE.DMLERR_NO_CONV_ESTABLISHED THEN
--M_CONV_ESTABLISHED:=FALSE;
DDE.TERMINATE(M_CONV_ID);
DDE.APP_END(M_APP_ID);
END;
if the above coding is wrong please suggest me to write in a proper way.
Advance thanks
Thanks,
Antony
[Updated on: Tue, 05 August 2008 07:51] Report message to a moderator
|
|
|
|
|
|
|
Re: how to open a excel file on web by using DDE [message #339667 is a reply to message #339619] |
Fri, 08 August 2008 02:00 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
jebesh_s
Messages: 34 Registered: August 2007 Location: Chennai
|
Member |
|
|
Hi david ,
I am receiving ORA-106553 error
even i could not open a excel file by giving this
DDE.App_Begin('C:\Program Files\Microsoft Office\OFFICE11\EXCEL.EXE F:\Bin\ORION\DORN106\upload\UPLOAD_FC_1.xls',DDE.APP_MODE_NORMAL);
can you please make sure whether DDE will support for web or not
waiting for your update.
advance thanks
Thanks,
Jebesh S
[Updated on: Fri, 08 August 2008 02:15] Report message to a moderator
|
|
|
|