Unable to make multiple lines for text in CRL app

Hello,
I am working on making a very simple application in VS 2015 using CLR project. So I have created a form and when they click a button they go to a new form and text appears on the screen based on what is selected. I am using windows forms and a label to display the text. I am not at the computer with my code but below is the format, the \n is printed, when I use COUT statement it creates new line.

label->Text = "Test data to display on page\n";

Any ideas where I am messing up, or the correct syntax for new line in a label? Maybe Label is not the right option if you have multiple lines that will be read-only?
So I am at my computer now, so this works:
private: System::Void button5_Click(System::Object^ sender, System::EventArgs^ e) {

label3->Text = "Nice Job, that is Correct\n";

}

But it prints the /n, I tried doing the following

private: System::Void button5_Click(System::Object^ sender, System::EventArgs^ e) {

label3->Text = "Nice Job, that is Correct" "\nTest";

}
};

This worked.
Topic archived. No new replies allowed.