How can I create a messagebox with two textboxes inside of it so the user can type in information that I can save?
Asked
Active
Viewed 1.2k times
2 Answers
9
Make a custom form and call MyForm.ShowDialog()
, assuming you have the dialog results set up properly.

Richard J. Ross III
- 55,009
- 24
- 135
- 201
3
The built-in MessageBox does not support that. You need create your own window and show in modal mode (setting the owner property)

Klaus Byskov Pedersen
- 117,245
- 29
- 183
- 222