I cant seem to work out to trace the content of a data grid i have populated with info;
Once I can work out how to trace it or each row i would push it into a new array for exporting.
so for example: i have a datagrid instanceNamed(info) //populated from a CVS file; text file//
containing 150 rows and 15 columns. I would simply like to trace this in the output window .From then i will work out how to write to disk.
i have been searching around but cant seem to find a solution to this problem.
thank you
I have worked out how to trace a single cell or an entire DataGrid, Below is an example:
OutPut
Australia Footy,Bob
Sydney Soccer,David
Australia Cricket,Jim
RunThrough:
First creat a loop counter “k” which is checking the Data Grid “length”
“get item AT” will check the first location,matching to the variable in the DataGrid
“TeamName” / ” PlayerName is the next reference. After this has done it will repeat this “k++” Same structure until the condition is met(counter == datagrids Length-1) for better understanding the best bet would be how to structure Arrays,tuts ect.