In Access 97, I'm trying to use an SQL statement to insert the "value" of tbx1 to tblSchedule. In one case the "value" is a Date and the other it is Text. I believe my problem is what to put after the "." in tbx1." ". The Insert statement is also used to insert other combo box and list box values. That part works OK.
Code:
SQL = "INSERT INTO tblSchedule (DateTime) " & _
"VALUES (" & DQ & tbx1."????" & DQ & ");"
Thanks, Brian