Currency is a medium of exchange of value, usually referring to government issued denominations.

learn more… | top users | synonyms

-1
votes
0answers
5 views

facebook payment regulations with bitcoins [closed]

I found a program or site that allows you to send bitcoins to fb accounts from your mobile or email account but does fb have any rules about creating apps that use bitcoins as a form of currency for ...
0
votes
1answer
41 views

Regex preg_match price php

I created an regex and use preg_match in php preg_match_all('/(?<=|^)(?:[0-9]{1,3}(?:,| ?[0-9]{3})*(?:.[0-9]*)?|[0-9]{1,3}(?:\.?[0-9]{3})*(?:,[0-9]‌​*)?)(?:\ ...
0
votes
0answers
13 views

DataBinder.Eval not formatting a Container.DataItem value

What seems to be a simple process is not working. I just want to format a price value coming from a datasource to display in a currency format. In my page load I perform the following: Dim dt ...
-2
votes
1answer
20 views

Introducing automatic currency conversion into web templates [duplicate]

On my site I give prices in US dollar and pound sterling. I did myself the conversion using online tools then I wrote the results into my web template. Is there an easy way to have this calculation ...
1
vote
1answer
29 views

Currency Conversion Logic for multiple rows

I have a question regarding the currency conversion logic. Currently, we return a result set which has got many currency fields. Now, the requirement says that the users should have an option to ...
0
votes
1answer
14 views

Pulling currency values from other websites [closed]

I would like to pull values of specific currencies from websites which update them regularly. Because I need to convert only euro to few foreign currencies. Is that possible or should I create my own ...
0
votes
1answer
37 views

Using a new cultureinfo currency in Visual Studio 2010 C#

Thanks for answering my previous question, but I have a new one: I am writing a program that output monetary values/data, I want to know how to make my program format my value in other currency not ...
0
votes
1answer
62 views

Change symbols of currency fields upon changing Currency on the Form in CRM 2011

Some of you might have faced this issue in Microsoft Dynamics CRM 2011 but today when i was assigned the task to change the Currency lookup value dynamically to match the account currency in case of ...
0
votes
1answer
27 views

Appling google currency converter to all prices on a page

what I am trying to do is convert all prices on a page with jquery, ajax and google currency. I found this, it's working fine. $('#submit').click(function(){ //Get the values var amount = ...
0
votes
1answer
29 views

jQuery currency spinner - “normalization”

I want to use the jQuery spinner for a currency value (i.e. money), the value of which might be in dollars, euros, or anything supported by the spinner. The data should then be saved into a mysql ...
0
votes
1answer
70 views

PHP Datatable currency sorting

I got problem with my data table sorting in the currency tab. when i try to sort the currency/price column.. Ex A - $ 10,0000 B - $ 4,000 C - $ 8,000 In Chrome: it works fine it displays the ...
-3
votes
1answer
64 views

How do I convert GBP to EUR? [closed]

I have a text box containing my balance and another text box I want to show the balance in euros. When I click the convert button I want it to be able to convert sterling to euro. So how do I get my ...
1
vote
5answers
118 views

Java Currency Converter GUI

I'm trying to make a simple java currency converter GUI. So far I have this :(4 parts) How would I set the values for each item in the jcombbox (ex. each currency) so that I can use them to ...
1
vote
1answer
40 views

How can i create a remote latch in java?

At the moment I have a server that: 1) Launches 100 servlet requests using an executor on localhost 2) Executes the servlet requests. 3) Decrements a latch counting the total amount of completed ...
4
votes
1answer
61 views

Currency/monetary values — How to store in a DB & transfer using JSON?

What are the best practices for storing currency/monetary values in the DB, processing them in a server-side app, and finally sending them down to the browser via a JSON API? I've figured two ...
0
votes
1answer
35 views

Problems passing currency to 2Checkout

I have a Magento 1.7 store with USD base currency. I display prices in KWD. When a customer shops in KWD, the checkout page shows all items' KWD value, a total in KWD and then another line with the ...
0
votes
0answers
58 views

Magento Checkout Conversion Back to Base Currency not Working

After installing a magento connect theme I am having an issue on checkout whereby; whichever total is being displayed in a converted currency (not base), is not being converted back into base on final ...
0
votes
0answers
31 views

Multiple currencies in Rails

I want to be able to support multiple (3 for now) currencies on my website. I am a beginner and have doubts on how to do this . I have searched a bit and I have a list of questions. Following are my ...
1
vote
2answers
54 views

PHP JSON Format Currency Comma

I'm new to PHP. My code reads a price value from a Steam game's json data. http://store.steampowered.com/api/appdetails/?appids=8870 Problem is that the value of the price node is not formatted ...
0
votes
1answer
70 views

PayPal transactions in Russian Ruble

I'm using embedded payments on my website, payment transactions are initiated directly from buyers to sellers and the service acts as an API caller. The price for goods is set in USD by sellers to ...
2
votes
2answers
102 views

Regex currency validation

I need Help for currency regex in jQuery function. It optionally allows "$" sign only one time in beginning. It allows comma as digital-group-separator, but not in the beginning or the end. It ...
0
votes
1answer
54 views

jquery formatCurrency symbol position

I'm using the jQuery formatCurrency plugin (https://code.google.com/p/jquery-formatcurrency/) to, well, format currency. However, I don't see anything in the docs about the position of the symbol. ...
0
votes
1answer
36 views

In App Purchase currency update

I'm having a problem. When I put up an in app purchase item (lets call it item_x) I set the USD price at 1.99 Now my major problem is that since I sell in several countries (those that have iap ...
0
votes
0answers
34 views

Drupal Currency Api Conversion

I want to convert a price field of a node in another currency. I've created a block where I made a form to select a currency and save the result to session. In the node I've created 3 fields: 1) ...
0
votes
1answer
66 views

Android currency converter using webserviceX returns null

we are trying to make a currency converter using web service at http://www.webserviceX.NET/CurrencyConvertor.asmx We have searched everywhere for an answer to our problem, but even solutions to the ...
0
votes
3answers
48 views

How to covert a string from report table in c# to Vietnamese currency?

I have a c# report that contains one String column represent the currency. Now I try to convert the String value to currency: = FormatCurrency(Fields!SOTIEN_GUI.Value, 0) That works, but the value ...
0
votes
2answers
54 views

Displaying currency symbol in twig

How can I display the currency symbol in twig? I saved the numeric value of the symbol like: for EURO : &#8364; for DOLLAR: &#36; When I render these values, & is converted to &amp; ...
0
votes
2answers
27 views

BigDecimal with minimal 2 fraction digits

I saw Using BigDecimal to work with currencies but I have a little different problem. I give object with BigDecimal parameters to PDF generation library and I can't use Formatter, only send objects. ...
0
votes
0answers
55 views

Opencart Iinvoice Currency

Hi there I'm facing a problem with Opencart 1.5.5.1 . The currencies I've set are working good with the checkout process I don't want it to be changed. After I get the order and I'm going to print ...
0
votes
2answers
55 views

How to perform MySQL 'SUM' but to '0' decimal places?

I have a MySQL table containing account balances, which are stored as floats, with two decimal places, in a varbinary column type (because the values are AES_ENCRYPTED). I realise that it's not ideal ...
0
votes
1answer
65 views

How to set two decimal places in output [closed]

I'm trying to get Python to round up the output of a simple Tip Calculator program to two decimal places, but I've had no joy figuring it out so far. Below is the relevant section of code. I want the ...
1
vote
1answer
98 views

Pound and Euro symbol not shown in windows form instead showing a J

We wrote a program that behaves differently on two equal machines. On one machine is shows the price with a pound symbol. We set the symbol based upon a list e.g. { "£", "€", "€" }; Both machines ...
-2
votes
1answer
36 views

Sum currency with Javascript

I'm trying to sum currency in Javascript. I want that the sum be displayed and updated on any changes in the fields. But the most I could get was to present the results via a button. Here is the ...
0
votes
1answer
27 views

How to keep different currency for display purpose and transaction purpose in Magento?

I need to display store currency in pound. but for payment gateway authorize.net, I need to do online transaction in dollar. So We decided to set display currency pound and base currency dollar. I ...
0
votes
0answers
48 views

Angular Currency Filter - Symbol  added

I'm using angular's currency filter and it seems to be outputting an extra symbol: Â. The html: {{totals.subtotal | currency}} {{totals.tax | currency}} {{totals.total | currency}} The object ...
0
votes
2answers
64 views

Does Authorize.net support different currency types?

I have found a post referencing a field for Authorize.net called "x_currency_type", however the Authorize.net API documentation does not reference anything about currency type. I also found a post ...
0
votes
0answers
17 views

Magento : Chagne in Currency and stores may caused errors

I have just installed a fresh Magento 1.7.0.0 . After that I have changed the base currency from “US Dollar” to “Euro”. My website consist of only default stores. My problem is when I tried to ...
1
vote
1answer
63 views

Convert user entered value to dollar currency

I have a scenario where a user enters a value in as a string and I need to convert it to a dollar currency and show it on the form. I have tried with the below approach. protected void ...
0
votes
2answers
38 views

merge the sum of 3 columns into another column in php mysql

I want to merge the sum of 3 columns (price_crore,price_lakh,price_thousand) in mysql table into another column called 'amount'. For example price_crore,price_lakh,price_thousand for which values ...
1
vote
1answer
69 views

Formatting a given currency for various locales in java? (Rounding issue)

I am trying to format a currency based on the accept-language header, but I'm having a little trouble. An English-US user will understand € 10,000,000.15 but not the suitable-for-Germany ...
0
votes
1answer
45 views

Activity crashing while JsonParsing

i'm trying to make an app on unit converter. all the other implementations i have done but i'm not able to fetch real time values for currency. I found a way of "JSON parsing". I searched for it and ...
1
vote
4answers
70 views

Culture info names

I am changing the application culture based on the selected currency. eg. _culture = new CultureInfo("en-US"); _culture = new CultureInfo("fr-FR"); Is there any place where I can get all the ...
0
votes
1answer
64 views

How to get all Cultures to avoid CultureNotFoundException

Guys I'm developing an application that will run across multiple machines. I've recently introduced Cultures in it to support all currencies. I have 2 main development PCs and I move code between ...
0
votes
1answer
99 views

Magento: Edit “Your credit card will be charged for” on onepage checkout to show desired currency

I think the picture is explaining the problem. I did a research and I simply have not enough time to create another 4 stores and set over 200 articles again and again. I would agree on removing the ...
0
votes
2answers
47 views

NSString: Validate it is in US currency format

Is there a quick way to validate if an NSString is formatted as US currency? So what I am looking to confirm is that character 0 is a $, the following characters are numeric except for ...
0
votes
0answers
17 views

Any way to get Culture from 3-letter Currency Code? [duplicate]

Is there any quick way of deriving the Culture for a given 3-digit Currency code ? For example, I want to get the Culture which has USD as its 3-Digit Currency Code .. ? Note that I only provided USD ...
0
votes
1answer
33 views

How to do currency-based number validation?

I have a Winforms Application, in which I have a Combo Box, and a text box. Combo box has Currency symbols as follows: USD GBP CAD AUD JPY EUR ISK PLZ TRL etc .. The user first selects one ...
1
vote
1answer
105 views

Minimum order amount in Opencart

I use Opencart 1.5.5.1 and I have a problem. I want in my store minimun order amount. But I am using two currencies (EUR & RON). Well, the scripts that I've added works great, but when I switch ...
0
votes
1answer
57 views

Any way to get Currency Names List and map them to Currency Symbols?

I have C# code which can generate a list like this, using Cultures (link): AUD $ CAD $ EUR € GBP £ JPY ¥ USD $ What I want is a list like this too: Australian Dollar Canadian Dollar Euro ...
0
votes
1answer
100 views

Format currency dinamically on TextView

I'm trying to dynamically format the value entered by the user on a TextView, specifically what I am trying to do is: TextView text = "" User entered = "4" TextView text = 0.04 User entered = "5" ...

1 2 3 4 5 17