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(); }
void LoadSettings() { BFFmain.FileName = Properties.Settings.Default.FileMain; BFFhtml.FileName = Properties.Settings.Default.FileHTML; HTMLdocument.ReloadFormat(Properties.Settings.Default.FileHTML); }
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())); }
void DisplayGeneratedDay() { WEBnewgames.DocumentText = HTMLdocument.GenerateDay(generatedDay, HTMLmode.ConfirmMatches); }