>That worked like a charm Marshall - Thanks again. I'm sure I had tried that,
>but I must have had it wrong...
I did have quite a few references using Me. as the prefix, but someone told
me that this can 'confuse' access if using subforms. Although I didn't agree
or think it would, I didn't have the energy to argue. Do you know in what
types of cases when this will fail? I would like to change this, but I'm a
lttle afraid... :-) Seems like every time I make a little change, things
blow up... :-(
Thank you for the help again. You have been great. I have wished for a
mentor for quite some time, and with this absense, you and some of the others
have been great. I can't wait until I get this project done so that I may
spend some time helping others as well. But for now I have to spend most of
my time getting this thing working and installed...
Corey
>>That worked like a charm Marshall - Thanks again. I'm sure I had tried that,
>>but I must have had it wrong...
[quoted text clipped - 14 lines]
>is preferable to use Me instead:
> With Me
Marshall Barton - 30 Mar 2007 23:52 GMT
I have never even heard of a case where Access got confused
about the meaning of Me. I have seen lots of people that
were confused about it though ;-)
Regardless of who/what might be confused, Me ***always***
refers to the class module that contains the line of code.
For forms/reports, Me also refers to the form/report that
contains the module.
Some of the reasons why Me is preferable are:
* It is more efficient than processing a full reference
* It will still work if you change the name of the form
* It is portable if you should ever want to copy the code
to another form/report
* It is a heck of lot easier to type
* It is much shorter than a full reference, making your
code easier to read

Signature
Marsh
MVP [MS Access]
>I did have quite a few references using Me. as the prefix, but someone told
>me that this can 'confuse' access if using subforms. Although I didn't agree
[quoted text clipped - 27 lines]
>>is preferable to use Me instead:
>> With Me