Programming Tips - Windows: How can I make the text in a MessageBox() more than one line?

Date: 2009aug30 Language: C/C++ OS: Windows Platform: win32 Keywords: multiline Q. Windows: How can I make the text in a MessageBox() more than one line? A. Place \r\n between lines like this:
MessageBox("Line One\r\nLine Two\r\nLine Three", "My Program", MB_OK);