I use Access 2000 and don't see cangrow and canshrink in the form properties.
is there something I'm missing

Signature
Frank Wagner
fwagner111@aol.com
> In the form properties, set cangrow to yes and canshrink to yes.
>
[quoted text clipped - 10 lines]
> >
> > Any help would be appreciated.
Even if 2000 had Can Grow, Can Shrink, it wouldn't work. Those properties
respond to the content of the control, not the screen resolution.
Here is a link to an API call that will tell you what the current screen
resolution is.
http://www.mvps.org/access/api/api0012.htm
You could then use that the dynamically size your controls.
To change the width, you use the control's Width property. It is set using
twips, which is 1440 twips per inch. So , to set a control's width to 2
inches, it would be:
Me.MyTextBox.Width = 2880
So I would suggest you use the Load event of the form (the Open is too
soon), determine the resolution of the screen, and set the control size
accordingly.

Signature
Dave Hargis, Microsoft Access MVP
> I use Access 2000 and don't see cangrow and canshrink in the form properties.
> is there something I'm missing
[quoted text clipped - 13 lines]
> > >
> > > Any help would be appreciated.
Frank Wagner - 17 Jul 2008 16:18 GMT
Dave:
Thanks. I had a feeling that's where I was headed, but hoped there might be
an easier way. Thanks for the reference as to how to automatically get the
screen resolution and screen size.
Your comments are right on target.
Thanks Again

Signature
Frank Wagner
fwagner111@aol.com
> Even if 2000 had Can Grow, Can Shrink, it wouldn't work. Those properties
> respond to the content of the control, not the screen resolution.
[quoted text clipped - 32 lines]
> > > >
> > > > Any help would be appreciated.
Klatuu - 17 Jul 2008 16:22 GMT
Glad I could help.

Signature
Dave Hargis, Microsoft Access MVP
> Dave:
>
[quoted text clipped - 42 lines]
> > > > >
> > > > > Any help would be appreciated.