in a query you could format the date field to only display the months name, so 02 = February.
SELECT Format([DATE_FIELD],"mmmm") AS Expr1
FROM TABLE_NAME;
or
Expr1: Format([DATE_FIELD],"mmmm")
Then instead of doing a filter for Like "*/02/*", you would filter for February.
Does this help...