private void FormFeesForIns_Load(object sender, EventArgs e)
 {
     comboFeeSchedWithout.Items.Add(Lan.g(this, "none"));
     comboFeeSchedWith.Items.Add(Lan.g(this, "none"));
     comboFeeSchedNew.Items.Add(Lan.g(this, "none"));
     comboFeeSchedWithout.SelectedIndex = 0;
     comboFeeSchedWith.SelectedIndex    = 0;
     comboFeeSchedNew.SelectedIndex     = 0;
     FeeSchedsStandard = DefB.GetFeeSchedList("");
     for (int i = 0; i < FeeSchedsStandard.Length; i++)
     {
         comboFeeSchedWithout.Items.Add(FeeSchedsStandard[i].ItemName);
         comboFeeSchedWith.Items.Add(FeeSchedsStandard[i].ItemName);
         comboFeeSchedNew.Items.Add(FeeSchedsStandard[i].ItemName);
     }
     FillGrid();
 }