Print This Article Post Comment Add To Favorites Email to Friends Ezine Ready

Datagridview Versus Datagrid

By: Russ Sabitov Home | Computers-and-Technology | Software


DataGridView Windows Forms control
The DataGridView Windows Forms control is a quite new .NET control introduced in MS Visual Studio .NET 2005 that is a good alternative to the VS .NET 1.x DataGrid control. The data table presentation feature became much easier to be implemented in .NET Windows application. The most attractive features of the new control are:
It allows to mix both data bound and unbound, virtual columns in the GridView.
It has a special virtual mode allowing to actually display more than 100 000 rows without a huge performance hit.
It gives ability to easily apply styles to individual columns, rows, cells, or an entire data source table.

DataGrid Windows Forms control
Obviously we do not need to disregard the .NET DataGrid control. For most situations it works faster than the new DataGridView. Also the control gives you ability to display hierarchical data. This is a big advantage of DataGrid .NET Windows Forms control.
In Visual Studio .NET 1.x, the DataGrid control is not easy to be used in .NET Windows application. A quantity of jobs you may want to achieve with the Windows Forms DataGrid control are, unexpectedly, more troublesome than you might expect. Principally, this is because the Windows Forms DataGrid control is column-based, rather than cell-based. As a result, to attain most tasks, you have to work with the columns, not the cells themselves.
DataGridColumns .NET assembly from RustemSoft is a DataGrid Columns Styles software package specifically designed for .NET developers. The assembly allows you to use all strengths of the MS Windows .NET forms DataGrid control without waiving the user interface elements your customers need. Learn more about DataGridColumns .NET assembly: http://www.smrtx.com/RS/datagrid_net.htm

VB .NET
Private Sub AddDataGridColumn()

Dim dataset As New DataSet

' Put some actions to populate the dataset

Dim TblStyle As New DataGridTableStyle

With TblStyle

' Set column style

With .GridColumnStyles

' Set datagrid ComboBox ColumnStyle for PubID field

.Add(New DataGridComboBoxColumn(dataset.Tables.Item("Companies"), 1, 0))

With .Item(0)

.MappingName = "PubID"

.HeaderText = "Company ID"

.Width = 150

.NullText = String.Empty

End With

End With

End With

' Add TableStyle

DataGrid1.TableStyles.Add(TblStyle)

End Sub



C#

private void AddDataGridColumn()

{

DataSet dataset = new DataSet();

// Put some actions to populate the dataset

// Set column style

DataGridTableStyle TblStyle = new DataGridTableStyle();

// Set datagrid ComboBox ColumnStyle for PubID field

DataTable tblCompanies = dataset.Tables["Companies"];

TblStyle.GridColumnStyles.Add(new DataGridComboBoxColumn(ref tblCompanies, 1, 0, true, false, true, DataGridComboBoxColumn.DisplayModes.ShowDisplayMember,0));

TblStyle.GridColumnStyles[0].MappingName = "PubID";

TblStyle.GridColumnStyles[0].HeaderText = "Company ID";

TblStyle.GridColumnStyles[0].Width = 150;

TblStyle.GridColumnStyles[0].NullText = string.Empty;

// Add TableStyle

DataGrid1.TableStyles.Add(TblStyle);

}



The above example creates a DataGridComboBoxColumn and adds it into DataGrid TableStyle.



DataGridView Columns .NET 2.0 assembly
In the new MS Visual Studio .NET 2005, the DataGridView control provides a visual table layout for displaying data. All DataGridView control designing operations are just dragging and dropping into the IDE design layout window. The DataGridView .NET 2.0 control seems a lot better than DataGrid .NET 1.x control. It provides a powerful and flexible way to display a data source. You can extend the DataGridView control in a number of ways to build custom behaviors into your applications. Although you can create your own types of cells the Windows Forms DataGridView control is mostly column-based, rather than cell-based. As a result, to attain most tasks, you have to work with the columns, the same way like with the DataGrid control.
In November 2005, Microsoft officially released the new Visual Studio 2005 also known as .NET 2.0. RustemSoft is presenting a software package for customizing your .NET 2.0 Windows Forms DataGridView Columns.
DataGridViewColumns .NET 2.0 assembly from RustemSoft is a DataGridView Columns software package specifically designed for .NET 2.0 developers. The assembly allows you to use all strengths of the MS Windows .NET 2.0 forms DataGridView control without waiving the user interface elements your customers need. Learn more about DataGridViewColumns .NET assembly: http://www.smrtx.com/RS/datagridview_columns.htm
DataGridViewColumns dynamic link library contains the following DataGridView Columns: Combo (extended combobox), Memo column, DateTimePicker column. Also the assembly includes the formatting intelligent DateTimeColumn, NumericColumn, TextFractionsColumn, MaskedTextBox column controls that can mask the date, time, numbers as well as the text fractions. It gives you ability to manage the IP Address, SS#, Phone numbers, etc., and checks the validation, and automatically set the delimiter location. These Column classes are chock full of functionality that you will not find in the standard Microsoft .NET 2.x DataGridView Columns, that make it easy to build professional and forcing user interfaces.



VB .NET
With DataGridView1

' Set DataGridView Combo Column for CarID field

Dim ColumnCar As New DataGridViewComboColumn

' DataGridView Combo ValueMember field has name "CarID"

' DataGridView Combo DisplayMember field has name "Car"

With ColumnCar

.DataPropertyName = "CarID"

.HeaderText = "Car Name"

.Width = 80

' Bind ColumnCar to Cars table

.box.DataSource = ds.Tables("Cars")

.box.ValueMember = "CarID"

.box.DisplayMember = "Car"

End With

.Columns.Add(ColumnCar)

End With



C#
// Set DataGridView Combo Column for CarID field

DataGridViewComboColumn ColumnCar = new DataGridViewComboColumn();

// DataGridView Combo ValueMember field name is "CarID"

// DataGridView Combo DisplayMember field name is "Car"

ColumnCar.DataPropertyName = "CarID";

ColumnCar.HeaderText = "Car Name";

ColumnCar.Width = 80;

// Bind ColumnCar to Cars table

ColumnCar.box.DataSource = ds.Tables["Cars"];

ColumnCar.box.ValueMember = "CarID";

ColumnCar.box.DisplayMember = "Car";

// Add ColumnCar onto DataGridView layout

DataGridView1.Columns.Add(ColumnCar);



The code above presents DataGridViewCombo Column usage



Extended DataGridView columns
The DataGridView control properties can be customized and the control object can be linked with or without an assigned DataSource object. The .NET 2.0 Framework includes six types of DataGridView column classes by default: DataGridViewButtonColumn, DataGridViewCheckBoxColumn, DataGridViewComboboxColumn, DataGridViewImageColumn, DataGridViewTextBoxColumn, and DataGridViewLinkColumn classes. RustemSoft DataGridViewColumns dynamic link library contains the following DataGridView Columns:


DataGridView Combo Column (extended combobox)

DataGridView Memo Column

DataGridView DateTimePicker Column

DataGridView DateTime Column

DataGridView Numeric Column

DataGridView Text Fractions Column

DataGridView Label Column

DataGridView DomainUpDown Column

DataGridView NumericUpDown Column

DataGridView Picture Column

DataGridView MaskedTextBox Column

DataGridView Print Class



The DataGridViewPrint service class is intended to help you to create a print output based on your DataGridView content. The class has been included into the assembly since it is build for .NET 2.0 WinForms DataGridView control and very helpful for your .NET 2.0 DataGridView design. It will help you to implement an application with a print preview and a print support.
The DataGridViewPrint class is used by the Print dialog and DataGridViewPrintPreview dialog (on your .NET 2.0 form) to draw the DataGridView object content that should be printed. An object of the class is used for a .NET 2.0 PrintDocument object.

Also the special DataGridViewPrintPreview class has been designed and added to the assembly. The class gives the ability to print DataGridView content by clicking 'Print' button located on the dialog window. Also 'Save to file' button is added onto Preview dialog layout. It allows you to save the print document into a bitmap image file. Learn more about DataGridViewPrint service class: http://rustemsoft.com/datagridview_columns2.htm#E



Article Source: http://www.eArticlesOnline.com

About the Author:
RustemSoft specializes in intelligent software solutions for XML designers and .NET developers.

Tags: , , , , , , , , , , , , , ,

Please Rate this Article

 

Not yet Rated

Click the XML Icon Above to Receive Software Articles Via RSS!

Recent Related Articles From Software

  • Effective Pest Control Company India
    By: Kuldeep Gupta | Apr 12th 2010
    Delhi pest control service is considered to be a high quality pest control online portal which offers ultimate control against pests, weeds and germs etc in general. Visit http://www.delhipestcontrol.com/ for buying pest control, general pest control delhi, cockroach control, termite control company, pest control company de ... Read

  • Using Powerful Report Generator In Wpf Applications.
    By: Eugene Akinshin | Apr 27th 2009
    New technologies provide developers with wider abilities designed to create applications with more sophisticated user interface and extended functionality. One of such technologies is WPF. Using the solutions described in the article provides the ability to use any Windows Forms control in WPF projects sometimes with slight ... Read

  • Cockroach Control | Pest Control Service |pest Control
    By: Kuldeep Gupta | Apr 5th 2010
    Delhipestcontrol.com now has been offering complete care and protection for your homes, dormitories, yards, wood material and kitchens etc from infestation of termites, rat/mice, wood boarers, cockroaches, lizards and other general pests. Visit http://www.delhipestcontrol.com/ for buying pest control, general pest control d ... Read

  • The Reliable And Best Pest Control Solutions Noida
    By: Kuldeep Gupta | Apr 10th 2010
    If you are ready to vacate your place due to abundance of cockroaches, lizards, squirrels, rats or mice. Visit http://www.delhipestcontrol.com/ for buying pest control, general pest control delhi, cockroach control, termite control company, pest control company delhi, cockroach control company, pest control company, termite ... Read

  • Wood Boarer Control Delhi Is An Eternal Control
    By: Kuldeep Gupta | Apr 14th 2010
    Delhi pest control service is considered to be a high quality pest control online portal which offers ultimate control against pests, weeds and germs etc in general. Visit http://www.delhipestcontrol.com/ for buying pest control, general pest control delhi, cockroach control, termite control company, pest control company de ... Read

  • The Best Pest Management Company In India
    By: Kuldeep Gupta | Mar 30th 2010
    Delhi pest control company offers, now, the best pest management. These pest controls include Pest Control, General pest control. Visit http://www.delhipestcontrol.com/ for buying pest control, general pest control delhi, cockroach control, termite control company, pest control company delhi, cockroach control company, pest ... Read

  • Uses Of Bluetooth Remote Control
    By: RussSnapper | Aug 19th 2008
    A Bluetooth remote control can be called as a true universal remote control. Read on to learn the complete functionalities of a Bluetooth remote control. Read

  • Birth Control Pills Can Help Acne Treatment - Know How
    By: Linda | Nov 18th 2007
    Get to know how some birth control pills be effective in acne scars, acne treatment and controlling acne Read

  • Bird Control, Bird Spikes, Bird Repellent, Pigeon Control
    By: cleondann | Mar 11th 2010
    Bird control devices help to get rid of birds. These tools block the birds from landing, roosting and nesting. These devices have important advantage that it can be used in any climatic conditions which is most effective way to make control over birds.

    Read

  • Termite Control Company | Termite Control Service | Pest Control
    By: Kuldeep Gupta | Mar 29th 2010
    Now you don’t have to worry when your area is infested with wood boarers, termites, rats, lizards or cockroaches because we claim responsibility to be an online Termite Control Service. Read


Copyright © 2005-2011 eArticlesOnline, LLC - All Rights Reserved
Terms of Service | Privacy Policy