Table window Size

  • Thread starter Thread starter Kungen
  • Start date Start date
K

Kungen

Any way to make Access 2003 remember the size and position of a table
window? As it does with queries.

Regards
 
For a popup
Open the form in normal view
Size the form how you want
Press Control and S

To open maximized
Open the form in design view
In the OnOpen event

Private Sub Form_Load()
DoCmd.Maximize
End Sub

If you can give more details of what you are trying to do it would be a help
 
Thanks for trying to help. I'm talking about the windows for the
actual tables when working with them in access. Everytime I reopen a
table it covers the entire workspace and I have to adjust the size,
which is time consuming and annoying. Saving while the window is open
doesn't help. But I guess there is no way to work around this minor
(but irritating) problem.
No there is no workaround, but users should NEVER (yes, I'm shouting)
view/edit a table directly. Use forms and reports.
 
Thanks for trying to help. I'm talking about the windows for the
actual tables when working with them in access. Everytime I reopen a
table it covers the entire workspace and I have to adjust the size,
which is time consuming and annoying. Saving while the window is open
doesn't help. But I guess there is no way to work around this minor
(but irritating) problem.
 
Back
Top