Culture settings....

G

Guest

Hi all,

I am using a free currency exchangerate webservice to update figures on my
web page. The code is fairly simple and works well for UK, and US Dollars -
but for some reason I cannot get the EURO symbol to work.

I read on microsoft site that using the optional "False" in:
Thread.CurrentThread.CurrentCulture = New CultureInfo("de-DE", False)

Surpresses the country's symbol and displays a euro one, but it does not
work. Instead it displays the number unformatted with a ? (question mark)
after the figure. Anyone know how i can get the euro symbol to work?

Dim CurrencySelector = DDL_Ex.SelectedItem.Text
Dim ExchangeRate = DDL_Ex.SelectedItem.Value

Select Case CurrencySelector
Case "GB Pound"
Thread.CurrentThread.CurrentCulture = New CultureInfo("en-GB")
_dr(dr("media").ToString + "_ACE") = (dr("ACE Value") /
1000000)
_dr(dr("media").ToString + "_PR") = (dr("PR Value") / 1000000)

Case "US Dollar"
Thread.CurrentThread.CurrentCulture = New CultureInfo("en-US")
_dr(dr("media").ToString + "_ACE") = ((dr("ACE Value") *
ExchangeRate) / 1000000)
_dr(dr("media").ToString + "_PR") = ((dr("PR Value") *
ExchangeRate) / 1000000)

Case "Euro"
Thread.CurrentThread.CurrentCulture = New CultureInfo("fr-FR",
False)
_dr(dr("media").ToString + "_ACE") = ((dr("ACE Value") *
ExchangeRate) / 1000000)
_dr(dr("media").ToString + "_PR") = ((dr("PR Value") *
ExchangeRate) / 1000000)
End Select

Thanks,

KS
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top