I have not made this look good yet, but it does work. Str4nger helped me do the updating of the rates from a website. I had been looking for something like this for ages before but there was not any that updated the currency rate, so I made one.
What about a converter that goes between 10 different currencies, being able to convert from any one of the 10 currencies to any of the remaining nine. I'm having trouble doing this, been trying an array but have been stumped for a while on how to get it done? Any ideas/help?
Right ok what you would want is two group boxes right both with the 10 currencys in as radio buttons.
Then you could click 1 currency in left group and then it should disappear from the right group and then you click currency you want to convert to.
What I would do is have two string variables:
eg
Dim first as string
dim second as string
Then when a radio button is clicked in the 1st group box the first string equals what currency it is so:
If you click US Dollars it will equal USD
and then you will do the same in the next group box
If you click Pounds second will equal GBP
So instead of having different procedures for converting to 1 currency you will only need the button click procedure, which will have the code like this: