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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Data Views and Data Row View

Status
Not open for further replies.

Mongr1l

Programmer
Mar 6, 2006
179
0
0
US
I have a data view and I want the simplest way to access the first column of the first record.

What's the quickest way to do this?
 
If you use a binding source you can collect the correct column from the current item of the binding source.
 
Code:
Dim dv As DataView
Dim aa As Object
aa = dv.Item(0)(0)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top