I have an application which use tcom library to access COM object. In the end of my program, I'm trying to delete the COM object. Following is my reference.
Here's my program
package require tcom
# create COM objec
set application [::tcom::ref createobject "MyApplication"]
# unbind and release COM object
::tcom::unbind $application
set application {}
$application Quit
unset application
And the result turns out to be
object does not implement method or property Quit
How to delete the COM object correctly?