Ejemplo n.º 1
0
 public Form1()
 {
     Training_rankings.StartBox      start_BOX = new Training_rankings.StartBox();
     Training_rankings.Communication Com       = new Training_rankings.Communication();
     InitializeComponent();
     richTextBox2.Text = DateTime.Now.ToString();
     richTextBox1.Text = Com.getfencerName;
 }
Ejemplo n.º 2
0
        private void Score_Text()
        {
            Training_rankings.Communication Komm = new Training_rankings.Communication();
            string Name = richTextBox1.Text.ToString();
            string wins = textBox1.Text;
            float  Wins = 0;

            if (wins != "")
            {
                Wins = float.Parse(wins);
            }
            else
            {
                Wins = 0;
            }
            float  Matches = 0;
            string matches = textBox2.Text;

            if (matches != "")
            {
                Matches = float.Parse(matches);
            }
            else
            {
                Matches = 0;
            }

            string defeats = textBox3.Text;
            float  Defeats = 0;

            if (defeats != "")
            {
                Defeats = float.Parse(defeats);
            }
            else
            {
                Defeats = 0;
            }
            if (Matches != Wins + Defeats)
            {
                MessageBox.Show("Type your wins losses and matches in again.");
            }
            else
            {
                float Score = ((Wins * 10) - (Defeats * -2)) / Matches;
                textBox4.Text = Score.ToString();
                MessageBox.Show(Name + " here is your Score: " + Score.ToString());
            }
        }