I need to show a screen or something, saying \'Loading\' or whatever while long process are working.
I am creating a application with the Windows Media Encoder SDK and i
Two things you can try.
After setting your label (as mentioned in the comment to Mitchel) call Application.DoEvents()
Application.DoEvents()
Another option you have is to run the initialization code for the encoder in a BackgroundWorker process.