I have an equation evaluator I need to make in Visual Basic.
For example, for the following equation the answer would be true.
(12 = 12) AND (12 > 1)
true and true
For both comparison operators I've created a combo box to insert <, >, =, <=, >=, <>.
My problem is, I don't know how to access the combo box to get the right operator to evaluate the equation. Can anyone help me?