gojets1721
Registered User.
- Local time
- Yesterday, 17:52
- Joined
- Jun 11, 2019
- Messages
- 430
On my main form, I have a command which opens up a pop-up, smaller form. For whatever reason, the main form flickers right when the pop-up form opens up.
It's not a huge issue but it's just a bit jarring on the user side of things. Here's the thing though: it seems to be linked to the form opening from a command. I have another pop-up form that opens by doubling clicking a text box, and the flicker doesn't happen for that. Despite the open form codes for both being identical minus the form name.
Here's my open form code:
Any ideas on why the command version is causing the flicker? Any suggestions on how to fix?
It's not a huge issue but it's just a bit jarring on the user side of things. Here's the thing though: it seems to be linked to the form opening from a command. I have another pop-up form that opens by doubling clicking a text box, and the flicker doesn't happen for that. Despite the open form codes for both being identical minus the form name.
Here's my open form code:
Code:
Dim strFormName As String
Dim strCriteria As String
strFormName = "frmDates"
strCriteria = "[ComplaintNumber] =" & Nz(Me.[ComplaintNumber], 0) & ""
DoCmd.OpenForm strFormName, , , strCriteria
Any ideas on why the command version is causing the flicker? Any suggestions on how to fix?