hey guys how i display datagridview cell values in a listbox once i click on it
heres what i have so far but it doesnt work
private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
{
listBox1.Text = dataGridView1.Rows[e.RowIndex].Cells["Description"].Value.ToString();
}
please help thanks in advanced