Something like this will add every year from 2008 to the current year to a combo box
Code:
int currentYear = DateTime.Now.Year;
for(int i = 2008; i <= currentYear; i++)
{
YearComboBox.Items.Add(i.ToString());
}
/- Sam Judson : Wrox Technical Editor -/