To post the list of months is quite simple. You can just set the combobox RowSourceType to "Value List", and then RowSource to "Jan";"Feb";"Mar";"Apr";"May";"Jun";"Jul";"Aug";"Sep";"Oct";'Nov";"Dec"
But to use the combobox to use the values to filter, say, date values, would be a little more difficult than using numbers that can be used in Date format functions. For that, you can still use the Value List, but adjust the RowSource as follows:
1;"Jan";2;"Feb";3;"Mar";....;12;"Dec"
The elipses should be filled in with the numbers and months in between.
On properties, click the Format tab. On column count, enter 2, and in column widths, enter 0;.6
Now open the form with the combo box. You will still see the months in a single column. However, the combo box VALUE will be the month NUMBER, so you can now use the combo box in date calculations and operations.