Exemplo n.º 1
0
        public dlgGetCoor(CoorType inCoorType)
        {
            InitializeComponent();

            this.mCoorType = inCoorType;
            this.pmInitForm();
        }
Exemplo n.º 2
0
        public frmCrGrp(CoorType inCoorType, FormActiveMode inMode)
        {
            InitializeComponent();

            this.mCoorType       = inCoorType;
            this.mFormActiveMode = inMode;
            this.pmInitForm();
        }
Exemplo n.º 3
0
 public static frmCrGrp GetInstanse(CoorType inCoorType)
 {
     if (mInstanse == null)
     {
         mInstanse = new frmCrGrp(inCoorType);
     }
     return(mInstanse);
 }
Exemplo n.º 4
0
 public QMasterCrGrp(CoorType inCoorType, string inConnectionString, DBMSType inDataBaseReside)
 {
     this.mCoorType = inCoorType;
     if (this.mCoorType == CoorType.Customer)
     {
         this.mstrCoorType = "C";
     }
     else
     {
         this.mstrCoorType = "S";
     }
     this.mstrConnectionString = inConnectionString;
     this.mDataBaseReside      = inDataBaseReside;
     this.pmInitComponent();
 }
Exemplo n.º 5
0
 public frmCrGrp(CoorType inCoorType)
 {
     this.mCoorType = inCoorType;
     InitializeComponent();
     this.pmInitForm();
 }