A.D.TEJPAL
adtp at airtelbroadband.in
Mon Aug 6 13:17:37 CDT 2007
Rocky,
Unless the PopUp property of a form is set to Yes, you can not prevent other forms from coming to the top. However, this property can be set only in design view.
If you are in a position to explain as to what exactly is sought to be accomplished by making the form PopUp on some occasions and non-PopUp on others, a work-around could be explored.
Best wishes,
A.D.Tejpal
---------------
----- Original Message -----
From: Rocky Smolin at Beach Access Software
To: 'Access Developers discussion and problem solving'
Sent: Monday, August 06, 2007 02:29
Subject: Re: [AccessD] Popup Form
I'll have to try it with the minimize button disabled - see what happens.
Rocky
-----Original Message-----
From: accessd-bounces at databaseadvisors.com
[mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Max Sherman
Sent: Sunday, August 05, 2007 12:26 PM
To: 'Access Developers discussion and problem solving'
Subject: Re: [AccessD] Popup Form
I *think* you will find that the difference is that popup stays on top of
everything whereas dialogue can be minimised.
Haven't check though.
Max
-----Original Message-----
From: accessd-bounces at databaseadvisors.com
[mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Rocky Smolin at
Beach Access Software
Sent: Sunday, August 05, 2007 2:31 PM
To: 'Access Developers discussion and problem solving'
Subject: Re: [AccessD] Popup Form
Steve, et al:
Dialog is the same as popup?
Rocky
-----Original Message-----
From: accessd-bounces at databaseadvisors.com
[mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Steve Schapel
Sent: Sunday, August 05, 2007 12:46 AM
To: Access Developers discussion and problem solving
Subject: Re: [AccessD] Popup Form
Rocky,
I think something like this should work...
If YourSwitch Then
DoCmd.OpenForm "YourForm", , , , , acDialog Else
DoCmd.OpenForm "YourForm"
End If
Regards
Steve
Rocky Smolin at Beach Access Software wrote:
> Can a form be opened in either popup or not depending on the value of a switch?