Sifn-in Form

  • Thread starter Thread starter nancy
  • Start date Start date
N

nancy

I am VB illiterate I hope you can help.
I want to create to Sign-in form where I can select a name from combo box.
Then click a button.
Upon clicking the button I want it to automatcally at the current time and
current date to the table.

It there any way you can help.
 
nancy said:
I am VB illiterate I hope you can help.
I want to create to Sign-in form where I can select a name from combo box.
Then click a button.
Upon clicking the button I want it to automatcally at the current time and
current date to the table.


Assuming the form is bound to the table, you could use the
combo box's AfterUpdate event to set the date.time text
box's value:
Me.thetextbox = Now

OTOH, you may be just a happy setting the text box's
DefaultValue property to =Now() and not using any VBA.

If the form is not bound to the table, please explain ,pre
about what you are trying to do with this form.
 
Back
Top