D
DS
I get the Method or Data Object message..... on Tag.
How can I fix this?
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 = False
End If
Next Ctl
How can I fix this?
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 = False
End If
Next Ctl