Visual Studio 2005 C++ Project Creation Failed
Filed under: Uncategorized
I recently was assigned the task of creating a pocket pc service using visual c++ and was going to attempt to use Visual Studio 2005 to do this. I opened up the IDE and clicked on "New Project" and then selected c++ smart device application. To my dismay, the IDE got upset and said it ...
WinForms New AutoComplete Functionality
Filed under: Uncategorized
One of the nice new features that have been added to winforms in 2.0 is the AutoComplete functionality for textboxes and comboxes. By setting up a data source (really just a source of strings) one can quickly add auto complete functionality to their forms. It is pretty simple to set up the auto complete functionality. ...
TablePanelLayout: An Overview
Filed under: Uncategorized
The .net framework 2.0 has brought a few new controls to the winform environment. Among these new controls is the TableLayoutControl. At first glance, one might wonder why there is a need for this new control. It is easy to drag and drop controls exactly where you want them in a windows form. The control ...
TableLayoutPanel Styles
Filed under: Uncategorized
Setting Styles: In the midst of working with the tablelayoutpanel I found I needed to control the styles of the cells. There is a lot to cover for controlling the rows and columns, so for now I am just going to cover the basics. The row styles ...
Hide properties in BindingList
Filed under: Uncategorized
I was recently working on a project that needed a custom list of objects bound to a DataGridView. I found the BindingList but soon realized that it bound all of my public properties to the DataGridView. This was not the outcome I was looking for so I started doing a lot of research. I couldn't ...