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

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

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

            ClsTabellendarstellungImpExp.ExportToFile(filename);
        }