Click here to Skip to main content
15,867,488 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# regarding running multiple task Pin
lmoelleb1-Nov-21 22:53
lmoelleb1-Nov-21 22:53 
AnswerRe: C# regarding running multiple task Pin
Gerry Schmitz2-Nov-21 7:53
mveGerry Schmitz2-Nov-21 7:53 
QuestionC# reading multiple files by multiple thread issue Pin
Mou_kol1-Nov-21 8:13
Mou_kol1-Nov-21 8:13 
QuestionRe: C# reading multiple files by multiple thread issue Pin
Member 153296131-Nov-21 8:29
Member 153296131-Nov-21 8:29 
AnswerRe: C# reading multiple files by multiple thread issue Pin
Randor 1-Nov-21 15:41
professional Randor 1-Nov-21 15:41 
AnswerRe: C# reading multiple files by multiple thread issue Pin
Gerry Schmitz2-Nov-21 7:53
mveGerry Schmitz2-Nov-21 7:53 
AnswerRe: C# reading multiple files by multiple thread issue Pin
primem0ver4-Nov-21 5:47
primem0ver4-Nov-21 5:47 
QuestionThread Label Updating Pin
Member 1540852926-Oct-21 8:15
Member 1540852926-Oct-21 8:15 
Hi,

On my Win Form App, I'm starting a new thread for my Splash Screen (and when loading some component on my main form).

I wanna be able to update a label on the new thread. I try with invoke, delegate and similar thing but i'm not able to do it.

I'm now out of ressource. Can anyone help me with this ? May be my code is not the best to do this ?

The frmSplashScreen form containt a label name metroLabel4 and this is the one I want to update from the other form (when I load the component, where the "// Code for loading component go here" is.

Thanks in advance

C#
public frmMain()
{
	Thread t = new Thread(new ThreadStart(Loading)); // Starting thread
        t.Start();
        InitializeComponent();

        // Code for loading component go here
            
        t.Abort();//Complete
}

//Start splash screen
void Loading()
{
	frmSplashScreen frm = new frmSplashScreen();
	Application.Run(frm);
}

AnswerRe: Thread Label Updating Pin
Gerry Schmitz26-Oct-21 8:36
mveGerry Schmitz26-Oct-21 8:36 
GeneralRe: Thread Label Updating Pin
Member 1540852926-Oct-21 9:17
Member 1540852926-Oct-21 9:17 
AnswerRe: Thread Label Updating Pin
OriginalGriff26-Oct-21 8:59
mveOriginalGriff26-Oct-21 8:59 
GeneralRe: Thread Label Updating Pin
Member 1540852926-Oct-21 9:15
Member 1540852926-Oct-21 9:15 
GeneralRe: Thread Label Updating Pin
OriginalGriff26-Oct-21 22:17
mveOriginalGriff26-Oct-21 22:17 
GeneralRe: Thread Label Updating Pin
Gerry Schmitz28-Oct-21 6:43
mveGerry Schmitz28-Oct-21 6:43 
GeneralRe: Thread Label Updating Pin
OriginalGriff28-Oct-21 20:17
mveOriginalGriff28-Oct-21 20:17 
AnswerRe: Thread Label Updating Pin
BillWoodruff26-Oct-21 16:55
professionalBillWoodruff26-Oct-21 16:55 
Question.NET with problems Pin
Ismael Oliveira 202123-Oct-21 9:48
Ismael Oliveira 202123-Oct-21 9:48 
AnswerRe: .NET with problems Pin
Dave Kreskowiak23-Oct-21 12:15
mveDave Kreskowiak23-Oct-21 12:15 
AnswerRe: .NET with problems Pin
Gerry Schmitz23-Oct-21 16:00
mveGerry Schmitz23-Oct-21 16:00 
AnswerRe: .NET with problems Pin
BillWoodruff23-Oct-21 21:04
professionalBillWoodruff23-Oct-21 21:04 
AnswerRe: .NET with problems Pin
Matthew Dennis26-Oct-21 8:52
sysadminMatthew Dennis26-Oct-21 8:52 
QuestionC# Virtual Camera Pin
Software and Sowftware21-Oct-21 23:32
Software and Sowftware21-Oct-21 23:32 
AnswerRe: C# Virtual Camera Pin
lmoelleb22-Oct-21 2:30
lmoelleb22-Oct-21 2:30 
AnswerRe: C# Virtual Camera Pin
Gerry Schmitz22-Oct-21 7:37
mveGerry Schmitz22-Oct-21 7:37 
QuestionC# & .Net core new features related articles Pin
Mou_kol19-Oct-21 8:14
Mou_kol19-Oct-21 8:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.