private void CallCashReciept()
        {
            this.Hide();
            frmCashReciept updatepin = new frmCashReciept();

            updatepin.ShowDialog();
            this.Close();
        }
        private void lblProceed_Click(object sender, EventArgs e)
        {
            SelectAcct.BankID = ddlBank.SelectedValue.ToString();
            if (ATMApp.frmCustomLogin.ClassValue.BankID != SelectAcct.BankID)
            {
                ATMApp.frmCustomLogin.ClassValue.OtherBankTransactionInd++;
            }
            this.Hide();
            frmCashReciept updatepin = new frmCashReciept();

            updatepin.ShowDialog();
            this.Close();
        }