Olá
Preciso inserir no código abaixo uma condição
- Caso NOMEPACIENTE esteja em banco, não inserir no ListBox89
Private Sub RG_AfterUpdate()
If MsgBox("Deseja Inserir na Consulta Geral?", vbQuestion + vbYesNo, "Operador(a) Aviso Importante !!! ") = vbYes Then
' DoCmd.GoToRecord , , acNext
Me.Lista89.Requery
CurrentDb.Execute "INSERT INTO tblCadPacientegeral(NomePaciente, n_pront, N_Prontmp, rg, cpf, cns, data_nasc ) VALUES ('" & Me!NomePaciente & "','" & Me!N_PRONT & "','" & Me!N_PRONTMP & "','" & Me!RG & "','" & Me!CPF & "','" & Me!CNS & "','" & Me!DATA_NASC & "')"
MsgBox "Resgistro Acrescentado"
End If
End Sub
Preciso inserir no código abaixo uma condição
- Caso NOMEPACIENTE esteja em banco, não inserir no ListBox89
Private Sub RG_AfterUpdate()
If MsgBox("Deseja Inserir na Consulta Geral?", vbQuestion + vbYesNo, "Operador(a) Aviso Importante !!! ") = vbYes Then
' DoCmd.GoToRecord , , acNext
Me.Lista89.Requery
CurrentDb.Execute "INSERT INTO tblCadPacientegeral(NomePaciente, n_pront, N_Prontmp, rg, cpf, cns, data_nasc ) VALUES ('" & Me!NomePaciente & "','" & Me!N_PRONT & "','" & Me!N_PRONTMP & "','" & Me!RG & "','" & Me!CPF & "','" & Me!CNS & "','" & Me!DATA_NASC & "')"
MsgBox "Resgistro Acrescentado"
End If
End Sub