What Method for conditions in a record

fredalina

Registered User.
Local time
Today, 11:58
Joined
Jan 23, 2007
Messages
163
i have 2 command buttons. Once one is pressed, an invisible flag is selected, the first button is made invisible, and the second button becomes visible and enabled.

What method do i use when a record is loaded so that the flag is checked to determine which button should be visible upon later loads? Form_Load() only works for the first record loaded.

Thanks!
 
Use the Current Event of the form. You will get one every time you get a fresh record.
 
That would be the form's On Current event. It fires when moving from record to record.
 

Users who are viewing this thread

Back
Top Bottom