|
-
Jan 11th, 2000, 08:47 AM
#1
Thread Starter
Addicted Member
Thanks for the previous help, Now, how would i reverse that and send all the list to a textbox separated by ";" i tried:
text1.text = List1.listindex & ";"
but that wasnt it, I need to send All of the list, just not one part. Thanks
-
Jan 11th, 2000, 09:28 AM
#2
Code:
Dim intIndex As Integer
For intIndex = 0 To List1.ListCount - 1
If List1.Selected(intIndex) Then
Text1.Text = Text1.Text & List1.List(intIndex) & ";"
End If
Next intIndex
Text1.Text = Left(Text1, Len(Text1.Text) - 1)
------------------
Marty
-
Jan 11th, 2000, 11:14 AM
#3
Thread Starter
Addicted Member
That did not work, sorry. Any clue how to fix it, and get it to send ALL the info, not just the selected? thanks!
-
Jan 11th, 2000, 01:57 PM
#4
Hyperactive Member
Just remove the if statement will work!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|