Hello, I have a big problem with my access project, and it couldn't happen at a worse time. I've been working on my project for 2 months, and it's been working fine and I was supposed to finish today. BUT... I had the horrible surprise to realize this morning that my project didn't work at all this morning!
As soon as I opened a Form, Access crashed. It turns out that the "me." statement is the source of the problem. For example, a simple command like:
Me.CmdOk.Visible = True
provoke the crash. Every form does it. When I change Me. for "Forms![Name_Of_Form]." it works correctly. But I have a lot of time where I utilize CmdOk.visible instead of Me.Cmdok.visible, and these are hard to find manually. Also my report system works on the basis that I can create new one and they will work because of the Me. I use, if I have to create new one using the Reports![Name of Report]. I won't be able to create new tables. Plus, there's of course the additional problem that I can't see yet and i'm afraid there could be more...
So, ANY kind of help would be appreciated. I need to find an answer, fast, to solve this problem before leaving :S...

Me.CmdOk.Visible = True
provoke the crash. Every form does it. When I change Me. for "Forms![Name_Of_Form]." it works correctly. But I have a lot of time where I utilize CmdOk.visible instead of Me.Cmdok.visible, and these are hard to find manually. Also my report system works on the basis that I can create new one and they will work because of the Me. I use, if I have to create new one using the Reports![Name of Report]. I won't be able to create new tables. Plus, there's of course the additional problem that I can't see yet and i'm afraid there could be more...
So, ANY kind of help would be appreciated. I need to find an answer, fast, to solve this problem before leaving :S...