Access Programming On Forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have the following record operations buttons on my forms (Save, Add, Delete)

I was wondering if there is a way in VB to identify if one of these
operation buttons
has been clicked or not ??

Thanks for your time
 
I have the following record operations buttons on my forms (Save, Add, Delete)

I was wondering if there is a way in VB to identify if one of these
operation buttons
has been clicked or not ??

Thanks for your time

Each button's Click event will be executed when the user clicks it;
you could have that event set the value of a global variable (or
otherwise record the action).

Typically a "click" is a transient event - a button doesn't usually
have a "clicked state" and an "unclicked state", so I'm not quite sure
what you're getting at!

John W. Vinson[MVP]
 
Back
Top