In visual basic 2010 my default is dollar sign "$". How can I change the default currency of mine country which is Malaysia with a sign of "RM". Thanks in advance.
*EDIT
Basically when I entered these code, it doesn't work. Can I know why?
Private Sub Button1_Click ......
Dim a As Integer = 400
Dim ri As System.Globalization.RegionInfo = New System.Globalization.RegionInfo(New CultureInfo("ms-MY").LCID)
Console.WriteLine(ri.CurrencySymbol)
MsgBox(a.ToString("C"))
End Sub