| Title | Description |
| How to pass Objects to Forms through the Constructor | A lot of questions come up about working with controls or objects that are on a different form. The proper way to handle
this now is either through static or shared objects or passing the same instance
around to everything that needs it. T... |
| How to return Custom Objects as a Form Result | Sometimes it would be nice to make your form return a value or result. The .NET Framework provides a simple example of
this with the DialogResult object that a Modal form can return letting us know
if Ok or Cancel was pressed, but sometimes we n... |
| Import/Export Images with a Database | With the new changes in ADO.NET I found that I had to go back and
rewrite (go figure) some of my well used database code. I searched the
internet for a good example of how to write an image or file to a database and
get back again, but couldn'... |
| Showing Icons in Menus | If you were like me one of the first things you noticed when you built your first menu in .NET is that fact that Microsoft
didn't make a convenient method of adding icons to their menus. At first I
thought I had just missed something and kept se... |
| Threading with Parameters using BeginInvoke | Sometimes you want to execute or process a method
that may take sometime to complete. In the .NET framework this is very
easy, you can use threading directly or you can use a delegate and BeginInvoke.
One good thing about using a delegat... |