In .NET they did away with the Prompt box that allows free form input in a text box.
MessageBox only supports a button click reponse.
You would need to create your own form that acts like the prompt box and call that form with the .ShowDialog() function to achieve the same functionality.
Comment