Instead of reading a record into a variable and then using that variable as the item in .Additem to a listbox can the file record be read directly into the listbox?
Example:
Instead of this:
Line Input #1, Data
List1.AddItem Data
can something like this be done:
List1.AddItem Line Input #1, Data
Example:
Instead of this:
Line Input #1, Data
List1.AddItem Data
can something like this be done:
List1.AddItem Line Input #1, Data