| A Practical Guide to .NET DataTables, DataSets and DataGrids - Part 4 |
| The Code Project |
| The purpose of this document is to provide a practical guide to using Microsoft’s .NET DataTables, DataSets and DataGrid |
|
| Article 2 - Dynamic creation of database |
| The Code Project |
| Display data using Dataset and Data Grid control after the database is created |
|
| Changing the background color of cells in a DataGrid |
| The Code Project |
| In this article I want to show how you can change the background color of a specific cells in a datagrid. .To do this you first have to create class derived from DataGridTextBoxColumn or DataGridColumnStyle. You then have to override the Paint() method of these classes. Note that this method has three overloaded versions. |
|
| ComboBox in DataGrid |
| The Code Project |
| How to embed ComboBox (DropDown list) in a DataGrid |
|
| Creating a custom DataGridColumnStyle in C# |
| C#Today |
| The .NET framework provides many unique controls like the DataGrid, which is a data bound list control that displays the items from a data source in a table. The DataGrid is the most powerful and flexible control in the .NET toolbox. In this article, Chad DePue takes a look at one aspect of the DataGrids flexibility, by creating a custom column. The DataGrid provides two types of columns for free, the DataGridTextBoxColumn and the DataGridBoolColumn, but there are many types of data that wont fit into either of these two column types. In the example given, we want to search a directory for icon (.ICO) files and display each icon as a row in the DataGrid. Neither of the existing column styles will do this for us, so we create our own. |
|
| Data grid combobox column style |
| GotDotNet |
| This is a simple example on how to build a custom DataGridColumnStyle that will handle linked field in a database with the use of a Combo Box. |
|
| Generating a Combo Box in DATA GRID Columns |
| C# Help |
| DataGrid programming in .NET is real fun. And that too if you're trying to get it programmed in a winforms world its double the work. You got to write a whole lot of code for a simple extensibility of the existing features of datagrid. One good example is having a combobox in one of the columns of the datagrid. |
|
| How to Print a DataGrid in C# and .NET |
| C# Corner |
| In order to encapsulate the drawing of the DataGridPrinter to the Printer, I created the DataGridPrinter. This class takes a DataGrid, a PrintDocument, and a DataTable passed to its constructor and utilizes these objects to draw the DataGrid to the printer. |
|
| HOW TO: Extend the Windows Form DataGridTextBoxColumn Control to Custom-Format Data (Q318581) |
| http://www.kbalertz.com/ |
| This step-by-step article describes how to extend the Windows Form DataGridTextBoxColumn control so that you can custom-format your data for display and editing in a Windows Form DataGrid. |
|
| HOW TO: Extend the Windows Form DataGridTextBoxColumn Control to Custom-Format Data (Q318581) |
| Microsoft Support |
| This step-by-step article describes how to extend the Windows Form DataGridTextBoxColumn control so that you can custom-format your data for display and editing in a Windows Form DataGrid. |
|
| System.Windows.Forms.DataGrid Control Sample |
| GotDotNet |
| Demonstration of using the System.Windows.Forms.DataGrid control with WinForms. |
|