Questions tagged [bank]

169 questions
0
votes
1 answer

How can i do paypal payment direct transfer to merchant account

How can i do recurring payment with credit card in paypal. Payment should directly transfer to merchant bank account. Can anyone give solution for that?
kalpak savaliya
  • 88
  • 2
  • 11
0
votes
2 answers

Showing amount with currency

what is the best way to show currency with amount in financial applications ?? like, USD 20.00 || Rs. 100.00 || EUR 50.00 or 20.00 USD || 10.00 Rs. || EUR 50.00 or USD - 20.00 || Rs. - 10.00 || EUR - 50.00 or something else ??? Thanks
Sajjad
  • 23
  • 1
  • 3
0
votes
7 answers

How do I get bank information using ifsc code or swift code..?

I have only IFSC/swift code using that IFSC/swift code I want to get bank information like bank name, branch , address...etc Anyone have idea first it is possible to get bank information from only IFSC/swift code. If yes possible than that type of…
Codebrekers
  • 754
  • 1
  • 11
  • 29
0
votes
4 answers

bank program not working as expected

I know that it is not a debugger site but I just wanted to ask what I am doing wrong in this piece of code. When I run the program I first add a new account, then when I deposit or withdraw it says Wrong Password. Here is my code Code : import…
user6144222
0
votes
0 answers

automate bank transfers by php curl

i was trying this week to automate all bank transfers i do, by using php curl and giving to the server a list of IBAN so it can add IBAN directly than do a transfer amount defined in the same list to each IBAN respectively. As for now, i can log in…
zoumou
  • 1
0
votes
1 answer

C++ Banking application not holding more than one account

Hello I've been working on a C++ banking application that should be able to hold more than one account with all the related field's. I have come across a few issues: When displaying account info in Display or ShowInfo functions, the first letter…
0
votes
1 answer

C# Why wouldn't it display the values I set in the List?

Hi I really need help on this inheritance project. I need my form to display all the data in each label when the user selected a value in the combobox. I got all the data declared in the list but I dont know why the label still shows ZEROs when I…
tapsilog
  • 13
  • 1
  • 5
0
votes
2 answers

addInterest() not recognised

I am trying to create a bank account and my addInterest() function is not working. It seems like it doesn't recognize my function. It doesn't add the interest onto balance like it should. I think the calculation doesn't happen at all. I have tried…
Leo
  • 11
  • 1
  • 2
  • 5
0
votes
2 answers

Java ArrayList Bank Account

So I am creating a bank account program that uses an ArrayList. The program displays a menu where a customer can deposit, withdraw, display account info and check balance. The array list stores the customer object and should be able to be updated if…
Jess Anastasio
  • 687
  • 5
  • 18
  • 26
0
votes
1 answer

Bank angle from up vector and look at vector?

I can't figure out the formula to compute the bank (roll) angle from the up and lookat vectors, though I feel this angle must be measured in tha plan normal to the lookat vector. Any hint appreciated. FYI I use WPF. I have posted another question…
742
  • 3,009
  • 3
  • 23
  • 18
0
votes
3 answers

How to format a UK bank sort code?

As part of a form I collect a users bank details which includes their sort code. The sort code is stored in the database as six numbers, for example 771731. I'd prefer to store the sort code in this format (without the hyphens) as it makes it easier…
Michael LB
  • 2,715
  • 4
  • 23
  • 38
0
votes
2 answers

iphone development bank payment

I have been hired to develop an iphone app. My customer is non-technical and wants me to take care of everything. So, I want to develop and manage the app within my existing account, but have his bank information so he gets paid automatically. But…
0
votes
1 answer

how can I set one of the user imputed answers to be the one the action is applied to?

okay sorry if this is a really dumb question (im really new to java) but how do I set weather the user imputed savings or checking to to one of the if else statements. ex if I wanted to deposit 500 to checking or savings and I input savings but…
0
votes
2 answers

Deposits in my Bank Account Program

public void deposit(double amount) { balance += amount; } This is what I'm calling in another class. I want to be able to deposit 100$ into this account. Account acct1; acct1 = new Account(500, "Joe", 1112); What would I need to do in order to…
Matt Farstad
  • 47
  • 2
  • 3
0
votes
2 answers

Arrays and bank accounts in Java

I am trying to write a simple Bank Account Management program that does the following: Creates a new account with Account number and Balance taken from user and stored in an array Selects an account (from the array) Deletes the account…
Azdamus
  • 53
  • 1
  • 1
  • 9