Hide/display part of form

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

Guest

I have a continuous form that has multiple entry fields, making the
continuous form rather long. I would like to be able to hide all but the
first line (containing two of the controls) for all the records that aren't
active (currently being updated).

So, when a user clicks on an entry (first line) to update it, either the
rest of the fields automatically appear (ideal), or the user will have to
click a control to display the rest of the fields.

How can I do this? Thanks!
Steve
 
Put the controls that have values you always want displayed in the detail
section. Then put controls you only want filled for the current record in the
FormFooter section. When you navigate records in the detail section, the
footer section's controls will populate with the other values.

Barry
 
Of course! I think I've been staring at this database too long... Simple and
effective. Thanks!
 
Back
Top