|
-
Feb 21st, 2000, 09:23 AM
#1
Thread Starter
New Member
How can i print the content of the array to the textbox which can fulfill follwing 2 task?
1. can quick print out the array content into textbox
2. each array content print seperate line into textbox
Thanks
-
Feb 21st, 2000, 09:39 AM
#2
Addicted Member
assuming your textbox is set for multiline = true
dim MyString as string
MyString = ""
for i = lbound(MyArray) to ubound(MyArray)
mystring = mystring & MyArray(i) & vbCrLf
next i
text1.text = MyString
hope this helps.
Mark
-
Feb 21st, 2000, 04:49 PM
#3
Thread Starter
New Member
Thanks. You can solve my problems !!!
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
|