stevensteven
Programmer
Is it possible to create a new MessageBox in a thread, and be able to not select the window that called the message box?
// In Code
MenuHandler Callback
Create MessageBox in new Thread // It HAS to be in another thread
// Wait for For DialogResult And not allowed to select the window calling this
If(DialogResult == DialogResult.OK)
// Do Stuff
// In Code
MenuHandler Callback
Create MessageBox in new Thread // It HAS to be in another thread
// Wait for For DialogResult And not allowed to select the window calling this
If(DialogResult == DialogResult.OK)
// Do Stuff