BindingNavigator Help

kcwallace

Centurion
Joined
May 27, 2004
Messages
175
Location
Austin, TX
I would like to use a binding navigator to allow the user to move through the database records.

I cannot seem to figure out how to bind it to my dataset/dataadapter entirely through code.
 
Nevermind,

I figured it out:

Visual Basic:
        Dim bs As New BindingSource(DS, DS.Tables(0).TableName)
        BindingNavigator1.BindingSource() = bs
 
Back
Top