Dear friends,
I have a question, I dont know how to do this.
A have written an activex exe (let say FileCopy.exe. I want that obect itself can be destroyed from the class.
suppose an application creates a component from the class "FileCopy"
Set NewFile =CreateObject ("FileCopy.Filops")
Is it possbile the application quits and object is still running in separate space and We can destry it (Filops) based on certain condition (let say timeout) from its own code (Filops).
A form is placed in the class. A timer control is on the form. Once the object is created the form is loaded and timer starts after the 15 seconds object should destroy itself. Client application which creates the file terminates just after the creation of object like
Set NewFile=CreateObject("FileCopy.Filops")
End
Any idea