For starters, what you can do is to create your base table. Add all the
data fields you want to collect. You can make the first column an
Autonum column (an Identity field) - you can name it something like
IDnum, then add a Eng_Name column (engineer's name) as a Text column,
maybe they all have ID's - Eng_ID As Number (or Text if Alpha Numeric),
.... and so on, and finally a date column for the respective date
EntryDate As Datetime.
Next you go to forms, New and in the dialog box at the bottom select the
table you just created. This will be your data entry form. The form
will be based on this table. In the design view of the form on the top
side of the window go to the first toolbar. In the middle of the
toolbar, you will see an Icon with the planet Earth, and to the right of
that are 2 more icons, one looks like a Notepad, and the other is a
toolbox icon. You are interested in the Notepad looking icon. This is
the field list of the table you just created. If you hold your mouse
over the icon, it will say "Field List". Click on this icon and you
will get a list of all your table fields. If you click on the top of
this list, it will highlight the entire list. Drag this highlighted
section to your form and release the mouse button. The fields will now
be placed on your form. Now you can drag the fields around as you need.
When you enter data into these fields, the data will automatically be
entered into the table. This is called data entry form. Please forgive
me if you already know all this.
In your date field, you can add a function like =Date() to the default
value on the properties sheet of the date field. To get to the
properties sheet, just right-click on the date field (right click on any
field to get to the property sheet). There is a row in the property
sheet that says "Default Value". This is where you enter
=Date().
Now the current date will be entered into that field for each record.
For today, today's date gets entered. For tommorrow, it would be
tommorrow's date. If you need something different than that then you
will have to add/write a little bit of code in the field's After_Update
event. But hopefully this will get you started. If you need more
assistance,just post again.
HTH
Rich
*** Sent via Developersdex
http://www.developersdex.com ***