7
Answers

I know it'll be simple for you guys| call takes 1 overload???

Anthony Clarke

Anthony Clarke

13y
1.8k
1

Hi,
Just wondering if you could tell me what im meant to put in the Call() brackets.

 
private void Call(DataGridViewCellEventArgs o)
{
int rowIndex = o.RowIndex;
string t = dataGridView2.Rows[o.RowIndex].Cells["Name"].Value.ToString();
textBox1.Text = t;
}
private void button3_Click(object sender, EventArgs e)
{
Call();
}
}
Thanks
Anthony
Answers (7)