private bool checkInput()
        {
            resetError();
            bool check = true;

            if (!funcShare.checkPK(textbox_nv.Text, "nhan_vien"))
            {
                label_nv.Visible = true;
                e_nv.Visible     = true;
                check            = false;
            }
            if (!funcShare.checkPK(textbox_ncc.Text, "nha_cung_cap"))
            {
                label_ncc.Visible = true;
                e_ncc.Visible     = true;
                check             = false;
            }
            if (!funcShare.checkDate(textbox_ngay.Text, textbox_thang.Text, textbox_nam.Text))
            {
                label_date.Visible = true;
                e_date.Visible     = true;
                check = false;
            }
            if (gridView2.Rows.Count == 0)
            {
                label_last.Visible = true;
                check = false;
            }
            return(check);
        }