The Rugby World Cup Organizing Committee has decided to embark on a project to automate their score
board keeping for rugby world cup games results. This program would be tested and used in the current
World Cup and then later could be used in the major rugby tournaments around the globe. The committee
has hired you and has provided you with the following information about the current tournament rules and
how results are maintained manually at the moment.
Your program will record points from each game in the tournament and calculate which two teams qualify
for the finals.
In each game, the winning team receives 3 points and the losing team 0 points. If teams draw, they each
receive 1 point. Each team’s cumulative score differential (points scored – points allowed) is also recorded.
(Score here relates to points for try’s, conversions plus drop goals)
The two teams with the highest number of points qualify for the finals. If two teams have an equal number
of points, ties are resolved by seeing which team has the highest score differential. (If two teams have
equal points and an equal score differential, your program can choose either.)
Specific program requirements:
• There are only four teams participating – Fiji, Samoa, Tonga and Niue. ☺
• You do not have to manage which teams play against each other in which game. For example, you
can allow 3 games of Fiji v/s Tonga to be entered.
• You do have to check that no game involves a team playing itself (Fiji v/s Fiji).
The interface should have:
• Places to enter the names of the teams and their score against each other. (Your interface should
only have space for entering results from one game at a time.) You can design this in either of the two
ways described below.
• A button to enter/submit the scores (results) of the game. When this button is pressed, your program
should save/update the scores for the teams and then clear the places where information about that
game was entered. If the information for a game is incomplete or incorrect (~like a team playing
itself), your program should warn the user in a message box and not save the scores.
• A button to display the two finalists. Remember this button could be pressed any time to display the
two finalists. (Logically after results of at least one game is entered).
• A place /or places to display the two finalists.
• A button to exit your program.
Game Entry interface options:
Option 1
o Have text boxes for the names and scores where the user will type in the names of the teams
and their scores manually. In this case, only entries that match names of teams participating
in the tournament should be accepted.
Option2
o Have option buttons for team names and text boxes for the scores.

Recommended Answers

All 7 Replies

i really need it by 2moro!!! pliz help

No one here is going to supply you with the code without any effort from your side.

You need to hire a professional develop to get it done your you, and you need to pay the professional.

thax for nothing!! its a freaken assignment for school!!!!!! just a few glitches

At least try to do it by yourself and when you have some code we can help you to correct it, i don't think someone is going to do all the project of your school for you and for free, it is not a good idea for you (if you are a computer science or engineering student) not lo learn this by yourself.

If you dont study, read books, read code on internet to be a good programmer. What are you doing with your life?

Then why don't you tell us what specifically you are having problems with?

<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{90F06C52-210D-480A-88CB-D4075DD7B99A}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>WinExe</OutputType>
<MyType>WindowsForms</MyType>
<RootNamespace>Assign1s11073920</RootNamespace>
<AssemblyName>Assign1s11073920</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug\</OutputPath>
<DebugSymbols>True</DebugSymbols>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
<DefineConstants>DEBUG=1,TRACE=1</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\Release\</OutputPath>
<DebugSymbols>False</DebugSymbols>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
<DefineConstants>TRACE=1</DefineConstants>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.VisualBasic.Targets" />
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Import Include="Microsoft.VisualBasic" />
<Import Include="System" />
<Import Include="System.Collections" />
<Import Include="System.Collections.Generic" />
<Import Include="System.Diagnostics" />
<Import Include="System.Drawing" />
<Import Include="System.Windows.Forms" />
<Compile Include="AssemblyInfo.vb" />
<Compile Include="MainForm.Designer.vb">
<DependentUpon>MainForm.vb</DependentUpon>
</Compile>
<Compile Include="MainForm.vb" />
<Compile Include="Program.vb" />
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.vb</DependentUpon>
</EmbeddedResource>
</ItemGroup>
</Project>

commented: This user is not willing to put any effort forward in either doing the assignment or formulating a clear question. -1
commented: Can you at least recognise VB code? -1
commented: this is the code you have ? -3
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.