0

Hi i'm getting an error here . What can i do for?

TextBox1.Text = GDLoadCaixa.Item(0, GDLoadCaixa.CurrentRow.Index).Value.ToString

Severity Code Description Project File Line Suppression State

Error BC30456 'Item' is not a member of 'GridControl'.

Severity Code Description Project File Line Suppression State

Error BC30456 'CurrentRow' is not a member of 'GridControl'.

braX
  • 11,506
  • 5
  • 20
  • 33
Leogreen
  • 701
  • 1
  • 6
  • 20

1 Answers1

0

My solution was

textbox1.text= gridView1.Columns.View .GetFocusedRowCellValue ("id")

Leogreen
  • 701
  • 1
  • 6
  • 20