public FieldList(DailyHarvestCW DHC, String strDiv)
 {
     DHCash = DHC;
     cmbDivision.SelectedValue = strDiv;
     formType = 3;
     InitializeComponent();
 }
        public EmployeeList(DailyHarvestCW myForm, String strDiv)
        {
            myDHarvestCW  = myForm;
            strDivisionId = strDiv;
            intFormId     = 2;

            InitializeComponent();

            cmbDivision_SelectedIndexChanged(null, null);
            cmbDivision.SelectedValue = strDiv;
        }
Beispiel #3
0
 public ACSubCategoryList(DailyHarvestCW DHCW)
 {
     objDailyHarvestCW = DHCW;
     intFormID         = 2;
     InitializeComponent();
     try
     {
         gvSubCategoryList.DataSource = DHAccounts.GetAccountSubCategories();
     }
     catch
     {
     }
 }
Beispiel #4
0
 public JobList(DailyHarvestCW dHarvestCW)
 {
     myDHarvestCW = dHarvestCW;
     intFrmType   = 2;
     InitializeComponent();
 }