The only way I can think about is to save info from ListBox to a file. Here is how to do it (this will involve a CommandButton - cmdAdd, TextBox and ListBox)
Code:
Private Sub cmdAdd_Click()
Dim I As Integer
List1.AddItem Text1.Text
Open "C:\Windows\Desktop\Test.txt" For Output As #1
For I = 0 To List1.ListCount - 1
Print #1, List1.List(I)
Next I
Close #1
End Sub
Private Sub Form_Load()
Dim I As Integer
Dim stLine As String
Open "C:\Windows\Desktop\Test.txt" For Input As #1
Do While Not EOF(1)
Line Input #1, stLine
List1.AddItem stLine
Loop
Close #1
End Sub
Hope this will help
------------------
Visual Basic Programmer (at least I want to be one)
------------------
PolComSoft
You will hear a lot about it.