I already made the calculator, but I'm trying to also put the function used in the textbox results. Example:
2 * 2 = The function used was multiplication. Your answer is 4
I used labels to identify -, +, *, /
Two textboxes to put in input.
1 textbox for ouput.
I used this sample code for my calculator :
lblnum1 = "+"
lblnum1 = val(txta.text) + val(txtb.text)
the output i want is:
2 * 2 = The function used was multiplication. Your answer is 4