private void btnStatistic_Click(object sender, EventArgs e)
        {
            FrmStatistic frmStatistic = new FrmStatistic(usernameLogin);

            frmStatistic.Show();
            this.Close();
        }
        private void btnThongKe_Click(object sender, EventArgs e)
        {
            FrmStatistic frm = new FrmStatistic();

            frm.Show();
            this.Close();
        }