Data Binding In Tierdeveloper Washington DC

One of the most powerful aspects of . NET and Windows Forms is data binding. Data binding is the process of associating user interface (UI) elements with a data source to generate a visual representation of data.

Local Companies

Total Computer Solutions, Inc.
301-793-4833
5311 Water Street, Suite C
Upper Marlboro, MD
APB News Com
(202) 204-3045
1300 Pennsylvania Ave
Washington, DC
Mercury Computers Systems
703-413-0781
1901 S Bell St
Arlington, VA
Apple Computer
(202) 772-9500
901 15th St Nw
Washington, DC
Dupont Computers Inc
(202) 232-6363
1761 S St NW
Washington, DC
APTI
(202) 223-8808
1250 24th St Nw
Washington, DC
Logic Computer Software
703-920-2552
2340 Columbia Pike
Arlington, VA
Wilson Technologies Inc
(202) 529-4900
3127 Apple Rd NE
Washington, DC
Fortress Systems Ltd
(202) 338-1670
Washington, DC
Coretechs Consulting Inc
(202) 686-0667
Washington, DC

One of the most powerful aspects of .NET and Windows Forms is data binding. Data binding is the process of associating user interface (UI) elements with a data source to generate a visual representation of data. Two types of data binding are available for Windows Forms: Simple Data Binding and Complex Data Binding.

Simple data binding allows you to bind one data element to a control. In many situations you want to display only one record at a time e.g., customer’s personal information. Textboxes and labels are such controls that are used for this purpose and hence called simple binding.

Complex data binding allows you to bind more than one data element to a control. For example if you want to display number of orders placed by a customer you would use controls like data grid controls, list boxes.

The data binding capabilities of .NET are similar to ADO and the Visual Basic controls. Visual Basic or Delphi users will find .NET data binding more flexible and more transparent. It saves a lot of time in both Windows Forms and ASP.NET applications.

How to Bind TierDeveloper DataSet to Data Grid Control

Assumptions

  1. You are using TierDeveloper’s sample project “TDevStoreSQL.tier” and you’ve defined a query method “GetAllCustomers” for the object “Customers”.
  2. You have generated the components and Windows Forms Application from TierDeveloper.
  3. You have access to a database, such as Microsoft SQL Server™ or Microsoft Access.

In order to bind Data Grid please follow these steps: -

1. Open the TierDeveloper generated project in VS.NET

2. Add and open a new Windows Form.

3. Select the ToolBox window and click on Windows Forms tab.

4. Drag DataGrid component and place it anywhere on the Windows Form.

5. Paste the following code in the Windows Form Load event.

[Visual Basic]

Private Sub CustomersForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load	Dim cf As CustomersFactory = New CustomersFactory	DataGrid1.CaptionText = "Customers" 	DataGrid1.DataSource = cf.GetAllCustomersDS()End Sub

[C#]

Private void CustomersForm_Load(object sender, System.EventArgs e){			CustomersFactory cf = New CustomersFactory();	DataGrid1.CaptionText = "Customers" ;	DataGrid1.DataSource = cf.GetAllCustomersDS();}

6. The postfix DS shows that this method will return a DataSet object.

7. Run the application and you will see that the DataGrid is filled with all the customers.

Note: You can also bind datagrid to customer collection to do this you will just have to change the grid data source to the method that can return collection.

DataGrid1.DataSource = cf.GetAllCustomers();

About the Author:

I am Ann Morris and work in Software development consultancy company.

ann@alachisoft.com


Article Source:

thePhantomWriters Article Submission Service

Featured Local Company

Total Computer Solutions, Inc.

Total Computer Solutions, Inc. Serving DC, Bowie, Largo, Upper Marlboro, Crofton, Clinton, etc.

301-793-4833
5311 Water Street, Suite C
Upper Marlboro, MD
www.tcsidc.com

Total Computer Solutions, Inc. is the place to call for your Total Computer Solution! Whether it's Computer Repair, Upgrades, Network Design/Installation, New Systems, Used Systems, Cabling, Phone Systems, Software or any number of other services..... we are here to get your systems up and running efficiently at an affordable price. In most cases, we can even save you money on your phone/internet bill and get you faster, more reliable internet services. So whether you have one location or multiple locations.... don't you think you owe it to yourself to give us a call?

$200 gift card
Save on Dell

Related Local Event
Free Computer Classes @ Martin Luther King Jr. Memorial Library
Dates: 7/5/2009 - 7/5/2009
Location: MLK Jr. Memorial Library
Washington, DC
View Details