public MasterMouldCode()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvMouldCode, true);

            this.LoadData("");
        }
Пример #2
0
        public ReportCollection()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvCollection, true);

            this.LoadData("");
        }
        public InstockView()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvInstock, true);

            Application.Idle += new EventHandler(Application_Idle);
        }
Пример #4
0
        public FaView()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvFa, true);

            this.LoadData("");
        }
Пример #5
0
        public MasterOem()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvOem, true);

            this.LoadData("");
        }
Пример #6
0
        public EducationAnswers()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvQuestion, true);

            this.LoadData();
        }
Пример #7
0
        public DisposalHistory()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvHistory, true);

            this.LoadData("");
        }
Пример #8
0
        public EducationReport()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvRecord, true);

            this.LoadData("");
        }
Пример #9
0
        public PoView()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvIssuePO, true);

            this.LoadData("");
        }
        public DisposalView()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvDisposal, true);

            Application.Idle += new EventHandler(Application_Idle);
        }
Пример #11
0
        public MasterVendor()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvVendor, true);

            this.LoadData("");
        }
        public DisposalProcessing()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvDisposal, true);

            this.LoadData();
        }
Пример #13
0
        public ReportModify()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvModifyRecord, true);

            this.LoadData("");
        }
Пример #14
0
        public TransferView()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvPreview, true);
            BufferUtil.DoubleBuffered(dgvSearch, true);

            Application.Idle += new EventHandler(Application_Idle);
        }
        public FaAssetClass2()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvInput, true);

            this.LoadData(tstxtSearch.Text, tstxtAssetClass.Text);

            Application.Idle += new EventHandler(Application_Idle);
        }
Пример #16
0
        public FaReview()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvReviewer, true);

            this.LoadData("", "");

            Application.Idle += new EventHandler(Application_Idle);
        }
        public ucDisposalView()
        {
            InitializeComponent();

            cbSearch.SelectedIndex = 0;

            BufferUtil.DoubleBuffered(dgvDisposalDetail, true);

            Application.Idle += new EventHandler(Application_Idle);
        }
Пример #18
0
        public FaOverview()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvOverview, true);

            this.LoadData(tstxtSearch.Text);

            Application.Idle += new EventHandler(Application_Idle);
        }
Пример #19
0
        public FaDataCheck()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvDataCheck, true);

            this.LoadData("");

            Application.Idle += new EventHandler(Application_Idle);
        }
Пример #20
0
        public ucTestFa()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvFa, true);

            LoadData("");

            Application.Idle += new EventHandler(Application_Idle);

            cbSearch.SelectedIndex = 0;
        }
Пример #21
0
        public DiscIdle()
        {
            InitializeComponent();

            _table = new DataTable();

            BufferUtil.DoubleBuffered(dgvTotal, true);

            LoadIdle("");

            Application.Idle += new EventHandler(Application_Idle);
        }
Пример #22
0
        public OutsideShareForm(List <string> pathList)
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvUser, true);

            _pathList = pathList;

            InitializeComboBox();

            dgvUser.Rows.Clear();

            foreach (ContactList item in GlobalService.ContactList)
            {
                dgvUser.Rows.Add("False", item.Staff, item.Company, item.Email);
            }
        }
Пример #23
0
        public FormOverview()
        {
            InitializeComponent();

            BufferUtil.DoubleBuffered(dgvOverview, true);

            DataGridViewComboBoxColumn col = (DataGridViewComboBoxColumn)dgvOverview.Columns[12];

            if (col.Items.Count == 0)
            {
                col.Items.Add("---");
                col.Items.Add(UserUtil.ItUserName1());
                col.Items.Add(UserUtil.ItUserName2());
                col.Items.Add(UserUtil.ItUserName3());
                col.Items.Add(UserUtil.ItUserName5());
            }

            LoadData("");
        }