Dec 19, 2006 #1 Mongr1l Programmer Joined Mar 6, 2006 Messages 179 Location 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 Joined Sep 12, 2003 Messages 343 Location 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 Joined Oct 18, 2002 Messages 641 Location ID Code: Dim dv As DataView Dim aa As Object aa = dv.Item(0)(0) Upvote 0 Downvote