Command Buttons Please Help!

  • Thread starter Thread starter w2wm via AccessMonster.com
  • Start date Start date
W

w2wm via AccessMonster.com

I have a form I’m trying to make for a touch screen system. I have a field
called EmplyeeID –I would like to use the command buttons on click to enter
numbers into that field.
 
How exactly do I get the buttons to input a numbers into the employee id
field? If I do something like employeeid=1 on click then i just get one
input into that field.
 
If your employeeID field in your employee table is set up to be an Auto
Number field, then you don't need to enter anything in that field when
you insert data. The field will be populated automatically. If you
wish to use the employeeId to insert data to another table, then you
would use the employeeId as a field on your form and refer to it when
you do your insertion, Me.EmployeeID.

Hope that helps!
 
Back
Top