Assuming you really do mean ListBox, I don't see why not.
(It is slightly confusing that all the Help items for ListBox methods use "ComboBox1" as the name for the example ListBox. Hopefully this is just copy-and-paste overkill. I don't know what the actual difference between a ComboBox and ListBox is. The Help for ComboBox specifically says there is no "Text" property, but then ListBox doesn't have one either!)
So if you have your list of state names you first clear the Listbox (ListboxState.Clear) then add the names (ListboxState.Add(stateName(i)).
What was the problem?
HTH, Mike