On Fri, 25 Feb 2005 12:03:04 -0800, "dskanes" <(E-Mail Removed)>
wrote:
>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]
|