Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Above is the assignment that I have been working on. I am running into an error and I do not know how to fix. Please

image text in transcribed

Above is the assignment that I have been working on. I am running into an error and I do not know how to fix. Please help me resolve it. Below is the code and the screenshots of Error & Design.

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.IO;

namespace SinghAjayProgram07 { public partial class worldSeriesChampions : Form { public worldSeriesChampions() { InitializeComponent(); }

List champList = new List();

int i = 0;

private void worldSeriesChampions_Load(object sender, EventArgs e) { StreamReader teamsFile = File.OpenText("Teams.txt");

StreamReader winnersFile = File.OpenText("WorldSeriesWinners.txt");

string reader;

while ((reader = teamsFile.ReadLine()) != null) { teamsListBox.Items.Add(reader); }

while ((champList[i] = winnersFile.ReadLine()) != null) { i++; } }

private void teamsListBox_SelectedIndexChanged(object sender, EventArgs e) { string reader = teamsListBox.SelectedItem.ToString();

int j = 0; int count = 0;

while (j

j++; }

resultTextBox.Text = (reader + "Won" + count + "times."); } } }

image text in transcribed

image text in transcribed

World Series Champions In the Chap07 folder of the Student Sample Programs, you will find the following files: Teams.txt-This file contains a list of several Major League baseball teams in alphabetical order. Each team listed in the file has won the World Series at least once. . WorldSeriesWinners.txt-This file contains a chronological list of the World Series, winning teams from 1903 through 2012(The first line in the file is the name of the team that won in 1903. and the last line is the name of the team that won in 2012. Note that the World Series was not played in 1904 or 1994.) Create an application that displays the contents of the Teams.txt file in a ListBox control. When the user selects a team in the ListBox, the application should display the number of times that team has won the World Series in the time period from 1903 through 2012. TIP: Read the contents of the WorldSeriesWinners.txt file into a List or an array. When the user selects a team, an algorithm should step through the list or array counting the number of times the selected team appears. Diagnostics session: 0 scconds 20 21 List champListnew List int i e; private void worldSeriesChampions Load object sender, EventArgs e) Events Process Memory 26 StreanReader teamsFileFile.OpenText("Teons.txt); StreanReader winner File File.OpenText("WorldSeriesWir string reader while ((reader - teansFile.Readine()) - null) ndex was out of rarige. 30 31 Must be non-negatve and less than the size of the collection. arameter name: index CPU 1% of all processors) 35 36 37 View Details Copy Details b Exception Settings teansListBox.Itens Add(reader ummary Fvents Memary Usage CPULIsage while ((champList ilwinnersFile.ReadLine())- null) 8 0how Events (1 of 1 39 Memory Usage Take 5napshot CPU Usage private void teanzListBox SelectedIndexChanged(object sender, EventArgs c) Recond CPU Profile 100 % Locals X Call Slack Value Type Index was oul of rarige. Must be non-negalive and less Lhan the.. Systenm Argumerlou External Codel this sender b-team sFile a reacier SinghAjayProgramor.worldserieschampions, Text: World Series object SinghAjayP.. System.EventArgs External Codel SinghAjayPrograi7.exelSinghjay Pregram.Main Line 19 winnersFile System.IoStreamRe. tring Watch 1 Call Stack Exceplion Settings Immediale Window loading symbolls for Si Ln 38 Cal 13 Ch 13 t Add to Scurce Control World Series Champions List of World Series Champions Click on any team to find out how many times it has won World Series Championship teamsListBox Exit

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Understanding Oracle APEX 5 Application Development

Authors: Edward Sciore

2nd Edition

1484209893, 9781484209899

Students also viewed these Databases questions