Quick and dirty way of creating Numeric TextBox in .Net (C#)
Handle KeyDown event of the TextBox and set the e.Handled property to true if the character is not numeric. ...
Programmatically scroll Listbox in .Net (Windows Forms, C#)
It seems that .Net library doesn’t provide any way to scroll contents of ListBox through code. Selecting an item by...
Handle arrow key events in Windows Forms .Net (C#)
Pressing of a key is detected and handled in Windows Form using KeyPress, KeyDown or similar events. But these events...
RepMonitor: Oracle Replication Error Monitoring Tool
I had an assignment to rectify the Oracle data replication implementation between multiple Oracle databases connected over a wide area...
Loading and Saving a TreeView control to an XML file using XmlTextWriter and XmlTextReader
Follow the below link to see my article at CodeProject with source code. http://www.codeproject.com/KB/cpp/TreeView_Serializer.aspx It demonstrates how to serialize and...