In 2003 i used this code:
Datagrid!!!
to get the string at cel 3,3
but now in 2005 i used this code:
DataView!!!
i would like the same result as in 2003 that the data in the cel is put in a msgbox
Datagrid!!!
Code:
MsgBox(DGrid1.Item(3, 3))
to get the string at cel 3,3
but now in 2005 i used this code:
DataView!!!
Code:
MsgBox(DView1.Item(3, 3).ToString)
i would like the same result as in 2003 that the data in the cel is put in a msgbox