Currency

what is the code for a currency converter in visual basic?

the user must input the exchange rate per dollar and the amount that will be converted ?

Public Comments

  1. To convert a double to currency for printing you'll want String.Format Dim d as double = 1.5 Dim s as string s = String.Format("{0:C}", d) At that point, s will = "$1.50"
Powered by Yahoo! Answers