Question Making Score Board Card Game

butek

New member
Joined
Jul 16, 2013
Messages
1
Programming Experience
Beginner
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 :

GAME_IDTABLE_NOGAME_NOFINAL_RESULT
1TBL-011BANKER
2
TBL-012BANKER
3TBL-013PLAYER
4TBL-014BANKER
5TBL-015PLAYER
6TBL-016PLAYER
7TBL-017TIE

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 :
BPBP





BP
T

how to do that?
what object i should use to make it?
 
It depends what you want it to look like. The two most likely options that come to mind immediately would be a DataGridView and a TableLayoutPanel containing Labels.
 
Back
Top