khowell78737
Programmer
would i store a currency value as a decimal, single or double?
thanks!
Kevin
thanks!
Kevin
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Imports System.Globalization
Dim decNum As New Decimal(345, 0, 0, False, 2)
Dim cc As New CultureInfo("en-US")
Console.WriteLine(decNum.ToString("C", cc.NumberFormat))