Ejemplo n.º 1
0
        private void bntThanhToan_Click(object sender, EventArgs e)
        {
            frmPay a = new frmPay();

            a.ShowDialog();
            this.Refresh();
        }
Ejemplo n.º 2
0
 public static void IsVip(ref bool ok, string[] args)
 {
     if (args.Length > 0 && args[0].ToUpper() == "TRUE")
     {
         ok = true;
     }
     else if (args.Length > 1 && args[1].ToUpper() == "44909")
     {
         ok = true;
     }
     else
     {
         frmPay frm = new frmPay();
         frm.ShowDialog();
         ok = false;
     }
 }