Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C#: I am ran into an error and I do not know how to fix. Please help me resolve it. Below is the code and

C#: I am ran 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 & Assignment.

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); }

string temp;

temp = winnersFile.ReadLine();

while (temp != null) { champList.Add(temp); temp = winnersFile.ReadLine(); i++; } }

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

int j = 0; int count = 0;

while (j

j++; }

MessageBox.Show(reader + "Won" + count + "times."); } } }

Error:

image text in transcribed

Design:

image text in transcribed

Assignment:

image text in transcribed

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

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

The Accidental Data Scientist

Authors: Amy Affelt

1st Edition

1573877077, 9781573877077

More Books

Students also viewed these Databases questions

Question

LO2 Explain the nature of the psychological contract.

Answered: 1 week ago