Question Show large amount of data

roxasvalor

New member
Joined
Jan 15, 2011
Messages
2
Programming Experience
Beginner
I am trying to find a way to show a large amount of data that spans across multiple forms and text boxes. I am making a somewhat summery of the input strings. Any help would be appreciated, thank you.
 
okay, well I am trying to take the data from 10 textboxes on form1 and display their contents on form2. I am looking for a way that is more efficient than putting 10 different labels on form2. Basically i need to create some sort of table to hold all the information.
 
Well it depends on how you want the data presented. A listbox is quite easy to use?

Listbox1.items.add("First line")
Listbox1.items.add("Second Line") etc?


You could put the textbox data into an array and then loop through the array adding the contents to the listbox? Or whatever you want to display the data in.

It all depends on how you want to display/make the data look?
 
Back
Top