Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VB.NET 2005 Prob

Status
Not open for further replies.

arkomnv

Programmer
May 22, 2006
14
BE
In 2003 i used this code:
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

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top