|
-
October 26th, 2002, 01:57 PM
#1
appending text
i have the following code
Do While intBackCounter >= 0
txtAnswer.Text = intArray(intBackCounter)
intBackCounter = intBackCounter - 1
Loop
i want to be able to have multiple entries in the txtAnswer box
how can i do that? I have about 5 values in the array and it only outputs one. I need to know how to append or make all of the values in the array show up?
-
October 27th, 2002, 04:29 AM
#2
Alter your code to:
Do While intBackCounter >= 0
txtAnswer.Text &= intArray(intBackCounter)
intBackCounter = intBackCounter - 1
Loop
That will add whatever is in intArray(X) to the current string in txtAnswer.text.
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
|