Can I "freeze" parts of forms?

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

Guest

Morning,

I have a form that has a few fields on the top and a tab control on the
bottom. I want to be able to "freeze" the top so it's always onscreen, while
the bottom of the form can be scrolled (like freezing panes in excel). Is
this possible?

Thanks!

Aaron G
Philadelphia, PA
 
No, but you can achieve the same result by using sub-forms.


If you take look at the following access forms, you can see that I "often"
have some data on the left side, and the data on the right side changes.
(so, in effect, the left side does not change while the right side shows the
"many" side of the data.

http://www.members.shaw.ca/AlbertKallal/Articles/Grid.htm

The above screen shots should give you some ideas

Also, don't forget that a form has a form header, and a form footer. Data in
these two parts can be filled via code, and the main form part can then
scroll through records. (however, a form + some sub-forms is much less
work).
 
Back
Top