' Collection of code snippets by Arne Vajhøj ' posted to eksperten.dk, usenet and other places (2002-now) Imports System Module Main Sub Main() Console.WriteLine(String.Format("{0:0.00}",123)) Console.WriteLine(String.Format("{0:0.00}",12.3)) Console.WriteLine(String.Format("{0:0.00}",1.23)) End Sub End Module