VB Code:
  1. Dim yr, mn
  2. yr = Year(Date)
  3. mn = Month(Date)
  4.        If Not cmbyear.Text = yr Then Exit Sub
  5.        If Val(cmbmonth.Text) < mn Then MsgBox "Incorrect date"

Hey all the code above should make sure
that the date is only validated if it is equal to this year

If this is the case then it will only display a message if the month is equal or greater to the current

Please help ASAP