예제 #1
0
 public frmSignIn()
 {
     //
     // Required for Windows Form Designer support
     //
     InitializeComponent();
     clog = new CMSM.log.CMSMLog(Application.StartupPath + "\\log\\");
     //
     // TODO: Add any constructor code after InitializeComponent call
     //
 }
예제 #2
0
 public frmContractAdd()
 {
     //
     // Windows 窗体设计器支持所必需的
     //
     InitializeComponent();
     clog = new CMSM.log.CMSMLog(Application.StartupPath + "\\log\\");
     //
     // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
     //
 }
예제 #3
0
        public frmProductionInStorage(FormType ft)
        {
            InitializeComponent();
            clog          = new CMSM.log.CMSMLog(Application.StartupPath + "\\log\\");
            this.formType = ft;
            switch (this.formType)
            {
            case FormType.ProductionInStorage:
                this.Text           = "生产入库";
                this.lblInDate.Text = "入库日期";
                this.gbTotal.Text   = "入库合计";
                this.groupBox1.Text = "入库栏目";
                this.sbtnOk.Text    = "入库(F6)";
                break;

            case FormType.SaleCheck:
                this.Text           = "销售盘点";
                this.lblInDate.Text = "盘点日期";
                this.gbTotal.Text   = "盘点合计";
                this.groupBox1.Text = "盘点栏目";
                this.sbtnOk.Text    = "盘点(F6)";
                break;
            }
        }
예제 #4
0
 public frmSaleCheck()
 {
     InitializeComponent();
     clog = new CMSM.log.CMSMLog(Application.StartupPath + "\\log\\");
 }