ricardofbarreiro
Registered User.
- Local time
- Today, 17:35
- Joined
- Jun 19, 2014
- Messages
- 17
Private Sub Form_AfterInsert()
Dim strSql$
MsgBox "Nova Peça Criada"
srtSQL = "INSERT INTO tblVerificacao (Verificação,ID_Peça) VALUES (""1"",'" & Me!TxtID_Peça & "')"
CurrentDb.Execute strSql
End Sub
Table not found, but this linked table from my backend is correct.
What is wrong?
Dim strSql$
MsgBox "Nova Peça Criada"
srtSQL = "INSERT INTO tblVerificacao (Verificação,ID_Peça) VALUES (""1"",'" & Me!TxtID_Peça & "')"
CurrentDb.Execute strSql
End Sub
Table not found, but this linked table from my backend is correct.
What is wrong?