Hi everybody
In an application I have, I had to start a word app. Because it took ages to load, I put it in the class constructor, but on exiting the app is not killed. I am trying to kill it by creating a destructor
~MyClass(){
appWord.Quit();
}
but I need 3 args in the quit method. What to do?