How can I create a messagebox with two textboxes inside of it so the user can type in information that I can save?
Make a custom form and call MyForm.ShowDialog()
, assuming you have the dialog results set up properly.
The built-in MessageBox does not support that. You need create your own window and show in modal mode (setting the owner property)
精彩评论