I am using msgbox to display simple one line msg to user.....
|
|
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Amit ChoudharyPosted Mar 27, 2010, 5:20 AM
use either "\n" or Environment.NewLine to get new line in MessageBox.Show() method:
MessageBox.Show("This is some data \n use it to show "+ Environment.NewLine+"Some Message with new line effects");
Please mark as answer if it helps.