Time Update Command Button

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a list box and I want it to update the exact time when I click a
button and fill the list box with the long time (including time and date).
The list box is name "Clock-In". How can this be done?
 
The Row Source of the listbox needs to be based on a query, sorting by the
time you mention, and pulling the information from a table that stores these
times. When you click the button, add the time to the table as a new record
then Requery the listbox.

Example:
Me.lstMyListbox.Requery
 
oops, I meant a field, not list box
I have an equation, however I believe I am going in the wrong direction
the on-clik button is " [Clock-In]=now()"
There is something wrong here and I can't figure it out. I get an error
that says it is searching for a macro that doesn't exist. Any help is
appreciated.
 
Back
Top