0
votes
2answers
65 views
Objective-C: How to format string as $ Price
Is their a built-in way of formatting string as $ price, e.g. 12345.45 converted to $12,345.45?
1
vote
1answer
39 views
String representation of small amounts of money
Formatting large amounts of money is not an issue (e.g. converting a decimal to dollars):
myDecimal.ToString("C", {some culture info});
However, my current problem is dealing wi …
0
votes
1answer
28 views
convert currency from xml + php
Hi friends,
I have an xml source for daily currency
http://www.tcmb.gov.tr/kurlar/today.xml
and i need to make a currency optional search for a portal. how can I get a specific …
2
votes
3answers
70 views
Handling international currency input in Ruby on Rails
I have an application that handles currency inputs. However, if you're in the US, you might enter a number as 12,345.67; in France, it might be 12.345,67.
Is there an easy way, in …
0
votes
2answers
67 views
python locale currency and negative numbers
Why?
C:\path\>manage.py shell
Python 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more i …
0
votes
3answers
79 views
Is there a PHP function to format a currency amount in accounting format?
I'm currently writing a report in PHP that occasionally has to display negative currency amounts. Said currency amounts are stored in the database like "-44.00". Ideally this numbe …
1
vote
4answers
454 views
java - BigDecimal
I was trying to make my own class for currencies using longs, but Apparently I should use BigDecimal (and then whenever I print it just add the $ sign before it). Could someone ple …
0
votes
1answer
31 views
Supporting limited number of currencies in Cocoa(Touch)
Early versions of our app will only support a limited number of currencies. If a user should try to use our app with an unsupported currencyCode then I'd like to set the currencyCo …
1
vote
3answers
79 views
Live FOREX data for PHP
I am building an application where I need live FOREX(currency data). I could take it from yahoo's page, by loading the html into PHP and the get then extract the data. But I do not …
3
votes
4answers
114 views
Can I get a text description of an ISO currency code in Java?
Is there a way to get a text description of the currency represented by a Currency object in Java?
i.e. I have AZM, I want Azerbaijan Manat
1
vote
2answers
483 views
Currency Mask with Jquery
I'm using the Jquery calculation and have just about everything working properly, but I need the total to display as 99.90, not 99.9 <-- Just an example. Here is a link the for …
0
votes
2answers
27 views
basic modification of default model output with scope
I find myself doing the same things over and over again just to make one small modification to standard model output. I have a series of tables that I store information about prod …
0
votes
2answers
340 views
c# Datagridview cell not accepting currency format change.
Hi, I am trying to change the format of a cell in a datagridview using the following code.
this.dataGridView[2, 1].ValueType = typeof(decimal);
this.dataGridView[2 …
3
votes
3answers
752 views
Currency exchange rates for paypal
Does anyone know a way to get the currency exchange rates for paypal?
We have custom shopping cart and use Paypal (Website Payments Standard) to handle payments.
Our 'home' curren …
18
votes
22answers
4k views
Use Float or Decimal for Accounting Application Dollar Amount?
We are rewriting our legacy Accounting System in VB.NET and SQL Server. We brought in a new team of .NET/ SQL Programmers to do the rewrite. Most of the system is already completed …
