Display positive value using the en-GB culture.
Imports System.Globalization Module Example Public Sub Main() Dim value As Single value = 123456.125E21 Console.WriteLine(value.ToString(CultureInfo.CreateSpecificCulture("en-GB"))) End Sub End Module