Hi All,
I have one problem. I will be thankful for your help
I have one text box which accpts maximum 25 numeric digits and on lost event it is calculating and displaying the result in another text box
Private Sub Text1_LostFocus
Dim a as double
a=2
Text2.Text=Format(Text1.Text * Number2, "##############################")
End Sub
Now if I enter 999999999999999999999999999999 in text box and press tab key, it is showing 20000000000000000000000000 insted of 19999999999999999999999998.
Can anybody help me in this