Microsoft Visual C++ 6

Let's say that your text file contains items to be loaded into a ListBox or ComboBox control. You can't use the ReadTextFileContents routine that I showed you previously to load it directly in the control, but you can use it to make your code more concise: Sub TextFileToListbox(lst As ListBox, filename As String) Dim items() As String, i As Long ................
................