Click here to Skip to main content
15,868,141 members
Articles / Programming Languages / C#

Generic DataGridView V2.0

Rate me:
Please Sign up or sign in to vote.
4.71/5 (50 votes)
24 Jan 2008CPOL3 min read 541.4K   19.1K   265   104
A Generic DataGridView which has features of DataGridViewComboBoxColumn, DataGridViewCalendarColumn, DataGridViewMaskedTextBoxColumn, Validating DataGridView Columns and Saving any edited row with automatic created queries.
Sample Image - form2.jpg

Introduction

GenericDataGridView is a new control which is more flexible for coding than a simple datagrid. However, there are a lot of developers who are facing difficulties about DataGridView Calendar, Mask, ComboBox and also Validations. Actually, GenericDataGridView does not support such important properties.

Generic Data Grid View is a user control which can be really helpful for:

  1. Adding a combobox to DataGridView (DataGridViewComboBoxColumn)
  2. Adding a calendar to DataGridView (DataGridViewCalendarColumn)
  3. Adding a MaskedTextBox to DataGridView (DataGridView MaskedTextBox column)
  4. Validating DataGridView columns
  5. Saving any edited row with automatic created queries.

While I was coding Generic DataGridView, I tried to put all important features which can be required for a project. However, these are unlimited. You can add more properties and methods in order to improve it.

After placing the GenericDataGridView(GDGV) in your project, you should set some properties.

Image 2

Picture 1 - Properties

DataColumns should be set in design time or in Form_Load such as above and below:

C#
GenericDataGridView1.DataColumns = "OrderID,CustomerID%,OrderDate%,
	EmployeeID,Freight, ShipPostalCode%"

The column which has a string or date type should be written with % to distinguish. It is necessary for creating DML (Save and Update Queries). And also the first column should be an identity column. The Northwind Database and the Orders table has been selected to demonstrate the example project. In addition to this, the first column (OrderID) must be an identity column.

C#
GenericDataGridView1.DataConnection = "Integrated Security=SSPI;
Persist Security Info=False;Initial Catalog=Northwind;Data Source=localhost"
GenericDataGridView1.DataColumnsTable = "Orders"

There are some other definitions to be set in form_load:

  • FillAll: to fill DataGridView
  • AddCombo: to add a comboboxcolumn to DataGridView
  • AddValidation: to add validation to Columns
  • AddMask: to place a mask to columns
  • AddCalendar: to add a calendarcolumn to DataGridView

Image 3

Picture 2 - Form Load

Image 4

<
Picture 3 - Add Combo

Image 5

Picture 4 - Add Validation

Image 6

Picture 5 - Add Calendar

Image 7

Picture 6 - Add Mask

Image 8

Picture 7 - Form Load

Image 9

Picture 8 - Calendar Column

Image 10

Picture 9 - Combo Column

Image 11

Picture 10 - Validation

Image 12

Picture 11 - MaskedText Column

Image 13

Picture 12 - Row Saved

P.S.: There can be some bugs related with the properties of the database server and regional settings of the client such as datetime and (, or .) which can be fixed easily. Please feel free to ask any questions. The source code of the project has GenericDataGridView Control (C#), VB.NET Project to demonstrate the control and C# project to demonstrate the control.

Bug Fix Version

Firstly, thanks for your nice contributions. It was almost year ago that I posted the article, now the hit is 70.000. Every day I am receiving new emails with questions and comments from all over the world. I have already fixed some bugs of this version, I am sending a new post with a delay of 3 months.

The bug fix version includes 2 points:

  1. Null Column problem of dates, via adding datecolumns such as "OrderDate-" to DataColumns property of GDGV (GenericDataGridView). This problem is going to be solved. You will find one example in the source code.
  2. DateFormat problem, every country has got regional settings and database settings, that is why the new property "DBDateFormat" is defined. You can simply add it.
C#
GenericDataGridView1.DBDateFormat = "MM/dd/yyyy"

You will find one example in the source code.

Dear Readers,

I hope you will accept my excuses for delay of bug fix because of new component work. I have started to work on a new component which is GenericWebDataGrid control. As you know, web components are getting more attention after the client side programming has become popular. My new toy is working also on the client side. It is fast for updates and inserts (database works) and it is fast for development. I hope I will publish it by the end of this year. It is going to be free and open source.

The GenericWebDataGrid was published. Please check my other articles.

Please don't hesitate to ask any questions anytime. You can email me at ykocdag80@yahoo.com.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
Turkey Turkey
Phd. Yildirim Kocdag is a Computer Engineer.

Programming Languages
Android, Objective-c, c#, vb.net, asp.net, javascript, TSQL.

Computer Science
DataMining, Compilers, Expert Systems, Digital Image Processing, AI and Extreme Programming.

ykocdag@yahoo.com

http://www.linkedin.com/profile/view?id=223886830

Comments and Discussions

 
PraiseTeşekkür Pin
Member 1343682218-Dec-17 23:21
Member 1343682218-Dec-17 23:21 
Questionconnect it to access datatbase ? Pin
newcoder122-Sep-16 13:23
newcoder122-Sep-16 13:23 
Questionconnecting to access database Pin
newcoder121-Sep-16 13:39
newcoder121-Sep-16 13:39 
QuestionTrying to add a filter Pin
Member 121370972-Apr-16 9:25
Member 121370972-Apr-16 9:25 
Questionhow to change DB in the source code downloaded Pin
Member 1226500914-Jan-16 14:16
Member 1226500914-Jan-16 14:16 
GeneralRe: how to change DB in the source code downloaded Pin
PIEBALDconsult14-Jan-16 14:28
mvePIEBALDconsult14-Jan-16 14:28 
GeneralRe: how to change DB in the source code downloaded Pin
Member 1226500919-Jan-16 14:43
Member 1226500919-Jan-16 14:43 
GeneralRe: how to change DB in the source code downloaded Pin
Member 1226500919-Jan-16 14:46
Member 1226500919-Jan-16 14:46 
AnswerRe: how to change DB in the source code downloaded Pin
Yildirim Kocdag14-Jan-16 14:35
Yildirim Kocdag14-Jan-16 14:35 
QuestionBir Kaç Soru Pin
ssomar15-Jan-14 4:53
ssomar15-Jan-14 4:53 
AnswerRe: Bir Kaç Soru Pin
Yildirim Kocdag17-Jan-14 0:26
Yildirim Kocdag17-Jan-14 0:26 
GeneralRe: Bir Kaç Soru Pin
ssomar17-Jan-14 2:21
ssomar17-Jan-14 2:21 
GeneralRe: Bir Kaç Soru Pin
Yildirim Kocdag17-Jan-14 9:37
Yildirim Kocdag17-Jan-14 9:37 
GeneralRe: Bir Kaç Soru Pin
ssomar17-Jan-14 23:24
ssomar17-Jan-14 23:24 
GeneralRe: Bir Kaç Soru Pin
Yildirim Kocdag20-Jan-14 1:10
Yildirim Kocdag20-Jan-14 1:10 
GeneralRe: Bir Kaç Soru Pin
ssomar20-Jan-14 1:30
ssomar20-Jan-14 1:30 
GeneralThanks! Pin
Vígolfr Kolskeggr27-Aug-13 2:56
professionalVígolfr Kolskeggr27-Aug-13 2:56 
GeneralRe: Thanks! Pin
Yildirim Kocdag28-Aug-13 4:51
Yildirim Kocdag28-Aug-13 4:51 
GeneralRe: Thanks! Pin
Vígolfr Kolskeggr30-Aug-13 2:57
professionalVígolfr Kolskeggr30-Aug-13 2:57 
GeneralRe: Thanks! Pin
Yildirim Kocdag1-Sep-13 1:03
Yildirim Kocdag1-Sep-13 1:03 
GeneralMy vote of 5 Pin
ProEnggSoft7-Mar-12 2:07
ProEnggSoft7-Mar-12 2:07 
GeneralRe: My vote of 5 Pin
Yildirim Kocdag8-Mar-12 23:27
Yildirim Kocdag8-Mar-12 23:27 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey7-Feb-12 0:15
professionalManoj Kumar Choubey7-Feb-12 0:15 
GeneralRe: My vote of 5 Pin
Yildirim Kocdag8-Mar-12 23:26
Yildirim Kocdag8-Mar-12 23:26 
GeneralTo load the grid Pin
gito6922-Nov-10 11:02
gito6922-Nov-10 11:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.