I have an application that currently has a message loop. If I were to create a modal dialog box with the DialogBox method would the current message loop receive messages from the dialog as well or would they be withheld by the runtime?
I have an application that currently has a message loop. If I were to
Share
DialogBox creates its own message loop so your message loop will not run. From the documentation: