Resumes the execution of a thread that was interrupted by
ThreadSuspend.
Reminder: A thread is a process run in parallel with the current application (main thread). This allows you to run a task in the background (e.g. backup, etc.).
// -- Click on BTN_Save
// Interrupts the print in background task
ThreadSuspend("Print_background")
// Backup
...
// Resumes the print
ThreadResume("Print_background")
Syntax
<Thread>: Character string
Name of the thread to restart. This name is given when running the thread (ThreadExecute).
No error occurs if the thread does not exist (thread already stopped for example).
Business / UI classification: Neutral code