Home » Developer & Programmer » Forms » How To KILL a Process (excel.exe) using Forms 6i
How To KILL a Process (excel.exe) using Forms 6i [message #87762] Mon, 07 February 2005 22:59 Go to next message
Shalini Kapoor
Messages: 6
Registered: February 2005
Junior Member
Hello Experts.

I need to kill the process excel.exe from my
application. I have written and read to and from an
excel file. Even after closing the worksheet and
exiting the application the excel.exe process runs in
the memory. I need to kill this process.

PLease help me. Thanks in advance.
Re: How To KILL a Process (excel.exe) using Forms 6i [message #87768 is a reply to message #87762] Tue, 08 February 2005 02:54 Go to previous messageGo to next message
kiran
Messages: 503
Registered: July 2000
Senior Member
You can release the object by using the built in procedure RELEASE_OBJ.

I hope this works for you.

--Kiran.
Re: How To KILL a Process (excel.exe) using Forms 6i [message #87769 is a reply to message #87762] Tue, 08 February 2005 03:04 Go to previous message
Anil Pushkar
Messages: 4
Registered: February 2005
Junior Member
check it.

DECLARE  
EXCEL_ID PLS_INTEGER;
BEGIN 

EXCEL_ID := DDE.Initiate('EXCEL', 'C:/TEST.xls');
/* start Eccel.exe */

 DDE.Terminate(EXCEL_ID); /* kill Eccel.exe */
END;
Previous Topic: Oracle9i and Developer6i
Next Topic: form error
Goto Forum:
  


Current Time: Thu Sep 19 15:09:55 CDT 2024