read from dataset

pc-moon

New member
Joined
Jan 4, 2010
Messages
2
Programming Experience
1-3
hello by all body

i wanna one help me in dataset

i make dataset by vs select database and connect auto by vs

and now wanna read field by dataset

i found in msdn but not found

i see in one web site this code
VB.NET:
dim table as string = "username"

dataset.tables(table).rows(dataset.tables(table).column("Language"))

but take me error

vs = visaul stdio
 
thanks for every body for read and solve my problem

i found solve

VB.NET:
dataset.tables(table).rows(0).items(1))

good bye
 
Back
Top