gojets1721
Registered User.
- Local time
- Yesterday, 22:40
- Joined
- Jun 11, 2019
- Messages
- 430
This is in a similar vein to a post I made yesterday. I inherited a DB which has a bunch of code in the 'on current' event of a single record form, which causes the form to flicker when changing records. When I comment out the code, the flicker goes away so I'm trying to figure out alternatives to current code.
The form has a tab control with 8 tabs, but 4 of the tabs are set to show/hide depending on one field's content in the form. This is handled in the on current event via:
Any suggestions on how to accomplish this show/hide result without having to utilize the on current event?
Thanks!
The form has a tab control with 8 tabs, but 4 of the tabs are set to show/hide depending on one field's content in the form. This is handled in the on current event via:
Code:
If Category = "Timeliness" Then
tabTimelinessComplaint.Visible = True
Else
tabTimelinessComplaint.Visible = False
End If
Any suggestions on how to accomplish this show/hide result without having to utilize the on current event?
Thanks!