Class Module vs Standard

  • Thread starter Thread starter Gator
  • Start date Start date
G

Gator

Can I use a class or standard module to set up a Case Select statement for
several events? Which one should I use and why? It will only apply to the
current form.
 
If the code only applies to the current form, you can write it in the form's
module. What event is your code responding to? That would be the place to
put the code.
 
Paul
the code would be used in several events. For example, I want to check for
conditions everytime certain controls are updated and when records are
scrolled through.
 
Back
Top