I am loading a form which has Eight comboBoxes, named ComboStation1, ComboStation2, ComboStation3, etc. In each combobox I have to add 118 City names. Since Vb.net doesn't support control arrays, and there is no event for add_handler to handle such a task, is this the only way to program that....

VB Code:
  1. Private Sub Combostation1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
  2.               comboSTATION1.Items.Add("Akron, OH"))
  3.               comboSTATION1.Items.Add("Albany, NY")
  4. End Sub

and do that eight times. 8 * 118 = 944 lines of code to do such a simple task. IF ANYONE knows an easier way, i would greatly appreciate it.

thanks,

Jeff