what i want is that when i write any thing on the richtextbox it appear on cell Text. I have found some codes on the internet but i don't know whats wrong:
for (int i = 0; i < richTextBox1.Lines.Length; i++)
{
ListViewItem lvi = new ListViewItem(i.ToString());
lvi.SubItems.Add(richTextBox1.Lines[i]);
listView1.Items.Add(lvi);
}
///PS -- Its for two columns
The other thing, I post Numberupdown item and i want to appear the time on it and on the cell time like this ""HH:MM:SS / 00:00:00"" so i control it by arrow
So, any ideas guys ?
P.S. I know that i can do this with DataGridVeiw but i want to learn something new