Private Sub MonthCalendar1_DateChanged(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DateRangeEventArgs) Handles MonthCalendar1.DateChanged
'// if you have the months from January to December in your ComboBox, then this should work.
ComboBox1.SelectedIndex = MonthCalendar1.SelectionStart.Month - 1
End Sub
You might need to set the "MaxSelectionCount" to 1 in the MonthCalendar's Properties.