this is my first card game. i'm trying to create baccarat card game using vb.net and database using mysql.
every game results will recorded into mysql table with columns :
i want to display all of the game results into my application with table template. (table template have 50columns and 6rows)
with rules :
1. first game result will be shown in upper left corner
2. if the game result is same as before, the result will input into the next row and same column
3. if the game result is different as before, the result will input into the next column, start from the first row
4. and so on
the display of game results from above games is :
how to do that?
what object i should use to make it?
every game results will recorded into mysql table with columns :
GAME_ID | TABLE_NO | GAME_NO | FINAL_RESULT |
1 | TBL-01 | 1 | BANKER |
2 | TBL-01 | 2 | BANKER |
3 | TBL-01 | 3 | PLAYER |
4 | TBL-01 | 4 | BANKER |
5 | TBL-01 | 5 | PLAYER |
6 | TBL-01 | 6 | PLAYER |
7 | TBL-01 | 7 | TIE |
i want to display all of the game results into my application with table template. (table template have 50columns and 6rows)
with rules :
1. first game result will be shown in upper left corner
2. if the game result is same as before, the result will input into the next row and same column
3. if the game result is different as before, the result will input into the next column, start from the first row
4. and so on
the display of game results from above games is :
B | P | B | P | | | | | | |
B | P | ||||||||
T | |||||||||
how to do that?
what object i should use to make it?