Tim Van Wassenhove
Passionate geek, interested in Technology. Proud father of two
Home
All posts
Tags
Posts
16
Sep 2006
DataGridView with EditOnEnter as EditMode
Earlier this week i found that when a DataGridView has it’s EditMode property set to EditOnEnter the user cannot s...
16
Sep 2006
Drag and Drop on a DataGridView
Here is a bit of sample code that allows you to drag and drop a cellvalue in a DataGridView (don’t forget to set t...
16
Sep 2006
Inconsistent Drag and Drop API
Every System.Windows.Forms.Control has the following events public event DragEventHandler DragDrop public event DragEven...
14
Sep 2006
Adding DataGridViewColumns (lots of them)
Last couple of days i’ve been trying to add a couple (750+) columns into a DataGridView. Initially i tried the fol...
10
Sep 2006
Implementing Master/Detail for Custom Objects with DataGridViewComboBoxColumns
Imagine you have the following two classes public class Parent { private int id; private string name; public Parent( int...
10
Sep 2006
Using DataGridViewComboBoxColumn with Custom Objects
Earlier today i was playing with the DataGridView control. I wanted to have a couple of DataGridViewComboBoxColumns in o...
09
Sep 2006
Playing with VMWare Server
Earlier today i decided to add an image to my VMWare Server. The creation of the image went smooth but at the end of the...
03
Sep 2006
Generate a menu with month names
I still see people building their calendar control or month (or day) picker with a hardcoded array of month (or day) nam...
03
Sep 2006
List the month names
As i wrote in Generate a menu with month names it’s silly to hardcode month names. Here’s a C# sample using ...
03
Sep 2006
Selecting custom Objects from a ComboBox
Earlier this week someone asked me how he could select custom objects from a ComboBox. Here is the code he used private ...
← Prev page
Next page →