Show a loading screen in vb.net

前端 未结 3 1546
执念已碎
执念已碎 2021-02-10 15:30

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条回答
  •  余生分开走
    2021-02-10 15:39

    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.

提交回复
热议问题