Click here to Skip to main content
Licence CPOL
First Posted 4 Jul 2006
Views 314,170
Downloads 8,438
Bookmarked 234 times

Generic DataGridView V2.0

By | 24 Jan 2008 | Article
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.

Picture 1 - Properties

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

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.

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

Picture 2 - Form Load

<
Picture 3 - Add Combo

Picture 4 - Add Validation

Picture 5 - Add Calendar

Picture 6 - Add Mask

Picture 7 - Form Load

Picture 8 - Calendar Column

Picture 9 - Combo Column

Picture 10 - Validation

Picture 11 - MaskedText Column

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.
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)

About the Author

Yildirim Kocdag

Web Developer

Turkey Turkey

Member

Yildirim Kocdag is a MSc.BSc.Computer Engineer from Istanbul. He is working as a .NET consultant. Currently using c#, vb.net, asp.net, javascript, SQL and Oracle. His Favourite areas in Computer Science are Compilers, Expert Systems, Digital Image Processing, AI and Extreme Programming.
ykocdag@yahoo.com


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionwhat is the purpose of bool blank control in addvalidation PinmemberMathewJ0:39 9 Apr '08  
AnswerRe: what is the purpose of bool blank control in addvalidation PinmemberYildirim Kocdag0:54 9 Apr '08  
QuestionHow to Add Validation as column property @ designtime? PinmemberMathewJ2:02 3 Apr '08  
AnswerRe: How to Add Validation as column property @ designtime? PinmemberYildirim Kocdag2:10 3 Apr '08  
GeneralRe: How to Add Validation as column property @ designtime? PinmemberMathewJ20:53 3 Apr '08  
GeneralRe: How to Add Validation as column property @ designtime? PinmemberYildirim Kocdag22:28 3 Apr '08  
GeneralAdding Calendar Cell to new rows PinmemberMathewJ1:27 2 Apr '08  
Hi,
 
this is a great article!!!!
 
I have a doubt regarding calendar column .I need to add rows during runtime with Calendar column in a particular cell.
 
Say,for example.
I have added columns OrderID,OrderDate,Frieght to the grid during the design time .And Set OrderDate column as CalenderColumn.While running the application ,all the data are getting displayed.
 
Now I have a button named "addrow".When i click it, i need to add a new row .And while clicking the save button everything shud get saved.But Im unable to add a new row with Calendar Control as Column type..
 
Plzzz helppp...Thanks a lot...
GeneralRe: Adding Calendar Cell to new rows PinmemberYildirim Kocdag3:45 2 Apr '08  
GeneralRe: Adding Calendar Cell to new rows PinmemberMathewJ18:08 2 Apr '08  
GeneralBug in Mask PinmemberMedo19911:45 24 Feb '08  
GeneralRe: Bug in Mask PinmemberYildirim Kocdag21:08 24 Feb '08  
GeneralRe: Bug in Mask PinmemberMedo1993:49 25 Feb '08  
GeneralRe: Bug in Mask [modified] PinmemberJ.Thomas0:19 19 Apr '08  
GeneralReally a helpful code PinmemberNeogerot0:50 28 Nov '07  
GeneralEmpty Date and Localization Pinmemberqumer10112:17 19 Oct '07  
GeneralControl stops responding Pinmemberrctaubert2:58 4 Oct '07  
GeneralRe: Control stops responding PinmemberYildirim Kocdag3:43 5 Oct '07  
GeneralRe: Control stops responding Pinmemberrctaubert5:47 5 Oct '07  
QuestionLicense? PinmemberJay R. Wren10:30 3 Oct '07  
AnswerRe: License? PinmemberYildirim Kocdag19:13 3 Oct '07  
GeneralDataGridView Extension PinmemberAlexander Alexandrov21:09 27 Aug '07  
GeneralRe: DataGridView Extension PinmemberYildirim Kocdag3:25 2 Oct '07  
GeneralError in line::ctl.Value = (DateTime)this.Value PinmemberOleksandr Kuklyuk6:22 17 Aug '07  
GeneralTo Retrieve Data from DataGRidView Pinmembermikobi22:56 28 Jun '07  
QuestionCool - But where is the datasource? PinmemberBo Hansen21:27 13 Jun '07  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 24 Jan 2008
Article Copyright 2006 by Yildirim Kocdag
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid