|
tech
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
How do I get a form to wait for a popup to close?Is there a way to get the VB code that opens a popup to wait until the
popup is closed before continuing? <D***@NoEmail.com> wrote in message
news:0k6dk3tp4vkk88qtvvcreiuvro2n7249f0@4ax.com... Set the form's Modal property to True.> Is there a way to get the VB code that opens a popup to wait until the > popup is closed before continuing? > > > Keith. www.keithwilby.com <D***@NoEmail.com> wrote in message
news:0k6dk3tp4vkk88qtvvcreiuvro2n7249f0@4ax.com... Specify acDialog as the WindowMode parameter:> Is there a way to get the VB code that opens a popup to wait until the > popup is closed before continuing? DoCmd.OpenForm "MyPopupForm", WindowMode:=acDialog This will pause your code until the form is closed or hidden (Visible = False). |
|||||||||||||||||||||||