D
DS
This code keeps blowing up my database. It works fine on one machine
but when I move the database over to another machine, same version
windows and access....I keep getting the Data Member/Object not found
Error. What could be wrong
Thanks
DS
Dim Ctl As Control
For Each Ctl In Me.Controls
If Ctl.Tag = "1" Then
Ctl.Visible = False
End If
Next Ctl
For Each Ctl In Me.Controls
If Ctl.Tag = "2" Then
Ctl.Visible = True
End If
Next Ctl
but when I move the database over to another machine, same version
windows and access....I keep getting the Data Member/Object not found
Error. What could be wrong
Thanks
DS
Dim Ctl As Control
For Each Ctl In Me.Controls
If Ctl.Tag = "1" Then
Ctl.Visible = False
End If
Next Ctl
For Each Ctl In Me.Controls
If Ctl.Tag = "2" Then
Ctl.Visible = True
End If
Next Ctl