Currency Conversion from Euro to other..
-
Hi All, I want to convert EURO currency to GBP,USD,CHF,SEK etc. Dosenot any one knows the formula should i use to convert each currency to EURO. I am getting current rate of each currency. Thanks Rahul
People Laugh on me Because i am Different but i Laugh on them Because they all are same.
-
Hi All, I want to convert EURO currency to GBP,USD,CHF,SEK etc. Dosenot any one knows the formula should i use to convert each currency to EURO. I am getting current rate of each currency. Thanks Rahul
People Laugh on me Because i am Different but i Laugh on them Because they all are same.
Currency rates are changing all the while - so you will need to communicate with a web service / site that provides updated currency rates. Once you have the correct rates, updating the currency should be easy.
The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it.
-
Hi All, I want to convert EURO currency to GBP,USD,CHF,SEK etc. Dosenot any one knows the formula should i use to convert each currency to EURO. I am getting current rate of each currency. Thanks Rahul
People Laugh on me Because i am Different but i Laugh on them Because they all are same.
http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml[^] Bam, simple parsing as well :D
-
http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml[^] Bam, simple parsing as well :D
Hi, I am getting the daily rates. I just want to know the formula to convert. Suppose i got amount 140 in GBP now i want to convert it into EURO so what will be the formula. Regards Rahul
People Laugh on me Because i am Different but i Laugh on them Because they all are same.
-
Currency rates are changing all the while - so you will need to communicate with a web service / site that provides updated currency rates. Once you have the correct rates, updating the currency should be easy.
The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it.
Hi Abhinav, I am getting all the current currency rates just need a formula to convert each curr inEURo. Will try and let u knkow? Thanks
People Laugh on me Because i am Different but i Laugh on them Because they all are same.
-
Hi, I am getting the daily rates. I just want to know the formula to convert. Suppose i got amount 140 in GBP now i want to convert it into EURO so what will be the formula. Regards Rahul
People Laugh on me Because i am Different but i Laugh on them Because they all are same.
Hi, you will need this formula: x (in Euro) = y (foreign currency) / z (current rate). For example for the 140 GBP with a rate of 1 € = 1.5 GBP the formula will be x = 140 / 1.5 = 93.33 (Euro) If you have the rate like 1 GBP = 0.67 Euro you need this formula: x (in Euro) = y (foreign currency) * z (current rate) Hope this helps. Regards Sebastian
It's not a bug, it's a feature! Check out my CodeProject article Permission-by-aspect. Me in Softwareland.
-
Hi All, I want to convert EURO currency to GBP,USD,CHF,SEK etc. Dosenot any one knows the formula should i use to convert each currency to EURO. I am getting current rate of each currency. Thanks Rahul
People Laugh on me Because i am Different but i Laugh on them Because they all are same.
the formula is: multiplication. It is similar as converting inches to millimeters, and much simpler than converting Fahrenheit to Celsius. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.