Private Sub Dt_Descarga_Dirty(Cancel As Integer)
If IsNull(Cliente_Contratante) = True Then
'Menssagem
MsgBox "O Contratante:" & vbCrLf & "É de Preenchimento Obrigatório", vbOKOnly + vbExclamation, "Atenção!"
Me.BtPesquisar.SetFocus
Else
Me.Dt_Descarga.SetFocus
ElseIf IsNull(Dt_Carregamento) = True Then
MsgBox "Informe: A data do Carregamento", vbOKOnly + vbExclamation, "Atenção!"
Me.Dt_Carregamento.SetFocus
Else
Me.Qt_Carregamento.SetFocus
End If
End Sub
onde estou errando
If IsNull(Cliente_Contratante) = True Then
'Menssagem
MsgBox "O Contratante:" & vbCrLf & "É de Preenchimento Obrigatório", vbOKOnly + vbExclamation, "Atenção!"
Me.BtPesquisar.SetFocus
Else
Me.Dt_Descarga.SetFocus
ElseIf IsNull(Dt_Carregamento) = True Then
MsgBox "Informe: A data do Carregamento", vbOKOnly + vbExclamation, "Atenção!"
Me.Dt_Carregamento.SetFocus
Else
Me.Qt_Carregamento.SetFocus
End If
End Sub
onde estou errando