Sample Scoreboard for quiz Visual Basic

Asked By 110 points N/A Posted on -
qa-featured

Hi, I am fresh to Visual Basic, Please get me an example Scoreboard using Visual Basic that will input the Name and Score and will display the Name in an order based on the score, Please help me to find a sample that match the mentioned scoreboard for quiz Visual Basic.

SHARE
Answered By 0 points N/A #196927

Sample Scoreboard for quiz Visual Basic

qa-featured

Hello David Parfit,

I can give you the concept on how this will work.

  • Store all the players and their score in a table.
  • Use a database for this.
  • Output all the players and their score in a list or a DataGrid.
  • Sort them from highest to lowest.
  • Either make a query where only the Top 3 will be shown (assuming you want the Top 3) or make a counter where after the third data is inserted, the loop will end.

Or you could use the attached codes for your reference. Use either the Move Up or Move Down functions.

These are functions and not the entire code itself.

Hope this helps.

Related Questions