Binding

M

martyn

How do i get an automatic entry ( from a barcode scanner )
to 'press enter' straight after entry. Also how do i bind
a time to that field as all i get is copy of the barcode
in my time field???
Thanks in advance
Martyn
 
R

Rick Brandt

martyn said:
How do i get an automatic entry ( from a barcode scanner )
to 'press enter' straight after entry.

The scanners we use have that as a setup option.
Also how do i bind
a time to that field as all i get is copy of the barcode
in my time field???

What code are you currently using?
 
R

Rick Brandt

martyn said:
if i scan something into excel then it will 'press enter'
not in access tho?

Don't understand that.
I am not using any code? have set
controlsource on my time field to my barcode field, then
set afterupdate =time() ???

You need the Event Property box for AfterUpdate of your barcode field to read "[Event
Procedure]". Then you click on the build button [...] to the right and you will be
taken to the code module for the form and positioned between the lines that define
the event procedure for that particular form event. There you need to have a line of
code like...

Me![NameOfYourTimeField] = Time()
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top