Hello, I need during my program execution to output almost 25 millions of lines results of some calculations, like below lines
1,2,3,4,5-1
1,2,3,4,6-1
1,2,3,4,7-1
1,2,3,4,8-1
1,2,3,4,9-1
1,2,3,4,10-1
...
1,2,3,5,1-1
1,2,3,5,2-1
1,2,3,5,3-1
...
41,42,43,44,45-20
Which component can do such an operation?
A scrollbar for this component will be needed for the user to be able to see all results and I also need the user if he likes to be able to export these results to a txt or csv file or maybe to a printer if the results are only a few.
What would be the faster way to output these results - first do the calculations and then output them or output them after each calculation?
Any ideas?