Ejemplo n.º 1
0
        public Audit_Form(bool bShowMethod,
                          bool bShowErrorOnMessageBox,
                          int iAuditLinesLimit,
                          List <string> lsModule)
        {
            m_Audit = new ctlAudit(bShowMethod,
                                   bShowErrorOnMessageBox,
                                   iAuditLinesLimit,
                                   lsModule);

            Form frmMain = new Form();

            frmMain.Size = new System.Drawing.Size(1000, 600);
            frmMain.Controls.Add(m_Audit);
            frmMain.Show();
        }
Ejemplo n.º 2
0
 public Client2Audit(ctlAudit theAudit)
 {
     m_Audit = theAudit;
 }