Hi guys!
Let's say I have this:
It gives error , ofcourse, in the bold line. How to overcome this? I know, removing the quotes will ease all the pain but assume that once I built the formula like this and trying to make Double accept the formula.
Thanks a lot!
Let's say I have this:
Code:
Private Sub Command1_Click()
Dim a As String
Dim b(2) As Double
b(0) = Me.Text1.Text
b(1) = Me.Text2.Text
a = "b(0) + b(1)"
b(2) = a
Me.Text3.Text = b(2)
End Sub
Thanks a lot!