Continious Forms in subform

  • Thread starter Thread starter Alex
  • Start date Start date
A

Alex

Hi I have a subform which displays records as continious forms. Against
each record there are two buttons btn1 and btn2.

What I want to do for each record is to have btn1 lit and btn 2 greyed out
if data in a field is one specific, or btn1 greyed out and btn 2 lit if the
data is anything else.

Where would I set this?

Thanks

Alex
 
I would suggest moving your buttons to the main form.
You can enable and disable them on the subform's OnCurrent event, so that
they are always appropriate for the record which is selected in the subform.

HTH
- Turtle
 
No can do (in the way you require). Changing the properties of a control in
the detail section of a continuous form, will change that property for
every instance< (record) of that control. This is true for main forms &
subforms alike.

HTH,
TC
 
Back
Top