VB怎么将记事本的内容写入列表框中我想把记事本中的每行字符串作为列表框中每一项的内容,有没有高手指点下![解决办法]
Private Sub Form_Load()Dim i Open "c:\1.txt" For Input As #1Do Until EOF(1)Line Input #1, nextlineList1.AddItem nextline Loop Close #1End Sub