Report is maximizing weird

  • Thread starter Thread starter tsison7
  • Start date Start date
T

tsison7

I setup my report previews so that they maximize on load. I had it working
fine but I must have done something wrong because now the form Maximizes
funny.

It fills up the database window but you can still see the caption. It seems
Access thinks its maximized because I can't maximize it any further by
hitting the maximize button, yet when I minimize it then maximize it, it
correts itself.

This causes a problem because right now, the page selector at the bottom is
hidden because it isn't maximized correctly and I have to min/max in order to
see it.

Thanks,
 
On Report Open event remove previous code and add this:

DoCmd.Maximize

Also, on close, remove previous and paste this:

DoCmd.Restore



--
HTP
Adnan

If I have helped and/or answered your question, please let me know by
replying or clicking question answered (below positioned ‘Yes’ button).
 
Back
Top