I am trying to find a way to append data from a user into a table using Code
module. Here is an example:
I have a table "SHORTS" and fields "DATE" and "SHORT". I wrote the code
below but access won't recognize the fields. Can some one Help please.
Dim strShorts as Sting
Dim dtShort as Date
dtDhort = Date
strShorts = inputbox ("Enter Shorts", "Today's Shorts")
[SHORTS]![DATE] = dtShort
[SHORTS]![SHORT] = strShorts
module. Here is an example:
I have a table "SHORTS" and fields "DATE" and "SHORT". I wrote the code
below but access won't recognize the fields. Can some one Help please.
Dim strShorts as Sting
Dim dtShort as Date
dtDhort = Date
strShorts = inputbox ("Enter Shorts", "Today's Shorts")
[SHORTS]![DATE] = dtShort
[SHORTS]![SHORT] = strShorts
Comment