I have a listbox being populated from textbox entry.
{
textBox2.Text.Replace("\r\n", "\r");
listBox1.Items.Add(textBox2.Text);
}
Whats happening is the textbox is being populated in a single column format, when it moves over to the listbox the \r\n gets changed to the black squares and does populate the same as it looked in the textbox.
You might want to do a string
Splitinstead.