A quick summary of roman numeral conversion is available over at Nova Roma
A quick summary of roman numeral conversion is available over at Nova Roma
Want to hide a form instead of closing it? Here’s a quick solution.
An interesting article titled Windows Forms Tricks You May Have Missed at CodeGuru.com
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;
}
}