summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2018-10-11 19:39:13 +0200
committeremkael <emkael@tlen.pl>2018-10-11 19:39:13 +0200
commitdab3f079ae0d51da0064bb06089f950ee977935e (patch)
treeb78de1068e5168433101efc51a34af1b554c8143
parent9b7bdf9d024b88b956d9601ca39307914708929b (diff)
Disabling hand records if unsafe PIN is set
-rw-r--r--Aktywator/MainForm.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Aktywator/MainForm.cs b/Aktywator/MainForm.cs
index 3a5b69b..2752b31 100644
--- a/Aktywator/MainForm.cs
+++ b/Aktywator/MainForm.cs
@@ -688,12 +688,15 @@ namespace Aktywator
this.lPINWarning.Visible = true;
if (explicitWarning)
{
- MessageBox.Show("Próbujesz ustawić PIN, który jest łatwy do przewidzenia przez zawodników.\n\nMam nadzieję, że wiesz, co robisz!", "Przewidywalny PIN!", MessageBoxButtons.OK, MessageBoxIcon.Warning);
+ MessageBox.Show("Próbujesz ustawić PIN, który jest łatwy do przewidzenia przez zawodników.\n\nMam nadzieję, że wiesz, co robisz!\n\nNiestety, nie możemy pozwolić Ci na wgranie do BWSa rozkładów.", "Przewidywalny PIN!", MessageBoxButtons.OK, MessageBoxIcon.Warning);
+ this.bws.clearHandRecords();
+ this.tabControl1.TabPages[2].Enabled = false;
}
}
else
{
this.lPINWarning.Visible = false;
+ this.tabControl1.TabPages[2].Enabled = true;
}
}
catch (FormatException e)