Maximize / Restore

  • Thread starter Thread starter PaleRider
  • Start date Start date
P

PaleRider

Hi,

I have a label on a form that when clicked will maximize the form. Is there
a way to set the button so that a second click will restore the form to it's
previous size?

Right now I have this code:

Private Sub lblMaximize_Click()
' Maximize the form
DoCmd.Maximize
End Sub


PR
 
Back
Top