Was researching this but could only find how to use a datagrid which is displaying from a database?
I currently have a for loop which goes through a 2d array and prints out all the things I want into a textbox
but, what I want is to be able to have a table and print the things I want into rows and columns instead. I am new to VB.NET in Java it was just a matter of creating a table and a table model and loading the data through that way but not sure how to do it in .NET
Here is the for loop which I have that goes through my array and I want to display it neatly in a table with rows and columns
Any help would be appreciated...
Thanks
For Each Race In TodaysCard 'Print the card
With (Race)
Names = .menuPath.Split("\")
DisplayLog(.eventDate.TimeOfDay.ToString & " " & .marketId & " " & Names(3) & " - " & .marketName)
End With
Next