4

How can I create a messagebox with two textboxes inside of it so the user can type in information that I can save?

Robert
  • 6,086
  • 19
  • 59
  • 84

2 Answers2

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