Example #1
0
        private void LoadRacerData()
        {
            try
            {
                // Set our Racers
                this.txtCar1.Text = string.Empty;
                this.txtCar2.Text = _activeRace.Racer1.Racer.GetScoreboardDisplay();
                this.txtCar3.Text = _activeRace.Racer2.Racer.GetScoreboardDisplay();
                this.txtCar4.Text = string.Empty;

                this.picLane2.Visible = this.picLane3.Visible = false;
            }
            catch (Exception)
            { }

            // Clear out the Time boxes
            this.txtTime1.Text           = this.txtTime2.Text = this.txtTime3.Text = this.txtTime4.Text = string.Empty;
            this.toolStripLabelHeat.Text = _activeRace.ToString();
        }