No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
1 Posted Topic
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (e.ColumnIndex == 0) string LoginId = dataGridView1.Rows[e.RowIndex].Cells[1].Value.ToString(); string Name = dataGridView1.Rows[e.RowIndex].Cells[2].Value.ToString(); string EmailId = dataGridView1.Rows[e.RowIndex].Cells[3].Value.ToString(); string Address = dataGridView1.Rows[e.RowIndex].Cells[4].Value.ToString(); string url = dataGridView1.Rows[e.RowIndex].Cells[5].Value.ToString(); var path = Application.StartupPath.Substring(0, (Application.StartupPath.Length - 10)); textBox2.Text = Name; textBox3.Text = EmailId; textBox4.Text = Address; Bitmap image = …
The End.