Question:
I opened a ASCII text file into an array. Now I want to print the data into a text box. I tried something like this: txtResult.text = flight(i)
The problem is that if there are 5 rows in the array, the text is overwritten 5 times, so all you see in the text box is the last result from the array.Any ideas?
Answer:
Try using the code below instead. That should solve your overwriting problem.
for i=0 to ubound(flight) txtResult.text=txtresult.text & flight (i)next i
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.























