Тема: Добавление элементов в список ListBox из файла
Private Sub File2List() Const ForReading = 1 Dim fso, ts Set fso = CreateObject("Scripting.FileSystemObject") Set ts = fso.OpenTextFile("d:\list.txt", ForReading) On Error Resume Next For i = 0 To 10 If Err = 62 Then Exit Sub List1.AddItem ts.ReadLine Next End Sub