
FormatSize – Format a size expressed in bytes
‘ Returns a formatted string that shows the size in Bytes, KBytes or MBytes’ according to the size’ Usage:’ Dim ProperSizeString As String = FormatSize(“132100842”)’ -> returns “125.98 MB”Function FormatSize(ByVal SizeInBytes As Double) As String If SizeInBytes < 1024 Then Return String.Format("{0:N0} B", SizeInBytes) ElseIf SizeInBytes < 1024 * 1024