I have a several textboxes with various names(txtEng, txtCheck, etc) and if they are null then I need their respective textboxes (txtEngMisc, txtCheckMisc, etc) in the same form to be hidden. I already have this on all the AfterUpdates of the textboxes(txtEng, txtCheck, etc):
If Not IsNull(txtDQA) Then
Me.txtDQAMisc.Visible = True
Else
Me.txtDQAMisc.Visible = False
End If
I am thinking something like this needs to be on the Onload of the form as well because right now the hidden textboxes are just not showing even when their respective textboxes are NOT Null when the form loads.
I was also thinking this would simplier in an array and maybe even NOT have it on all the AfterUpdates of each textbox.
Ideas, thoughts? Thanks!