B
Brian
With regard to the following code it doesn't update the
table:
strSQL = "Update AVAILABILITY " & _
"Set AVAILABILITY.[Booking ID] = varNewID " & _
"WHERE AVAILABILITY.BookingDate=#" & _
Forms![SINGLE BOOKING AVAILABILITY]!BookingDate & _
"# And AVAILABILITY.Period=" & Forms![SINGLE
BOOKING AVAILABILITY]!Combo8 & _
" And AVAILABILITY.Room=""" & Forms![SINGLE
BOOKING AVAILABILITY]!Combo10 & """"
DoCmd.RunSQL strSQL
If I print out the strSQL it looks like this:
UPDATE AVAILABILITY SET AVAILABILITY.[Booking ID] =
varNewID WHERE AVAILABILITY.BookingDate=#08/09/2004# And
AVAILABILITY.Period=1 And AVAILABILITY.Room)="IT4"
A record exists with date 08/09/2004, period=1, room=IT4
so where does the problem lie? With the date?
Thanks.
table:
strSQL = "Update AVAILABILITY " & _
"Set AVAILABILITY.[Booking ID] = varNewID " & _
"WHERE AVAILABILITY.BookingDate=#" & _
Forms![SINGLE BOOKING AVAILABILITY]!BookingDate & _
"# And AVAILABILITY.Period=" & Forms![SINGLE
BOOKING AVAILABILITY]!Combo8 & _
" And AVAILABILITY.Room=""" & Forms![SINGLE
BOOKING AVAILABILITY]!Combo10 & """"
DoCmd.RunSQL strSQL
If I print out the strSQL it looks like this:
UPDATE AVAILABILITY SET AVAILABILITY.[Booking ID] =
varNewID WHERE AVAILABILITY.BookingDate=#08/09/2004# And
AVAILABILITY.Period=1 And AVAILABILITY.Room)="IT4"
A record exists with date 08/09/2004, period=1, room=IT4
so where does the problem lie? With the date?
Thanks.