#arontech.blogspot.blogspot.com
Ordenar por:
Categoría:

Como hacer una calculadora en Visual Basic 6.0
Hola este es mi primer Post en el que les traigo como hacer una Calculadora en Visual Basic 6.0 Codigos: Private Sub Command1_Click() Text3.Text = Val(Text1.Text) + Val(Text2.Text) End Sub Private Sub Command2_Click() Text3.Text = Val(Text1.Text) - Val(Text2.Text) End Sub Private Sub Command3_Cl…
5
2