Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.65K
~6K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for virusisfound

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 = …

Member Avatar for pritam_4
0
6K

The End.