Standard Numeric Format Strings for positive value: D8
Module Example Sub Main() Dim value As Integer value = 12345 Console.WriteLine(value.ToString("D8")) End Sub End Module