P
Patrick
Hello - I am wondering what the command is for breaking quoted text over
multiple lines for formatting in my code. An example is
MessageBox.Show("You Fool! The number of registrants cannot be 0. Please
re-enter the number of registrants.", _
"Input Error", MessageBoxButtons.OK, MessageBoxIcon.Asterisk)
I would like to break the text box so it can all be viewed on the coding
screen or when the text is too much - description labels and such, as
bellow, of course, below doesn't work:
MessageBox.Show("You Fool! The number of registrants cannot be 0. _
Please re-enter the number of registrants.", "Input Error",
MessageBoxButtons.OK, _
MessageBoxIcon.Asterisk)
I really can't find an answer on how to do this. Any help would be
appreciated, and thanks!
multiple lines for formatting in my code. An example is
MessageBox.Show("You Fool! The number of registrants cannot be 0. Please
re-enter the number of registrants.", _
"Input Error", MessageBoxButtons.OK, MessageBoxIcon.Asterisk)
I would like to break the text box so it can all be viewed on the coding
screen or when the text is too much - description labels and such, as
bellow, of course, below doesn't work:
MessageBox.Show("You Fool! The number of registrants cannot be 0. _
Please re-enter the number of registrants.", "Input Error",
MessageBoxButtons.OK, _
MessageBoxIcon.Asterisk)
I really can't find an answer on how to do this. Any help would be
appreciated, and thanks!