gusbrunston
Programmer
.
I've tried to solve this problem several ways.
There are two fields in the table "tblMyRecords": recordID & dateID
A form based on tblMyRecords with two text boxes: txtRecordID & txtDateID
Both text boxes fill with default data:
What can I do to save a new record with just the default data? ...without entering new data in either field? I've made command buttons, I've copied DoCmd lines into code, I've tried macros, etc. Whenever I close the form, the new record is not saved. (If I enter a number or a date, the new form is saved.)
Please, your help would be greatly appreciated! :-I Gus Brunston
An old PICKer
padregus@home.com
I've tried to solve this problem several ways.
There are two fields in the table "tblMyRecords": recordID & dateID
A form based on tblMyRecords with two text boxes: txtRecordID & txtDateID
Both text boxes fill with default data:
Code:
txtRecordID = DMax("[recordID]","tblMyRecords")+1
txtDateID = Date()
Please, your help would be greatly appreciated! :-I Gus Brunston
An old PICKer
padregus@home.com