Simple Question

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

I would like to stop the following and I think the two are related

When I press tab on the last control in my form a new record is added. (I
would like it to go back to the first control)

When I use the scroll on my mouse (The thing between the mouse keys..I can't
remember it's name) My form is displaying the next record from my table.

The form should only display the record of the client I select from the
combo box.

Thanks in Advance
 
Change the AllowAdditions property of the form to No. That will prevent the
form from being able to "make" a new record.
 
Back
Top