J
Jonathan Dixon
I have a textbox and want to insert data into it from a datagrid like so
TextBox2.Text = "Milestone ID: " + mileid;
TextBox2.Text = TextBox2.Text + "Milestone Name: " + milestonename;
TextBox2.Text = TextBox2.Text + "Milestone Description: " + description;
TextBox2.Text = TextBox2.Text + "Milestone Folder: " + directory;
TextBox2.Text = TextBox2.Text + "Date Added: " + dateadded;
Is there any way to add a newline so that each bit of text appears on a
seperate line of the textbox
Thanks
TextBox2.Text = "Milestone ID: " + mileid;
TextBox2.Text = TextBox2.Text + "Milestone Name: " + milestonename;
TextBox2.Text = TextBox2.Text + "Milestone Description: " + description;
TextBox2.Text = TextBox2.Text + "Milestone Folder: " + directory;
TextBox2.Text = TextBox2.Text + "Date Added: " + dateadded;
Is there any way to add a newline so that each bit of text appears on a
seperate line of the textbox
Thanks