Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

When I open a new form, I get a "flicker"

Status
Not open for further replies.

Mack2

Instructor
Mar 12, 2003
336
US
Througout my database, when we open a form, before it actually opens we get a "flicker". I think it is the form I leaving. Everything is working fine, but this flicker is very annoying. Has anyone experienced this? Thanks in advance!!!!!!!!!!
 
How are you opening the new form and leaving the previous form ?

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
I use the following line of code to open the form;
DoCmd.OpenForm "frmProcurement"

Some of the forms are passing parameters. If that is the case I use;
Dim stDocName As String
Dim stLinkCriteria As String

stDocName = "frmSDAREntry"
DoCmd.OpenForm stDocName, , , stLinkCriteria

At this time, I do not have code to close the form. I need to add that. THANKS FOR YOU HELP!!!
 
I do not have code to close the form
so, the flickering should come from some event ?

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top