Application.StartTask

0
0

Hello dears,

i want to know if is there any possibility to Abort a started task by Application.StartTask ?

I need to abort a task, because on some forms/proccess i’ve got a very expensive background tasks, so i check if i close the own form the task continue and i need to abort it.

Best regards

  • You must to post comments
1
0

The task will end when your function exits. If you have a loop, just exit the loop. If the task function waits for something else, like a db query, you need to end the process it’s waiting on.

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.