Posts by Wemerson Costa • 1 point
1 post
-
0
votes4
answers4412
viewsA: How to set the data of a Datagrid to a Textbox in C#
private void dataListar_DoubleClick(object sender, EventArgs e) { this.txtIdUsuario.Text = Convert.ToString(this.dataListar.CurrentRow.Cells["idUsuario"].Value); this.txtNomeUsuario.Text =…