'No Modulo
Global DB As DataBase
Global TCLI As Recordset
Sub ABRIR_BANCO()
Set DB = OpenDatabase (App.Path & "seu banco.mdb")
End Sub
Sub ABRIR_CLIENTE()
Set TCLI = DB.OpenRecordset ("Cliente") 'Referente a sua tabela
TCLI.Index = "PrimaryKey"
End Sub
'No Form
Sub CommandButton1_click()
ABRIR_CLIENTE
TCLI.SEEK " = ", txtCODCLI
If TCLI.NoMatch Then
TCLI.AddNew
TCLI("txtCODCLI") = txtCODCLI
TCLI.Update
Else
MsgBox "Registro já Cadastrado",16,"Atenção"
End If
End Sub
Espero ter ajudado!!!