Possible Duplicate:
Visual Studio VB pretty listing settings
Each time I write:
Dim foo As Double = 1E-9
Visual Studio / Visual Basic rewrites the line to read
Dim foo As Double = 0.000000001
How do I go about preventing Visual Studio / Visual Basics's auto-formatting to so that I may store these numbers in scientific notation?
PS: Visual Studio / Visual Basic doesn't convert to fixed notation when the exponent is either greater than 14 or less than -16.
Please note that this question has NOTHING to do with how this number is displayed to users of the compiled application but instead the visual representation within the source code.