C
Charles D Clayton Jr
I have a form where, do to space reasons, I need to hide and unhide
multiple fields. Presently I am able to accomplish this with code
like this:
Me.lblBadge.Visible = False
Me.lblDateIssued.Visible = False
Me.txtBadge.Visible = False
Me.txtDateIssued.Visible = False
I was wondering if there was a more efficient way to do multiple
controls at one time? I am hiding and unhiding around 20 controls at a
time. Since I am picking up coding in such a hodge-podge manner, I do
not know if there is a better way to accomplish this task or perhaps a
more professional one.
Thanks,
Charles D Clayton Jr
multiple fields. Presently I am able to accomplish this with code
like this:
Me.lblBadge.Visible = False
Me.lblDateIssued.Visible = False
Me.txtBadge.Visible = False
Me.txtDateIssued.Visible = False
I was wondering if there was a more efficient way to do multiple
controls at one time? I am hiding and unhiding around 20 controls at a
time. Since I am picking up coding in such a hodge-podge manner, I do
not know if there is a better way to accomplish this task or perhaps a
more professional one.
Thanks,
Charles D Clayton Jr