At the moment I\'m creating a DateTime for each month and formatting it to only include the month. Is there another or any better way to do this?
DateTime
Try enumerating the month names:
for( int i = 1; i <= 12; i++ ){ combo.Items.Add(CultureInfo.CurrentCulture.DateTimeFormat.MonthNames[i]); }
It's in the System.Globalization namespace.
Hope that helps!