Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/uy/public_html/wp-includes/functions.php on line 6121
dataGridView_CellClick kullanımı – Umut Yazılım - Ümit AYDIN

dataGridView_CellClick kullanımı

dataGridView_CellClick kullanımı

private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (e.RowIndex >= 0)
{
DataGridViewRow row = this.dataGridView1.Rows[e.RowIndex];
textbox1.Text = row.Cells[“col_1”].Value.ToString();
textbox2.Text = row.Cells[“col_2”].Value.ToString();
textbox3.Text = row.Cells[“col_3”].Value.ToString();
textbox4.Text = row.Cells[“col_4”].Value.ToString();
textbox5.Text = row.Cells[“col_5”].Value.ToString();
textbox6.Text = row.Cells[“col_6”].Value.ToString();
textbox7.Text = row.Cells[“col_7”].Value.ToString();
}
}

Bir yanıt yazın

E-posta adresiniz yayınlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir