Example #1
0
        private void BtnMannschaftenExp_Click(object sender, EventArgs e)
        {
            string filename = ClsDialog.Save(ClsFileExtentions.Mannschaften);

            ClsMannschaftenImpExp.ExportToFile(filename);
        }
Example #2
0
        private void BtnMannschaftenImp_Click(object sender, EventArgs e)
        {
            string filename = ClsDialog.Open(ClsFileExtentions.Tabellen);

            ClsMannschaftenImpExp.ImportFromFile(filename);
        }
Example #3
0
        private void BtnTabellenExp_Click(object sender, EventArgs e)
        {
            string filename = ClsDialog.Save(ClsFileExtentions.Tabellen);

            ClsTabellendarstellungImpExp.ExportToFile(filename);
        }