Add Year in Combobox

Dim i As Integer = System.DateTime.Now.Year
Do While i >= 1950
ComboBox1.Items.Add(i.ToString())
i -= 1
Loop

No comments:

Post a Comment