S
Stapes
Hi
I am running the following code:
Dim strsql As String
strsql = "UPDATE TM_Boat SET TM_Boat.FK_Customer = " & [Forms]!
[FM_ChangeBoatOwner]![Combo36] & _
" WHERE (((TM_Boat.PK_Boat)=" & [Forms]![FM_ChangeBoatOwner]!
[TXT_BoatNum] & "));"
Debug.Print strsql
CurrentDb.Execute strsql, dbFailOnError
MsgBox CurrentDb.RecordsAffected & " Records updated"
It keeps telling me "0 Records Updated", although it IS updating the
record!
Any idea why?
Stapes
I am running the following code:
Dim strsql As String
strsql = "UPDATE TM_Boat SET TM_Boat.FK_Customer = " & [Forms]!
[FM_ChangeBoatOwner]![Combo36] & _
" WHERE (((TM_Boat.PK_Boat)=" & [Forms]![FM_ChangeBoatOwner]!
[TXT_BoatNum] & "));"
Debug.Print strsql
CurrentDb.Execute strsql, dbFailOnError
MsgBox CurrentDb.RecordsAffected & " Records updated"
It keeps telling me "0 Records Updated", although it IS updating the
record!
Any idea why?
Stapes