This document describes a calculator interface created in Visual Basic. It defines variables to store numeric user input and calculation results. Buttons are coded to perform calculations like addition, subtraction, multiplication, division, powers, and square roots on the input values when clicked. A reset button clears the input and result fields.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
29 views
Calculadora en Interfaz de Visual Basic
This document describes a calculator interface created in Visual Basic. It defines variables to store numeric user input and calculation results. Buttons are coded to perform calculations like addition, subtraction, multiplication, division, powers, and square roots on the input values when clicked. A reset button clears the input and result fields.
Private Sub BTNuevo_Click(sender As Object, e As EventArgs) Handles
BTNuevo.Click txtDiv.Clear() txtMulti.Clear() txtNum1.Clear() txtNum2.Clear() txtPot.Clear() txtRaiz.Clear() txtResta.Clear() txtSuma.Clear() End Sub End Class