private void FormEditColumnNumeric_Load(object sender, EventArgs e)
        {
            try
            {
                var format = _props.GetFormatString();

                lblMin.Text = _props.Min.ToString(format);

                if (_props.Max != _props.Min)
                {
                    lblMax.Text = _props.Max.ToString(format);
                }

                if (_props.IsDecimal)
                {
                    txtValue.DecimalPlaces = _props.DecimalPlaces;
                }

                txtValue.Minimum = _props.Min;

                if (_props.Max != _props.Min)
                {
                    txtValue.Maximum = _props.Max;
                }

                ///////////////////////////////////////////////////////////////////////////////

                txtValue.Select();

                txtValue.Select(0, txtValue.Text.Length);

                ShowValueComboBox();
            }
            catch (Exception ex)
            {
                MainForm.ShowExceptionMessage(ex);
            }
        }