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]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top