Modal Forms

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

Hi:

Does anybody know how to
get the form to come up modally and with scroll bars?


My efforts have been with the commands

DoCmd.OpenForm "Certification", acNormal, "", "", acEdit,
acNormal (get scroll bars but not modal)

DoCmd.OpenForm "Certification", acNormal, "", "",
acEdit, acDialog (is modal but no scroll bars)


Mike
 
Mike,

Will you always want to open this form in Modal View? If so, you can set
the form's Modal Property to 'Yes' and you will have scroll bars. Setting
the Popup Property to 'Yes' also allows scroll bars. (Tested in Access
2002). It *appears* that when you use the acDialog argument in the OpenForm
method that you are also setting the BorderStyle Property to Dialog, which
may be what is negating the scroll bars.

hth,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Second form appears behind the first 2
Multiple forms and focus 1
ByPass key ms access 2016 0
Form border can't be None 5
Cant See Form 2
Modal = Yes Locks the Record 1
Expected Sub error 2
Lost Focus of Form 1

Back
Top