[]
To bind to an ADO.NET data source, complete the following steps:

To write code in Visual Basic
vbnet Me.EmployeesTableAdapter.Fill(Me.NwindDataSet.Employees)
To write code in C#
csharp this.EmployeesTableAdapter.Fill(this.NwindDataSet.Employees);
Suppose we want to show the first name, date of birth, notes, and photo for each employee. The first name and date of birth will be displayed in a C1Label control, notes in C1TextBox, and photo in C1PictureBox. Binding the C1Input controls to the data source involves the following operations:
For the C1Label1 control, go to the Properties window, select NwindDataSet from the drop-down list for the DataSource property.
Then select Employees.FirstName from the list for the DataField property.
type=note
Note: To change the Label's Size property, you must set its AutoSize property to False.
As in the steps above, from the Properties window, bind the C1Label2 DataSource property to NwindDataSet and the DataField property to Employees.BirthDate.
Bind the C1TextBox1 DataSource property to NwindDataSet and the DataField property to Employees.Notes.
After binding the controls, complete the following tasks:
Next, bind the C1PictureBox control to the Photo field.
First select NwindDataSet in the DataSource property combo box of the C1PictureBox control.
Then open the DataField property combo box and select Employees.Photo from the list of available fields.
Next, set up the C1DbNavigator1 control allowing the user to navigate through the data set. To bind the navigator control to the data source:
First select dataSet11 in its DataSource property combo box.
Then select Employees in its DataMember property combo box.
To dock the navigator control to the bottom of the form and separate it from the rest of the form with a three-dimensional line, set the following properties:
C1Input controls show data in Employees records. You can navigate between Employees records using the four DVD-style buttons of the navigator control. You can also go directly to a certain record by typing the record number in the navigator control record number edit field, or set the input focus to the record number field and use mouse wheel to scroll through the records.
