D
DS
Is This How You Do This?
For Each ctl In Me.Controls
If ctl.Tag = "1" Then
ctl.Visible = True
End If
Next ctl
For Each ctl In Me.Controls
If ctl.Tag = "2" Then
ctl.Visible = True
End If
Next ctl
Or Can You Do it This Way....
For Each ctl In Me.Controls
If ctl.Tag = "1" and "2" Then
ctl.Visible = True
End If
Next ctl
Thanks
DS
For Each ctl In Me.Controls
If ctl.Tag = "1" Then
ctl.Visible = True
End If
Next ctl
For Each ctl In Me.Controls
If ctl.Tag = "2" Then
ctl.Visible = True
End If
Next ctl
Or Can You Do it This Way....
For Each ctl In Me.Controls
If ctl.Tag = "1" and "2" Then
ctl.Visible = True
End If
Next ctl
Thanks
DS