Data Member or Object not found

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
 
R

ruralguy via AccessMonster.com

It is not that bad. Did you fix your problem?

Is this the link you were trying to go to?
http://www.trigeminal.com/usenet/usenet026.asp
I had no problem getting there.
It sounds like you might have a bogus MISSING reference.
http://www.accessmvp.com/djsteele/AccessReferenceErrors.html
[quoted text clipped - 17 lines]
This sounds bad! What causes this? I tried link and I tried to go to
the Article that shows you how to guarantee that this doesn't happen but
the link doesn't seem to be there. Can I find it elsewhere.
Thanks
DS
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top