You should use the Format keyword:
Code:
ListBox5.Add(Format(GPS.Altitude * 3.28084,"n2"))
GPS.Altitude is parsed from the GPS string.
You should check if it is not an empty string (there is no altitude value):
Code:
If GPS.Altitude <> "" Then
ListBox5.Add(Format(GPS.Altitude * 3.28084,"n2"))
End If
BTW, why don't you use a TextBox or a Label instead of the ListBoxes?