Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
<pre> for(i=0;i<=dataGridView1.Rows.Count-1;i++)
            {
                if (dataGridView1.Rows[i].Cells[1].Value.ToString() == txtcscnic1.Text + "-" + txtcscnic2.Text + "-" + txtcscnic3.Text)
                {
                    
                    dataGridView1.Rows[i].Selected = true;
                    itemFound = true;
                    
                   
                
             
            }
            string str = dataGridView1.Rows[i].Cells[0].Value.ToString();
            string[] gcnic;
            gcnic = str.Split('-');
            txtcnic1.Text = gcnic[0];
            txtcnic2.Text = gcnic[1];
            txtcnic3.Text = gcnic[2];
Posted

this way...
C#
private void dataGridView1_SelectionChanged(object sender, EventArgs e)
{
   txtbox1.Text = dataGridView1.SelectedRows[0].cells[0].value;
}

Happy coding!
:)
 
Share this answer
 
C#
private void dataGridView1_CellClick(object sender, EventArgs e)
{
   int i;
   i = dataGridView1.SelectedCells[0].RowIndex;
   txtbox1.Text = dataGridView1.Rows[i].Cells[0].Value.ToString();
   txtbox2.Text = dataGridView1.Rows[i].Cells[1].Value.ToString();
}


Thanks
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900