I'm making a Time Notification App with visual studio winform that will pop up a form message when the time is equal to time in my txt document. And my problem is I want to show message label in pop up form containing text in my other txt document. It's look like this.
int state = 1;
String[] schedule = System.IO.File.ReadAllLines(@"C:\loc\schedule12.txt");
Label TextBalloonLabel = new Label();
this.TextBalloonLabel.Text = dailySchedule[state];
In schedule String. schedule String[1] is "Good Work\nBreak Time" And in the label it show "Good Work\nBreak Time" too. But I want to add enter in label. How to do that ??
Thanks.