Ejemplo n.º 1
0
        private void EditBank_Load(object sender, System.EventArgs e)
        {
            if (!drowBank.IsCityIDNull())
            {
                this.cmbCity.SelectedValue = drowBank.CityID;
            }
            if (!drowBank.IsKAccountNull())
            {
                this.tbKAccount.Text = drowBank.KAccount;
            }
            if (!drowBank.IsCodeBIKNull())
            {
                this.tbBIK.Text = drowBank.CodeBIK;
            }
            if (!drowBank.IsBankNameNull())
            {
                this.tbName.Text = drowBank.BankName;
            }

            if (drowBank.RowState == DataRowState.Detached)             // новая запись
            {
                if (this.cmbCity.Items.Count > 0 && this.cmbCity.SelectedIndex == -1)
                {
                    this.cmbCity.SelectedIndex = 0;
                }
                this.Text += " [Новый]";
            }
            else                // Редактируемая запись
            {
                this.Text += " [Редактирование]";
            }
        }