Arranging checkboxes after hiding some.

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

Guest

I have a report with ~ 30 checkboxes that are in a sub-report.
They are arranged in 5 columns.
The checkboxes that are false get hidden but they just leave a blank spot
where they were.
Is there anyway to automaticly rearange them so ther eis no blank space
where the hiddin checkbox was?

Thanks
 
Joel said:
I have a report with ~ 30 checkboxes that are in a sub-report.
They are arranged in 5 columns.
The checkboxes that are false get hidden but they just leave a blank spot
where they were.
Is there anyway to automaticly rearange them so ther eis no blank space
where the hiddin checkbox was?


You can use code in the details section's Format event to
set the Top and Left properties of the True check boxes. In
this kind of situation, it helps if the check box controls
are named in a uniform manner such as chk1, chk2, etc.
 
Back
Top