I need to load the contents of a text file (itemInfo.txt) into a list box, I am on the wrong track, can someone please help.
Public Class MainForm
Private path As String = "L:\Visual Basic\SequentialHW\"
Private Sub MainForm_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
itemListBox.Items.Clear()
itemListBox.Items.Add(path & "itemInfo.txt")
End Sub