In VB, how to enter a percentage in TEXT 1, an integer in TEXT2 and two multiplication operations with 2 decimal places in TEXT3 to display?
Add a button and three text boxes to the form, and then double-click the button. The code is as follows: text3.text = format ((val (text 1. text)/100) * val (text2.text), "0.00") Note that the percentages entered in text1cannot be added.