Example #1
0
 public Form1(Dangnhap _f, string _user)
 {
     InitializeComponent();
     f             = _f;
     lbl_user.Text = _user; //lấy tên user từ bên khung đăng nhập
     listClient    = new List <ClientManager>();
     lstShowClient = new List <ShowClient>();
     bw.DoWork    += bw_DoWork; //hàm chính
     bw.RunWorkerAsync();       //bắt đầu thread
 }
Example #2
0
 public Form1(Dangnhap _f,string _user)
 {
     InitializeComponent();
      f = _f;
      lbl_user.Text = _user;//lấy tên user từ bên khung đăng nhập
     listClient=new List<ClientManager>();
     lstShowClient=new List<ShowClient>();
     bw.DoWork += bw_DoWork;//hàm chính
     bw.RunWorkerAsync();//bắt đầu thread
 }