Show a loading screen in vb.net

前端 未结 3 1270
独厮守ぢ
独厮守ぢ 2021-02-10 14:58

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

3条回答
  •  旧时难觅i
    2021-02-10 15:42

    Two things you can try.

    After setting your label (as mentioned in the comment to Mitchel) call Application.DoEvents()

    Another option you have is to run the initialization code for the encoder in a BackgroundWorker process.

提交回复
热议问题