Whatever message this page gives is out now! Go check it out!
ReleaseComObject(objectName)Parameter | Description |
objectName | Variable name of a COM object that was created using the CreateObject function or cfobject tag. |
<h3>ReleaseComObject Example</h3>
<cfscript>
obj = CreateObject("Com", "excel.application.9");
//code that uses the object goes here???I'd like to fill this in with something???
obj.quit();
ReleaseComObject(obj);
</cfscript>