|
-
Jul 11th, 2001, 08:15 PM
#1
Thread Starter
Addicted Member
-
Jul 11th, 2001, 08:31 PM
#2
Code:
'save first listbox
Open "Myfile.txt" for output as #1
For i = 0 to List1.ListCount - 1
Print #1, List1.List(i)
next
close #1
' save next data from listbox
open "myfile.txt" for append as #1
For i = 0 to List2.ListCount - 1
Print #1, list2.List(i)
next
close #1
-
Jul 11th, 2001, 08:38 PM
#3
Thread Starter
Addicted Member
Thank you so much Jim!!
Thanks for the code snippets, It's definetly hard to go from one language to another, but I had to due to the limitations in Rapid-Q Beta. I still love that program though, I learned the basics and concepts of programming with that compiler... Time to move on to better languages though.
Thanks again,
Scott
Ps, Just to save me the little bit of time I would spend in trial and error, could you tell me how I could load this file into a listbox??
Thnx
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
|