End

Anuncio
Private Sub CALCULAR_Click()
Dim nuemro1 As Double
Dim mumero2 As Double
If numero1 = 0 Then
Label10.Caption = "0"
End If
If Not IsNumeric(Text1.Text) Then
MsgBox ("POR FAVOR DATOS NUMERICOS EN TEXT1")
Text1.Text = ""
Text1.SetFocus
Exit Sub
End If
If Not IsNumeric(Text2.Text) Then
MsgBox ("POR FAVOR DATOS NUMERICOS EN TEXT2")
Text2.Text = ""
Text2.SetFocus
Exit Sub
End If
If numero1 < 0 Then
label12.Caption = "NO SE PUEDE"
Else
label12.Caption = Sqr(numero1)
End If
numero1 = CDbl(Text1.Text)
numero2 = CDbl(Text2.Text)
Label7.Caption = numero1 + numero2
Label8.Caption = numero1 - numero2
Label9.Caption = numero1 * numero2
If Text2.Text = 0 Then
Label10.Caption = "NO SE PUEDE"
Label11.Caption = ""
Else
Label10.Caption = Format(numero1 / numero2, "0")
Label11.Caption = numero1 Mod numero2
End If
If numero1 < 0 Then
label12.Caption = "NO SE PUEDE"
Else
label12.Caption = Sqr(numero1)
End If
If numero1 < 0 Then
label12.Caption = Format(Sqr(numero1 * -1), "0.00") + " i"
Else
label12.Caption = Format(Sqr(numero1), "0.00")
End If
If numero2 = 0 Then
Label14.Caption = 1
Else
Label14.Caption = numero1 ^ numero2
End If
End Sub
Documentos relacionados
Descargar