Not sure what you mean by packed binary in this context.
Anyways, Access has a binary data type. For reasons beyond my knowledge, such a column just cannot be created in the visual table designer.
@sonic8 - I may have used the wrong name. After looking it up, I see they call the data type "bit" and it occupies one bit. "Packed" was the name used when you had a "holder" for several "bit" types in the same physical storage element, but it might not have been in SQL context. I must admit that my memory is imperfect. From the description, if you have any BIT fields, SQL server will automatically pack them transparently to you so that you don't know anything about the packing aspect of things. You just see that there are one-bit fields.
Yes. The check boxes are initialised to ensure a two-state operation, and the code determines whether each is True or False. That part of the code is completed a working satisfactorily. The code tests for True or False so won't look for values.
In other circumstances, I tend to use an IsNothing() function which I found on this site many (many,many) years ago, when I still worked for a living. It appears to deal with Null, zero, "", and empty input boxes without any problems.
The reason being that I can make the search easier using one field rather than 12?
I can search for single months or multiple months (seasons, but not exclusively).
By my thinking, 400 records X 12 fields is a lot more than 400 fields...and would use less coding.
If you wanted the "least code" then you create a field for each month allowing simple add, Edit, delete with no code. Then use a simple union query for all of the searching requiring little or no code.
Size would be irrelevant at 400 records or even 40,000 records.
The "best" most flexinble and efficient way is a normalized child table, which you still could design a simple form with check boxes to add delete child records.
Your solution seems to be neither the easiest or best approach, but you seem set on it and it will probably work fine. Seems unnecessarily kludgy. A solution without a problem.