mcnewsxp,
Whereas I agree with Jerry's advice specific to your question, I have a
question about the Data Type of the field. Apparently you are using a
Date/Time field. Is that the correct decision? I'm not sure, because
we haven't got enough information about what you are using this for, and
how you are using it. It's not enough to say that you can see this sort
of information on a calendar, and therefore it's Date. In a database,
these decisions are based on the required functionality. So here's how
I would read it... you want the month and the year, it doesn't matter
about the day, means it is very likely that you do not want date
functionality. So yes, it is possible to shove it into a Date/Time
field, using techniques such as input mask as discussed in this thread.
But the question still looms - why? A valid date requires all three
components - day, month, year. Unless there's something I don't know
yet about your database to make me change my mind, at the moment it
looks to me that you don't want a date, you want a month and year. As
such, I wouldn't use a Date/Time data type field. I would either use 2
separate Number fields, one for month and one for year, or else I would
use a text field to store like 07/2006. My decision between these two
options would depend on how I wanted to use the information, but I
really don't think it's a date.