Exemple #1
0
        private void ShowDetailsManual(SSystemDefaultsRow ARow)
        {
            if (ARow == null)
            {
                FPetraUtilsObject.ClearControls(pnlBottom);
                FControlsDataTable.RemoveAllControls();
                pnlBottom.Enabled = false;
                return;
            }

            // Display the controls required for the system default code in this row
            pnlBottom.Enabled = true;
            FPrevDefaultValue = ARow.DefaultValue;
            FControlsDataTable.ShowControls(ARow.DefaultCode, pnlValues, ARow.DefaultValue, ARow.ReadOnly, ControlValidatedHandler);
        }