T
tg112001 via AccessMonster.com
Is there a way to open a form without making it visible from the start?
Here's sample code to help explain:
DoCmd.OpenForm "form1", acNormal
Me.Visible = False
Me.Combo1.RowSource = ""
DoCmd.Close acForm, "Country_BT_Land_APAC", acSaveYes
The minor problem with this is that the form is visible for a split second,
and then becomes invisible - which looks like a flicker. Since I have to do
this with 4 forms at one time, there will be 4 flickers. I'm trying to
elimate the flicker problem.
Thanks!
Here's sample code to help explain:
DoCmd.OpenForm "form1", acNormal
Me.Visible = False
Me.Combo1.RowSource = ""
DoCmd.Close acForm, "Country_BT_Land_APAC", acSaveYes
The minor problem with this is that the form is visible for a split second,
and then becomes invisible - which looks like a flicker. Since I have to do
this with 4 forms at one time, there will be 4 flickers. I'm trying to
elimate the flicker problem.
Thanks!