コード例 #1
0
        private void buttonViewScoresByTeam_Click(object sender, EventArgs e)
        {
            //Generates a CSV file with all the scores per team and displays it in Excel (or other default)
            CSVHandlers h = new CSVHandlers();

            h.buildAndOpenScoresByTeamCSV(g_selectedEvent);
        }
コード例 #2
0
        private void buttonViewTeamStandings_Click(object sender, EventArgs e)
        {
            CSVHandlers h = new CSVHandlers();

            h.buildAndOpenTeamResultsCSV(g_selectedEvent);
        }
コード例 #3
0
        //Generates a CSV file with scores per player and displays it in Excel (or other default)
        private void buttonViewScoresByPlayer_Click(object sender, EventArgs e)
        {
            CSVHandlers h = new CSVHandlers();

            h.buildAndOpenScoresByPlayerCSV(g_selectedEvent);
        }
コード例 #4
0
        //Called on user click View Rounds - Generates a CSV file with all the
        // round and group assignments, then displays it in Excel (or other default)
        private void buttonViewRounds_Click(object sender, EventArgs e)
        {
            CSVHandlers h = new CSVHandlers();

            h.buildAndOpenRoundsCSV(g_selectedEvent);
        }