DUVIDA SIMPLES PRA VCS
Private Sub Command1_Click()
Dim a As Integer
Dim b As Integer
a = txt1.Text
b = txt2.Text
If a And b = [Ô][Ô] Then
MsgBox [Ô]Preencha os campos[Ô] <<<<<<<<<<<< como verificar se capos estão vazios, so isso
Exit Sub
End If
Label1.Caption = a - b
End Sub
Dim a As Integer
Dim b As Integer
a = txt1.Text
b = txt2.Text
If a And b = [Ô][Ô] Then
MsgBox [Ô]Preencha os campos[Ô] <<<<<<<<<<<< como verificar se capos estão vazios, so isso
Exit Sub
End If
Label1.Caption = a - b
End Sub
Você pode utilizar assim:
If a And b = [Ô][Ô] = True Then
MsgBox([Ô]Preencha os campos[Ô])
Else
Coloque aqui o código para executar
End If
If a And b = [Ô][Ô] = True Then
MsgBox([Ô]Preencha os campos[Ô])
Else
Coloque aqui o código para executar
End If
Private Sub Command1_Click()
If Trim(txt1.text)=[Ô][Ô] Or Trim(txt2.Text)=[Ô][Ô] Then
MsgBox [Ô]Preencha os campos[Ô]
Exit Sub
End If
Label1.Caption = Val(txt1.Text) - Val(txt2.Text)
End Sub
If Trim(txt1.text)=[Ô][Ô] Or Trim(txt2.Text)=[Ô][Ô] Then
MsgBox [Ô]Preencha os campos[Ô]
Exit Sub
End If
Label1.Caption = Val(txt1.Text) - Val(txt2.Text)
End Sub
Tópico encerrado , respostas não são mais permitidas