Exemplo n.º 1
0
        public frmZones()
        {
            InitializeComponent();

            objMaster = new ZoneBO();
            this.SetProperties((INavigation)objMaster);

            this.FormClosing += new FormClosingEventHandler(frmZones_FormClosing);

            this.Shown += new EventHandler(frmZones_Shown);


            ComboFunctions.FillZoneTypes(ddlType);
            FormatGrid();
        }
Exemplo n.º 2
0
 public void FillCombo()
 {
     ComboFunctions.FillZoneTypes(ddlFromZone);
     ComboFunctions.FillZoneTypes(ddlToZone);
 }