open forms

  • Thread starter Thread starter florin
  • Start date Start date
F

florin

Hi,

I have a form and I open in maximize mod (with docmd.maximize)

How can I open another form, (over first form- this is maximize), in a fix
place and
with fix size ?
 
Set the 2nd form's Popup property to Yes.

When you open it from the Database Window (the Navigation Pane in Access
2007), it will then open in a window of its own, outside the Access window.

If you open the form programmatically, use:
DoCmd.OpenForm "Form1", WindowMode:=acDialog
 
Back
Top