Hi all . Could any one show me how i can write the listbox items in to text file ? So far i all know to how to loop the listbox items. I want to the button re write all the listbox each time i press it.Looking forward for reply.Thanks
Private Sub Command8_Click()
Dim i As Long
For i = 0 To List1.ListCount - 1
'If List1.Selected(I) = True Then
'MsgBox List1.Text
MsgBox List1.List(i)
'End If
Next
End Sub