I want to display a MessageBox alerting the user that the process is complete, and giving a breakdown on how long each stage of the process took. I\'ve got the text that I w
For the record, this is in fact possible, MessageBox() expands tabs. For example:
private void button1_Click(object sender, EventArgs e) {
MessageBox.Show(
"hello\tworld\r\n" +
"second\tline");
}
It isn't very trustworthy if the word width starts to approach the tab width. You still should prefer a little helper form with a ListView.