D Doug Nov 23, 2007 #1 Is there a way to get the VB code that opens a popup to wait until the popup is closed before continuing?
Is there a way to get the VB code that opens a popup to wait until the popup is closed before continuing?
K Keith Wilby Nov 23, 2007 #2 Is there a way to get the VB code that opens a popup to wait until the popup is closed before continuing? Click to expand... Set the form's Modal property to True. Keith. www.keithwilby.com
Is there a way to get the VB code that opens a popup to wait until the popup is closed before continuing? Click to expand... Set the form's Modal property to True. Keith. www.keithwilby.com
S Stuart McCall Nov 23, 2007 #3 Is there a way to get the VB code that opens a popup to wait until the popup is closed before continuing? Click to expand... Specify acDialog as the WindowMode parameter: DoCmd.OpenForm "MyPopupForm", WindowMode:=acDialog This will pause your code until the form is closed or hidden (Visible = False).
Is there a way to get the VB code that opens a popup to wait until the popup is closed before continuing? Click to expand... Specify acDialog as the WindowMode parameter: DoCmd.OpenForm "MyPopupForm", WindowMode:=acDialog This will pause your code until the form is closed or hidden (Visible = False).