New Record

  • Thread starter Thread starter mw
  • Start date Start date
M

mw

The mousewheel event is causing a new record to be appended to my table. I
can't wait for BeforeUpdate to fire, I want to make sure the user cannot add
a record in this fashion.

Any suggestions?
 
One way is to disable the mouse wheel through code. Look at Stephen Leban's
page:

http://www.lebans.com/mousewheelonoff.htm

Another way is to use an unbound form with command buttons running code to
perform the recordset operations. so the mouse wheel will have no effect on
the form.

HTH,
Nikos
 
Back
Top