iam using vb6
i have a listbox that has more than 100000 entries stored in
when i retrieve these elements only 15913 elements be retrieved
here is my code
For j = 0 To List1.ListCount - 1
Print #1, List1.List(j)
Next j
how can i reteieve all the 100000 elements stored in the listbox
i have a listbox that has more than 100000 entries stored in
when i retrieve these elements only 15913 elements be retrieved
here is my code
For j = 0 To List1.ListCount - 1
Print #1, List1.List(j)
Next j
how can i reteieve all the 100000 elements stored in the listbox
Comment