I would like to know how to make a new line when showing a message box
For example: MessageBox(hWnd, TEXT("Line" & newLine), TEXT("Caption"), MB_OK);
Can anyone help me?
Thanks
Printable View
I would like to know how to make a new line when showing a message box
For example: MessageBox(hWnd, TEXT("Line" & newLine), TEXT("Caption"), MB_OK);
Can anyone help me?
Thanks
Use \n:
MessageBox(hWnd, TEXT("Line\n"), TEXT("Caption"), MB_OK);
Thanks