A family of Microsoft relational database management systems designed for ease of use.
You haven't provided the data types of the columns/fields which is very critical to Domain Aggregate functions. Assuming MeetingDates is a date/time and MeetType is numeric try:
Me.Text24 = DLookup("[MeetDateType]", "tblMtgDates", "[MeetingDates] =#" & [Forms]![frmAttendance]![cboMtgDate] & "# And [MeetType] = " & [Forms]![frmAttendance]![cboMtgType])
If MeetType is text:
Me.Text24 = DLookup("[MeetDateType]", "tblMtgDates", "[MeetingDates] =#" & [Forms]![frmAttendance]![cboMtgDate] & "# And [MeetType] = """ & [Forms]![frmAttendance]![cboMtgType] & """")