Gray out entire form while pop-up form up?

  • Thread starter Thread starter Pamela
  • Start date Start date
P

Pamela

Is there a way to gray-out (or an equivalent action) an entire form w/ all of
its objects while/until the pop-up form is completed? I have found some
suggestions for doing this to individual objects on a form, but surely
there's a faster way to include everything...right?? Thanks so much!
 
Why not just open the popup form in Dialog mode. That way the users
can't do anything until they are done with/close the popup form.

DoCmd.OpenForm "YourForm",,,,,acDialog
 
I have it set that way now, but I'd like there to be a stark difference in
appearance showing that the underlying form is turned off, so to speak. Any
ideas? Thanks!
 
Back
Top