Openoffice ole object Free
Posted: Tue Mar 24, 2015 2:10 pm
Hello,
I have created an openoffice ole object from my application using Delphi.
That is shown below:-
OpenOffice : Variant;
OpenOffice := CreateOleObject('com.sun.star.ServiceManager');
It is getting created successfully.But when i try to free it,it still remains in task manager.
I tried the following commands to free openoffice but with no success:
varclear(openoffice);
FreeAndNil(openoffice);
openoffice := Unassigned;
Is there any other solution for this?
Thank you in advance.
I have created an openoffice ole object from my application using Delphi.
That is shown below:-
OpenOffice : Variant;
OpenOffice := CreateOleObject('com.sun.star.ServiceManager');
It is getting created successfully.But when i try to free it,it still remains in task manager.
I tried the following commands to free openoffice but with no success:
varclear(openoffice);
FreeAndNil(openoffice);
openoffice := Unassigned;
Is there any other solution for this?
Thank you in advance.