bledileka
Programmer
- Nov 15, 2006
- 16
Hello everyone !
Im tryin to use a formula wich is loaded from a simple file to a Label named "formula".
Formula type is like : (2 * x) + (2 * y).
In the same form i have puted 2 text boxes. One named x and the other named y. When i press the button Calculate i want to have the result using this formula.
Private Sub Calculate_Click()
result = formula
End Sub
rsult is a Label too.
The result gives me only the formula in string format the way it is without making the calculations.
Can anybody help me on this ???
Im tryin to use a formula wich is loaded from a simple file to a Label named "formula".
Formula type is like : (2 * x) + (2 * y).
In the same form i have puted 2 text boxes. One named x and the other named y. When i press the button Calculate i want to have the result using this formula.
Private Sub Calculate_Click()
result = formula
End Sub
rsult is a Label too.
The result gives me only the formula in string format the way it is without making the calculations.
Can anybody help me on this ???