private void bntThanhToan_Click(object sender, EventArgs e) { frmPay a = new frmPay(); a.ShowDialog(); this.Refresh(); }
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; } }