We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hello,
When i'm closing the application eg, after 30 seconds OTL will raise an exception with error code 1400 invalid window handle. Any ideas ?
var FTask1: IOmniTimedTask; FTask2: IOmniTimedTask; procedure DoSometing1; begin end; procedure DoSometing2; begin end; procedure StartTimedTasks(const Task: IOmniTask); begin FTask1 := Parallel.TimedTask.Every(1000).Execute(DoSometing1); FTask2 := Parallel.TimedTask.Every(1000).Execute(DoSometing2); FTask1.Start; FTask2.Start; end; procedure TForm8.FormCreate(Sender: TObject); begin Parallel.Async(StartTimedTasks); end;
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
Hello,
When i'm closing the application eg, after 30 seconds OTL will raise an exception with error code 1400 invalid window handle. Any ideas ?
The text was updated successfully, but these errors were encountered: