hello. I am trying to make a program that will write out Phi (golden ratio). here is the code that i use:

Code:
Private Sub Form_Load()
Text1.Text = .5*sqr(5) + .5
End Sub


I know the equation works out to be Phi, which as I under stand is a 216 digit number. however the number that comes out in text1.text is only the first 15 digits. is there any way to make it divide out the full amount???



-Steve



PS If I am incorect about any thing to do with Phi or the Golden Ratio, tell me.