0
I’m with this mistake
Threaded operation not valid: 'Lblcheck' control accessed to from a thread other than the thread where it was created.
Task tarefa = Task.Run(() =>{
}
.ContinueWith(t => {
LblCheck.Text = "Programa pronto para ser usado!";
progressBar1.Value = 100;
});
How I can access main thread elements in other threads ?
You’ve heard of the estate
CheckForIllegalCrossThreadCall
?– CypherPotato
I didn’t know no
– Amadeu Antunes