Esempio n. 1
0
 private void BFFhtml_FileNameChanged(object sender, EventArgs e)
 {
     Properties.Settings.Default.FileHTML = BFFhtml.FileName;
     Properties.Settings.Default.Save();
     HTMLdocument.ReloadFormat(Properties.Settings.Default.FileHTML);
     HTMLformatedChanged();
 }
Esempio n. 2
0
        void LoadSettings()
        {
            BFFmain.FileName = Properties.Settings.Default.FileMain;
            BFFhtml.FileName = Properties.Settings.Default.FileHTML;

            HTMLdocument.ReloadFormat(Properties.Settings.Default.FileHTML);
        }
Esempio n. 3
0
        void DisplayFixedMatches()
        {
            if (fixedMatchesDay == null)
            {
                WEBfixmatches.DocumentText = "Press \"Add Match\" to get started";
            }
            else
            {
                WEBfixmatches.DocumentText = HTMLdocument.GenerateDay(fixedMatchesDay, HTMLmode.FixMatches);
            }

            SCBfixedmatchplayers.SetAllItems(players.Except(fixedMatchesDay.Players()));
        }
Esempio n. 4
0
 void DisplayGeneratedDay()
 {
     WEBnewgames.DocumentText = HTMLdocument.GenerateDay(generatedDay, HTMLmode.ConfirmMatches);
 }