Is it better to show ProgressBar UserForms in VBA as modal or modeless?

前端 未结 5 731
闹比i
闹比i 2020-12-19 05:36

Is it better to show ProgressBar UserForms in VBA as modal or modeless? What are the best practices for developing progress indicators in VBA?

Modeless UserForms req

5条回答
  •  一整个雨季
    2020-12-19 05:53

    I am going to close this one out and say Modal is the winner. I have tried both ways, but you end up trying to close too many loopholes with modeless userforms. Modal is more difficult because it is more strict, but it encourages you to break up your code into smaller chunks which is better in the long run anyway.

提交回复
热议问题