Often you will want to have an input box that takes numbers only. Again by deriving from the standard controls this is easily achieved, for example:
using System;
using System.Windows.Forms;
using System.Globalization;
namespace StackOverflowDocumentation
{
public class SONumberBox : SO...