Hello,
Before I begin please note that I have some programming experience using VB.net, although most of my background comes from VB6. I am currently using VB.net 2005.
I am currently working on a personal project (so that I can become more knowledgeable in VB.net) based off of a board game in which I am tracking the score of each player during each of their turns. I am currently storing the scores in a string (a separate string for each player).
At any time throughout the game, the user will be able to view the scoring history of all players. The history will be displayed on a new form.
Here is an example of scores:
Sam|30|5|15|
John|-5|-5|-5|21|22|3|14|
Julia|5|3|-5|51|6|
As you may notice, not everyone's score has the same number of entries although John has the highest amount with 7 entries. I am wondering what the best method would be to display the history of the player scores. I was originally thinking of using a datagridview, although creating the columns dynamically (based on the player with the highest amount of entries) may be a bit tedious.
Would anyone have a suggestion on a way to display the entries and depending on the suggestion, if you could provide some code to get me started would be a great help.
Thank you.
If at first you don't succeed, then sky diving wasn't meant for you!
Before I begin please note that I have some programming experience using VB.net, although most of my background comes from VB6. I am currently using VB.net 2005.
I am currently working on a personal project (so that I can become more knowledgeable in VB.net) based off of a board game in which I am tracking the score of each player during each of their turns. I am currently storing the scores in a string (a separate string for each player).
At any time throughout the game, the user will be able to view the scoring history of all players. The history will be displayed on a new form.
Here is an example of scores:
Sam|30|5|15|
John|-5|-5|-5|21|22|3|14|
Julia|5|3|-5|51|6|
As you may notice, not everyone's score has the same number of entries although John has the highest amount with 7 entries. I am wondering what the best method would be to display the history of the player scores. I was originally thinking of using a datagridview, although creating the columns dynamically (based on the player with the highest amount of entries) may be a bit tedious.
Would anyone have a suggestion on a way to display the entries and depending on the suggestion, if you could provide some code to get me started would be a great help.
Thank you.
If at first you don't succeed, then sky diving wasn't meant for you!