--------------------------------------------------------------------------- QUESTION: --------------------------------------------------------------------------- How do I resize the form inside the MS-Access Window? --------------------------------------------------------------------------- ANSWER: --------------------------------------------------------------------------- Here's some sample code (forgive the formatting...this newsgroup pulls text to the left): frmMain.Width = Me.WindowWidth - 460 frmMain.Height = Me.WindowHeight - 1040 Note that the 'magic numbers' (460, 1040) were just specific to one app, should be put into constants, and reflect things such as toolbar height, and a vertical scrollbar on the right side. Play with these numbers (as constants) to fit your needs. Also note that forms (Me) have another pair of properties called InsideHeight and InsideWidth that you can use in place of WindowWidth and WindowHeight. Sometimes I have had to play around with these when doing code in the Resize event of a form (code to resize all controls depending on size of form). Usually I use InsideHeight/InsideWidth and not WindowHeight/WindowWidth.