Using MsgBox without pausing the application

后端 未结 7 935
一向
一向 2020-12-16 14:05

I need to display a message to the user. When I do this using MsgBox, the program stops until the user clicks the box away. I\'d like to know if there\'s a way

7条回答
  •  轮回少年
    2020-12-16 14:33

    MsgBox is modal (meaning the window comes up and halts execution of code until it is cleared). As other posters/commenters have mentioned - your alternative is to write your own version of a popup that is not modal. Not really worth the effort unless you really need it that way.

提交回复
热议问题