How to fix this:
Code:Label1.Caption = CDbl(3 / 180)
'result is 1.66666666666667E-02
'how do i make it to be 0.01666666666666667
'without the scientific notation E
Printable View
How to fix this:
Code:Label1.Caption = CDbl(3 / 180)
'result is 1.66666666666667E-02
'how do i make it to be 0.01666666666666667
'without the scientific notation E
Label1.Caption = Format(CDbl(3 / 180), "0.##################")
D
Label1.Caption = Cdec(3 / 180)