Display two or more lines in the text of a Message Box

Is there a way to display two or more lines in the text of a Message Box?

For eg.: "Minimum (smallest) number = “+minimumNumber.toString+” "+"Max no = "+maxNo.toString

That shows up as one line with two messages/numbers. Instead of a space between the two messages, how can the min and max numbers be displayed on two separate lines in the text of the Message Box as if “enter” key was pressed and two separated lines were displayed?

"Minimum (smallest) number = “+minimumNumber.toString+vbcrlf+"Max no = "+maxNo.toString

4 Likes

Thank you. It works.

Cool! :slight_smile:

3 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.