コード例 #1
0
        public FBaoTri()
        {
            InitializeComponent();
            DBNhanVien bnv = new DBNhanVien();

            bnv.updateComboBoxTenOnly(cbNhanVien);
            DBQuyTrinhBT dqt = new DBQuyTrinhBT();

            dqt.updateComboBoxTenOnly(cbQuyTrinh);
            //timer interval
            t.Interval = 1000;  //in milliseconds

            t.Tick += new EventHandler(this.t_Tick);

            //start timer when form loads
            t.Start();  //this will use t_Tick() method
        }