Board index » cppbuilder » Multi-line text in MessageBox

Multi-line text in MessageBox


2004-09-08 11:31:37 PM
cppbuilder30
Hi,
Does anyone know how to split the text in a message box over multiple lines
Application->MessageBox("Text_to_be_on_Line_1 Text_to_be_on_Line_2", "Text", MB_OK);
thanks
Rob
 
 

Re:Multi-line text in MessageBox

"rob kemp" < XXXX@XXXXX.COM >wrote in message
Quote

Hi,
Does anyone know how to split the text in a message box over
multiple lines

Application->MessageBox("Text_to_be_on_Line_1
Text_to_be_on_Line_2", "Text", MB_OK);

thanks
Rob
Application->MessageBox("Text_to_be_on_Line_1 \nText_to_be_on_Line_2",
"Text", MB_OK);
- Arnie