hi,
id like to start a function e.g. calculate() and right after that the copydir(); function.
copydir() should not wait till calculate() is finished, because it takes some time.
I need no info when calculate() is finished.
Is there an easy way to achief this? or do i need to create an active object or similar?
calculate();
copydir();
...

Reply With Quote

