Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
I want a app to convert Value to to another country value and store it in db
Posted
Comments
Suvendu Shekhar Giri 24-Jun-15 6:46am    
What kind of value? Price/Datetime/what ?
Member 11491784 24-Jun-15 6:49am    
Price . Thanks
Suvendu Shekhar Giri 24-Jun-15 6:51am    
Ok. It was my mistake. You have already mentioned phrase "currency converter" in your question.
[no name] 24-Jun-15 7:28am    
Okay so go look for one or write one yourself.

1 solution

Hi,

Here are the steps,
1. Use any web service that gets the real time currency conversion between multiple currencies
2. use vb.net to connect the web service and get the value in a string
3. Create a database and table with all required fields
4. Use ADO.NET to pass the string and save the data to sql server table

There are several paid and free web service for currency converter.
I like the free one
http://download.finance.yahoo.com/d/quotes.csv?s=USDINR=X&f=sl1d1t1ba&e=.csv[^]

Note the query string parameter "s"
s = USDINR - means USD to INR
GBPUSD means Great Britain Poind to USD
EURGBP means EUR to GBP

The webservice will generate a csv file. You can google to find out how to capture csv and get the string in vb.net (pretty straight forward)

Saving string or csv to database tables - tons of e.gs you can find in cp

Hope this helps.
cheers
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900