Maintaining a Form Maximized

  • Thread starter Thread starter John C.
  • Start date Start date
J

John C.

I have a form that must remain maximized while displayed.

I have tried the following event in the forms code (the
msgbox is for testing):

Private Sub Form_Resize()
MsgBox "Form has been resized."
DoCmd.SelectObject acForm, "frmUnitData"
DoCmd.Maximize
End Sub

Line 2 and 3 seem to have no effect...???
 
Try taking out the message box command and see if they
run. If they do you will need to ask yourself if you
really need the msgbox...

HTH

James
 
The msgbox is only telling me when the Resize event
occurs. It has no bearing on anything else.

Anyone else have an idea?

I have tried using the information contained in kb141111,
but it seems not to work.
 
Back
Top