Dec 19, 2006 #1 Mongr1l Programmer Mar 6, 2006 179 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?
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?
Dec 19, 2006 #2 fawkes Technical User Sep 12, 2003 343 GB If you use a binding source you can collect the correct column from the current item of the binding source. Upvote 0 Downvote
If you use a binding source you can collect the correct column from the current item of the binding source.
Dec 19, 2006 #3 mansii Programmer Oct 18, 2002 641 ID Code: Dim dv As DataView Dim aa As Object aa = dv.Item(0)(0) Upvote 0 Downvote