This example uses the Thread Class, but multithreaded applications can also be made using BackgroundWorker. The AddNumber, SubstractNumber, and DivideNumber functions will be executed by separate threads:
Edit: Now the UI thread waits for the child threads to finish and shows the result.
Module Mo...