shrinking the detail section

  • Thread starter Thread starter kryszystof via AccessMonster.com
  • Start date Start date
K

kryszystof via AccessMonster.com

i have a form that displays info by week. So that the users can see and
remove weeks as they please, i have buttons, that will display each week.
That part of form is Ok, but when a week is selected, it will appear right
where it is in the design mode, which it is supposed to. now, if a user
wants to be able to look at say, week 1 info, and week 8 info, there is large
gap in between. i have set CanGrow and CanShrink to both Yes, still, nothing
happen. i just want to be able too display weeks without any gap, so it is
more readable. Thanks for any help!!
 
The CanGrow and CanShrink will only be effective if printing the form. These
properties don't affect screen display sizes. They are provided to cater for
users that don't design special reports but simply print the screen form
instead.

You can re-position controls dynamically in response to the user selections,
but remeber to close teh form without saving changes otherwise the new
positions will be saved ready for the next opening. That means providing a
custom close button and setting the Close Button property to False on the
form.

Hope that helps
 
Back
Top