Hi,
I use the following code to open a form and make it invisible:
stDocName = "Formname"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Form_Formname.Visible = False
However, with this code, when the form opens, it is visible for a few seconds before it becomes invisible.
My...