Exemplo n.º 1
0
        public ucTABLobby(UserEntity pUserEntity, frmTABMain main)
        {
            _pUserEntity = pUserEntity;

            this._pfrmTABMain = main;

            InitializeComponent();

            _pWINDOW_NAME = this.Name.ToString();
        }
Exemplo n.º 2
0
        public ucTABSearch(UserEntity pUserEntity, frmTABMain main)
        {
            InitializeComponent();

            this._pfrmTABMain = main;

            _pUserEntity = pUserEntity;

            this._pfrmTABMain._lmSELECT.Click += new EventHandler(Form_SearchButtonClicked);

            Load += new EventHandler(Form_Load);
        }
Exemplo n.º 3
0
        public ucTABExcel(UserEntity pUserEntity, frmTABMain main)
        {
            InitializeComponent();

            this._pfrmTABMain = main;

            _pUserEntity = pUserEntity;

            this._pfrmTABMain._lmIMPORT.Click += new EventHandler(_ucbtEXCEL_IMPORT_Click);
            this._pfrmTABMain._lmEXPORT.Click += new EventHandler(_ucbtEXCEL_EXPORT_Click);

            Load += new EventHandler(Form_Load);
        }
Exemplo n.º 4
0
        public ucTABRegister(UserEntity pUserEntity, frmTABMain main)
        {
            InitializeComponent();

            this._pfrmTABMain = main;

            _pUserEntity = pUserEntity;

            this._pfrmTABMain._lmSAVE.Click += new EventHandler(Form_SaveButtonClicked);
            //this._pfrmTABMain._lmIMPORT.Click += new EventHandler(_ucbtEXCEL_IMPORT_Click);

            Load += new EventHandler(Form_Load);
        }