Example #1
0
        private void buttonPrintList_Click(object sender, EventArgs e)
        {
            PdfManager pdf = new PdfManager();

            Int32 idTorneo     = (int)comboBox1.SelectedValue;
            Int32 idDisciplina = (int)comboBox2.SelectedValue;

            pdf.StampaAtletiTorneo(SqlDal_Tournaments.GetAtletiTorneoVsDisciplina(idTorneo, idDisciplina), comboBox1.Text, comboBox2.Text);
        }