G
Guest
HELP 
tblTime
I have a VB Module to insert TimeSlots. As a test I did the following:
tmpTimeID = 2
tmpTimeSlot = 1010 (defind as Integer)
SQL Statement is:
SQL1="INSERT INTO tblTime (TimeID, TimeSlot) VALUES (' " & tmpTimeID & " ' ,
' " & tmpTimeSlot & " ' ) "
It creates the record with the key of 2, but for TimeSlot field is EMPTY!
I tried chaning the tmpTimeSlot to String (instead of Integer) and still
nothing....
Anyone? Help... Please....

tblTime
TimeID (Key)
TimeSlot (Time)
I have a VB Module to insert TimeSlots. As a test I did the following:
tmpTimeID = 2
tmpTimeSlot = 1010 (defind as Integer)
SQL Statement is:
SQL1="INSERT INTO tblTime (TimeID, TimeSlot) VALUES (' " & tmpTimeID & " ' ,
' " & tmpTimeSlot & " ' ) "
It creates the record with the key of 2, but for TimeSlot field is EMPTY!
I tried chaning the tmpTimeSlot to String (instead of Integer) and still
nothing....
Anyone? Help... Please....