Ok, I'll try and help, but a novice as well, but off the top of my head.
This is what I would do.
Create a table tblLoginTypes
That table will have fields
Code:
LogTypeID Autonumber
LogSequence Number
LogDescription Text 20 (or as many characters as needed/expected)
Use the Form wizard to create a form for the table.
Put the entries in in the sequence they happen.
Then on your form, add the combo using the wizard, LogTypeID as the bound field, Log Description as the 2nd field. 2 fields in the combo, width, 0;2.5
That should then show the description in the combo.
Save the LogTypeID field to your table, along with the UserID and Date.
Now when the person logs in look for the maximum Sequence number for the user and date, and add 1 to it, to set the combo.
Use NZ function for when there is none, at the start of the day.
I would also make a key of UserID,Date,Sequence as a unique key, to stop a duplicate being added, but start off small and work out the kinks.
That should get you started.
HTH