SELECIONAR ITEM DATAGRID
Boa tarde pessoa, como faço para selecionar uma linha do datagrid e jogar em seus respectivos campos.
Usei essa forma que encontrei aqui no site, mas da erro:
Registos.txtregisto.Text = DGPesquisa.Columns.Item(0)
Registos.txtnome.Text = DGPesquisa.Columns.Item(1)
erro:
Error 1 [ô]text[ô] is not a member of [ô]System.Windows.Forms.DataGridViewColumn[ô]. F:\SIAF\SIAF\SIAF\Pesquisa.vb 51 36 SIAF
Usei essa forma que encontrei aqui no site, mas da erro:
Registos.txtregisto.Text = DGPesquisa.Columns.Item(0)
Registos.txtnome.Text = DGPesquisa.Columns.Item(1)
erro:
Error 1 [ô]text[ô] is not a member of [ô]System.Windows.Forms.DataGridViewColumn[ô]. F:\SIAF\SIAF\SIAF\Pesquisa.vb 51 36 SIAF
Tipo
Registos.txtregisto.Text = DGPesquisa.currentRow.columns(0).value
só que da o erro:
Private Sub DGPesquisa_DoubleClick(sender As Object, e As System.EventArgs) Handles DGPesquisa.DoubleClick
Registos.txtregisto.Text = DGPesquisa.CurrentRow.columns(0).value
End Sub
Error 1 [ô]columns[ô] is not a member of [ô]System.Windows.Forms.DataGridViewRow[ô]. F:\SIAF\SIAF\SIAF\Pesquisa.vb 51 36 SIAF
Private Sub DGPesquisa_DoubleClick(sender As Object, e As System.EventArgs) Handles DGPesquisa.DoubleClick
Registos.txtregisto.Text = DGPesquisa.CurrentRow.columns(0).value
End Sub
Error 1 [ô]columns[ô] is not a member of [ô]System.Windows.Forms.DataGridViewRow[ô]. F:\SIAF\SIAF\SIAF\Pesquisa.vb 51 36 SIAF
Perdão, seria assim:
Registos.txtregisto.Text = DGPesquisa.CurrentRow.cells(0).value
Registos.txtregisto.Text = DGPesquisa.CurrentRow.cells(0).value
não esta devolvendo valor nenhum, dou o duplo clique e agora nada acontece, nem erro e nem valores, kkkkkk
Como vc está colocando?
tem que ser mesmo assim, porque os campos text não estão no mesmo form, só que quando clico não me devolve valor algum, já tentei em doubleclick e mousedoubleclick e nada.
registos.txtregisto.Text = DGPesquisa.CurrentRow.Cells(0).Value
registos.txtregisto.Text = DGPesquisa.CurrentRow.Cells(0).Value
Mas a primeira coluna tem algum valor?
sim, todos as colunas e linhas tem valores
Você deve estar fazendo algo errado... Faz assim, monte um exemplo básico ai de como estar tentando e poste aqui para que possamos analisar.
Tópico encerrado , respostas não são mais permitidas