How can I create a messagebox with two textboxes inside of it so the user can type in information that I can save?
+3
A:
Make a custom form and call MyForm.ShowDialog()
, assuming you have the dialog results set up properly.
Richard J. Ross III
2010-10-15 16:56:43
A:
The built-in MessageBox does not support that. You need create your own window and show in modal mode (setting the owner property)
klausbyskov
2010-10-15 16:57:48