tags:

views:

50

answers:

2

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
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