Roman Numerals

A quick summary of roman numeral conversion is available over at Nova Roma

Trapping the Close “X” Button in a Form

Want to hide a form instead of closing it? Here’s a quick solution.

Form Tricks

An interesting article titled Windows Forms Tricks You May Have Missed at CodeGuru.com

Resizing an MDI Child Form to Fit its Parent

Here’s a useful snippet for resizing an MDI child form to fit its parent, minus the title bar, menu bar, status bar and so on:

foreach (Control ctrl in MdiParent.Controls)

{

    if (ctrl is MdiClient)

    {

        Width = ctrl.ClientSize.Width;

        Height = ctrl.ClientSize.Height;

        break;

    }

}