I just wrote this to get a formated version of the field value for use in the Where clause:
Public Function GetFormFieldValue() As String
GetFormFieldValue = Format([Forms]![frmMainMenu]![StartDate], "mmm") & "-" & Format([Forms]![frmMainMenu]![StartDate], "yyyy")
End Function