Hi,
I use the following code to open a form and make it invisible:
However, with this code, when the form opens, it is visible for a few seconds before it becomes invisible.
My question is how can I make the form not show before it becomes invisible?
Thank you
I use the following code to open a form and make it invisible:
Code:
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 question is how can I make the form not show before it becomes invisible?
Thank you