Okay so I am trying to read data from a .csv file and import each line to be an option in a combo box in visual basic but instead of reading each word it makes every letter an option instead. Is there a way to make it so it takes it after a new line instead of every letter?
EDIT: Never mind turns out there's a ReadAllLines I somehow managed to miss while finding readalltext on msdn!
Code:
For Each EngModule As String In My.Computer.FileSystem.ReadAllText(WriteLocation)
cmbModule.Items.Add(EngModule)
Next
EDIT: Never mind turns out there's a ReadAllLines I somehow managed to miss while finding readalltext on msdn!
Last edited: