Beispiel #1
0
 public JobList(MusterChitEntry MusterC)
 {
     myMusterChit       = MusterC;
     intFrmType         = 6;
     strCrop            = "None";
     strExpenditureType = "None";
     InitializeComponent();
 }
Beispiel #2
0
 public JobList(MusterChitEntry MusterC, String exType)
 {
     myMusterChit       = MusterC;
     intFrmType         = 5;
     strCrop            = "None";
     strExpenditureType = exType;
     InitializeComponent();
 }
 public FieldList(MusterChitEntry MC, String strDiv)
 {
     MChit        = MC;
     strFDivision = strDiv;
     formType     = 1;
     InitializeComponent();
     try
     {
         cmbDivision.SelectedValue = strFDivision;
         cmbDivison_SelectedIndexChanged(null, null);
     }
     catch { }
 }
Beispiel #4
0
 public ACSubCategoryList(MusterChitEntry MC)
 {
     objMC     = MC;
     intFormID = 5;
     InitializeComponent();
     try
     {
         gvSubCategoryList.DataSource = DHAccounts.GetAccountSubCategories();
     }
     catch
     {
     }
 }
Beispiel #5
0
 public FrmPleaseWait(MusterChitEntry objMust)
 {
     objMuster = objMust;
     InitializeComponent();
     Application.DoEvents();
 }