diff --git a/RateAppSource/RateController/Classes/clsSectionControl.cs b/RateAppSource/RateController/Classes/clsSectionControl.cs index 8909414a..3adecc85 100644 --- a/RateAppSource/RateController/Classes/clsSectionControl.cs +++ b/RateAppSource/RateController/Classes/clsSectionControl.cs @@ -158,7 +158,7 @@ void SetPriming() { if (MasterOnSB) { - if (((DateTime.Now - OnFirstPressed).TotalSeconds > 2) && mf.SwitchBox.SwitchIsOn(SwIDs.MasterOn)) + if (((DateTime.Now - OnFirstPressed).TotalSeconds > mf.PrimedDelay) && mf.SwitchBox.SwitchIsOn(SwIDs.MasterOn)) { // priming mode TimedOn = true; diff --git a/RateAppSource/RateController/Classes/clsTools.cs b/RateAppSource/RateController/Classes/clsTools.cs index 35864999..f582f1d6 100644 --- a/RateAppSource/RateController/Classes/clsTools.cs +++ b/RateAppSource/RateController/Classes/clsTools.cs @@ -39,7 +39,7 @@ public class clsTools private string cPropertiesApp; private string cPropertiesFile; private string cSettingsDir; - private string cVersionDate = "05-Feb-2024"; + private string cVersionDate = "09-Feb-2024"; private FormStart mf; public clsTools(FormStart CallingForm) diff --git a/RateAppSource/RateController/FormStart.cs b/RateAppSource/RateController/FormStart.cs index 17eb99fe..771cc035 100644 --- a/RateAppSource/RateController/FormStart.cs +++ b/RateAppSource/RateController/FormStart.cs @@ -60,6 +60,9 @@ public partial class FormStart : Form public clsVirtualSwitchBox vSwitchBox; public string WiFiIP; public clsZones Zones; + private int cPrimedDelay = 2; + + private int cDefaultProduct = 0; private byte cPressureToShowID; private bool cShowPressure; @@ -341,6 +344,7 @@ public void LoadSettings() if (byte.TryParse(Tls.LoadProperty("PressureID"), out byte ID)) cPressureToShowID = ID; if (bool.TryParse(Tls.LoadProperty("ShowQuantityRemaining"), out bool QR)) ShowQuantityRemaining = QR; if (bool.TryParse(Tls.LoadProperty("ShowCoverageRemaining"), out bool CR)) ShowCoverageRemaining = CR; + if (int.TryParse(Tls.LoadProperty("PrimedDelay"), out int PD)) cPrimedDelay = PD; if (double.TryParse(Tls.LoadProperty("SimSpeed"), out double Spd)) { @@ -769,6 +773,14 @@ private void FormatDisplay() Tls.WriteErrorLog("FormStart/FormatDisplay: " + ex.Message); } } + public int PrimedDelay + { + get { return cPrimedDelay; } + set + { + if (value >= 0 && value < 9) { cPrimedDelay = value; } + } + } private void FormRateControl_FormClosed(object sender, FormClosedEventArgs e) { @@ -786,6 +798,7 @@ private void FormRateControl_FormClosed(object sender, FormClosedEventArgs e) Tls.SaveProperty("ShowQuantityRemaining", ShowQuantityRemaining.ToString()); Tls.SaveProperty("ShowCoverageRemaining", ShowCoverageRemaining.ToString()); Tls.SaveProperty("PrimedTime", cPrimedTime.ToString()); + Tls.SaveProperty("PrimedDelay",cPrimedDelay.ToString()); UDPaog.Close(); UDPmodules.Close(); diff --git a/RateAppSource/RateController/frmPrimedStart.Designer.cs b/RateAppSource/RateController/frmPrimedStart.Designer.cs index 25d1c6e9..23a9af65 100644 --- a/RateAppSource/RateController/frmPrimedStart.Designer.cs +++ b/RateAppSource/RateController/frmPrimedStart.Designer.cs @@ -37,12 +37,15 @@ private void InitializeComponent() this.btnCancel = new System.Windows.Forms.Button(); this.btnOK = new System.Windows.Forms.Button(); this.label2 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.tbDelay = new System.Windows.Forms.TextBox(); + this.label4 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // lbSpeed // this.lbSpeed.ForeColor = System.Drawing.Color.DarkGreen; - this.lbSpeed.Location = new System.Drawing.Point(170, 46); + this.lbSpeed.Location = new System.Drawing.Point(204, 42); this.lbSpeed.Name = "lbSpeed"; this.lbSpeed.Size = new System.Drawing.Size(57, 24); this.lbSpeed.TabIndex = 317; @@ -52,7 +55,7 @@ private void InitializeComponent() // tbSpeed // this.tbSpeed.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.tbSpeed.Location = new System.Drawing.Point(99, 43); + this.tbSpeed.Location = new System.Drawing.Point(133, 39); this.tbSpeed.MaxLength = 8; this.tbSpeed.Name = "tbSpeed"; this.tbSpeed.Size = new System.Drawing.Size(65, 30); @@ -67,7 +70,7 @@ private void InitializeComponent() // this.label27.AutoSize = true; this.label27.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label27.Location = new System.Drawing.Point(10, 43); + this.label27.Location = new System.Drawing.Point(10, 42); this.label27.Name = "label27"; this.label27.Size = new System.Drawing.Size(63, 23); this.label27.TabIndex = 315; @@ -86,7 +89,7 @@ private void InitializeComponent() // tbTime // this.tbTime.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.tbTime.Location = new System.Drawing.Point(99, 6); + this.tbTime.Location = new System.Drawing.Point(133, 3); this.tbTime.MaxLength = 8; this.tbTime.Name = "tbTime"; this.tbTime.Size = new System.Drawing.Size(65, 30); @@ -107,7 +110,7 @@ private void InitializeComponent() this.btnCancel.Font = new System.Drawing.Font("Tahoma", 14.25F); this.btnCancel.Image = global::RateController.Properties.Resources.Cancel64; this.btnCancel.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnCancel.Location = new System.Drawing.Point(108, 86); + this.btnCancel.Location = new System.Drawing.Point(126, 114); this.btnCancel.Margin = new System.Windows.Forms.Padding(6); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(72, 72); @@ -124,7 +127,7 @@ private void InitializeComponent() this.btnOK.Font = new System.Drawing.Font("Tahoma", 14.25F); this.btnOK.Image = global::RateController.Properties.Resources.OK; this.btnOK.ImeMode = System.Windows.Forms.ImeMode.NoControl; - this.btnOK.Location = new System.Drawing.Point(187, 86); + this.btnOK.Location = new System.Drawing.Point(205, 114); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(72, 72); this.btnOK.TabIndex = 0; @@ -135,18 +138,55 @@ private void InitializeComponent() // label2 // this.label2.ForeColor = System.Drawing.Color.DarkGreen; - this.label2.Location = new System.Drawing.Point(170, 12); + this.label2.Location = new System.Drawing.Point(204, 9); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(89, 24); this.label2.TabIndex = 322; this.label2.Text = "seconds"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // + // label3 + // + this.label3.ForeColor = System.Drawing.Color.DarkGreen; + this.label3.Location = new System.Drawing.Point(204, 78); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(89, 24); + this.label3.TabIndex = 325; + this.label3.Text = "seconds"; + this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // tbDelay + // + this.tbDelay.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.tbDelay.Location = new System.Drawing.Point(133, 75); + this.tbDelay.MaxLength = 8; + this.tbDelay.Name = "tbDelay"; + this.tbDelay.Size = new System.Drawing.Size(65, 30); + this.tbDelay.TabIndex = 324; + this.tbDelay.Text = "5.0"; + this.tbDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.tbDelay.TextChanged += new System.EventHandler(this.tbSpeed_TextChanged); + this.tbDelay.Enter += new System.EventHandler(this.tbDelay_Enter); + this.tbDelay.Validating += new System.ComponentModel.CancelEventHandler(this.tbDelay_Validating); + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label4.Location = new System.Drawing.Point(10, 78); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(117, 23); + this.label4.TabIndex = 323; + this.label4.Text = "Switch Delay"; + // // frmPrimedStart // this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(267, 160); + this.ClientSize = new System.Drawing.Size(288, 189); + this.Controls.Add(this.label3); + this.Controls.Add(this.tbDelay); + this.Controls.Add(this.label4); this.Controls.Add(this.label2); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnOK); @@ -179,5 +219,8 @@ private void InitializeComponent() private System.Windows.Forms.Button btnCancel; private System.Windows.Forms.Button btnOK; private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.TextBox tbDelay; + private System.Windows.Forms.Label label4; } } \ No newline at end of file diff --git a/RateAppSource/RateController/frmPrimedStart.cs b/RateAppSource/RateController/frmPrimedStart.cs index e951c875..c521ef86 100644 --- a/RateAppSource/RateController/frmPrimedStart.cs +++ b/RateAppSource/RateController/frmPrimedStart.cs @@ -1,12 +1,7 @@ using AgOpenGPS; using System; -using System.Collections.Generic; using System.ComponentModel; -using System.Data; using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using System.Windows.Forms; namespace RateController @@ -23,6 +18,49 @@ public frmPrimedStart(FormStart CalledFrom) mf = CalledFrom; } + private void btnOK_Click(object sender, EventArgs e) + { + try + { + if (!FormEdited) + { + this.Close(); + } + else + { + // save data + + if (double.TryParse(tbSpeed.Text, out double Speed)) + { + mf.Tls.SaveProperty("CalSpeed", Speed.ToString()); + mf.SimSpeed = Speed; + } + + if (double.TryParse(tbTime.Text, out double Time)) + { + mf.Tls.SaveProperty("PrimedTime", Time.ToString()); + mf.PrimedTime = Time; + } + + if (int.TryParse(tbDelay.Text, out int Delay)) mf.PrimedDelay = Delay; + + SetButtons(false); + } + } + catch (Exception ex) + { + mf.Tls.ShowHelp(ex.Message, this.Text, 3000, true); + } + } + + private void frmPrimedStart_FormClosed(object sender, FormClosedEventArgs e) + { + if (this.WindowState == FormWindowState.Normal) + { + mf.Tls.SaveFormData(this); + } + } + private void frmPrimedStart_Load(object sender, EventArgs e) { mf.Tls.LoadFormData(this); @@ -50,23 +88,45 @@ private void frmPrimedStart_Load(object sender, EventArgs e) tbTime.Text = Time.ToString("N0"); } + tbDelay.Text = mf.PrimedDelay.ToString("N0"); + + SetDayMode(); + Initializing = false; } + + private void SetButtons(bool Edited = false) + { + if (!Initializing) + { + if (Edited) + { + btnCancel.Enabled = true; + btnOK.Image = Properties.Resources.Save; + } + else + { + btnCancel.Enabled = false; + btnOK.Image = Properties.Resources.OK; + btnOK.Enabled = true; + } + FormEdited = Edited; + } + } + private void SetDayMode() { if (Properties.Settings.Default.IsDay) { this.BackColor = Properties.Settings.Default.DayColour; - foreach (Control c in this.Controls) { - c.ForeColor = (Color)c.Tag; + c.ForeColor = Color.Black; } } else { this.BackColor = Properties.Settings.Default.NightColour; - foreach (Control c in this.Controls) { c.ForeColor = Color.White; @@ -74,62 +134,28 @@ private void SetDayMode() } } - private void frmPrimedStart_FormClosed(object sender, FormClosedEventArgs e) + private void tbDelay_Enter(object sender, EventArgs e) { - if (this.WindowState == FormWindowState.Normal) - { - mf.Tls.SaveFormData(this); - } - } - - private void btnOK_Click(object sender, EventArgs e) - { - try + double tempD; + double.TryParse(tbDelay.Text, out tempD); + using (var form = new FormNumeric(0, 8, tempD)) { - if (!FormEdited) + var result = form.ShowDialog(); + if (result == DialogResult.OK) { - this.Close(); - } - else - { - // save data - - if (double.TryParse(tbSpeed.Text, out double Speed)) - { - mf.Tls.SaveProperty("CalSpeed", Speed.ToString()); - mf.SimSpeed = Speed; - } - - if (double.TryParse(tbTime.Text, out double Time)) - { - mf.Tls.SaveProperty("PrimedTime", Time.ToString()); - mf.PrimedTime= Time; - } - - SetButtons(false); + tbDelay.Text = form.ReturnValue.ToString("N0"); } } - catch (Exception ex) - { - mf.Tls.ShowHelp(ex.Message, this.Text, 3000, true); - } } - private void SetButtons(bool Edited = false) + + private void tbDelay_Validating(object sender, CancelEventArgs e) { - if (!Initializing) + double tempD; + double.TryParse(tbDelay.Text, out tempD); + if (tempD < 0 || tempD > 8) { - if (Edited) - { - btnCancel.Enabled = true; - btnOK.Image = Properties.Resources.Save; - } - else - { - btnCancel.Enabled = false; - btnOK.Image = Properties.Resources.OK; - btnOK.Enabled = true; - } - FormEdited = Edited; + System.Media.SystemSounds.Exclamation.Play(); + e.Cancel = true; } } @@ -193,4 +219,4 @@ private void tbTime_Validating(object sender, CancelEventArgs e) } } } -} +} \ No newline at end of file diff --git a/RateAppSource/RateController/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/RateAppSource/RateController/obj/Debug/DesignTimeResolveAssemblyReferences.cache index 4382aa9f..4480aee6 100644 Binary files a/RateAppSource/RateController/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/RateAppSource/RateController/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/RateAppSource/RateController/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/RateAppSource/RateController/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index b5a3b9bb..fac10714 100644 Binary files a/RateAppSource/RateController/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/RateAppSource/RateController/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/RateAppSource/RateController/obj/Debug/RateController.csproj.FileListAbsolute.txt b/RateAppSource/RateController/obj/Debug/RateController.csproj.FileListAbsolute.txt index 1290ca31..0e907085 100644 --- a/RateAppSource/RateController/obj/Debug/RateController.csproj.FileListAbsolute.txt +++ b/RateAppSource/RateController/obj/Debug/RateController.csproj.FileListAbsolute.txt @@ -2315,3 +2315,52 @@ C:\Users\CoxDa\Documents\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Deb C:\Users\CoxDa\Documents\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.exe C:\Users\CoxDa\Documents\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.pdb C:\Users\CoxDa\Documents\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.frmPrimedStart.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateControllerApp\RateController.exe.config +D:\MyDocs\GitHub\SK21\AOG_RC\RateControllerApp\RateController.exe +D:\MyDocs\GitHub\SK21\AOG_RC\RateControllerApp\RateController.pdb +D:\MyDocs\GitHub\SK21\AOG_RC\RateControllerApp\de\RateController.resources.dll +D:\MyDocs\GitHub\SK21\AOG_RC\RateControllerApp\fr\RateController.resources.dll +D:\MyDocs\GitHub\SK21\AOG_RC\RateControllerApp\hu\RateController.resources.dll +D:\MyDocs\GitHub\SK21\AOG_RC\RateControllerApp\nl\RateController.resources.dll +D:\MyDocs\GitHub\SK21\AOG_RC\RateControllerApp\pl\RateController.resources.dll +D:\MyDocs\GitHub\SK21\AOG_RC\RateControllerApp\ru\RateController.resources.dll +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.csproj.AssemblyReference.cache +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.csproj.SuggestedBindingRedirects.cache +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\AgOpenGPS.FormNumeric.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.FormPIDGraph.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.FormPressure.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.FormSettings.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.FormStart.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.frmCalibrate.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.frmComm.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.frmHelp.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.frmLargeScreen.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.frmModule.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.frmModuleConfig.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.frmMsgBox.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.frmPins.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.frmPressureDisplay.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.frmPrimedStart.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.frmRelays.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.frmSections.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.frmSwitches.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.Lang.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.Properties.Resources.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.RCRestore.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.Lang.de.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.Lang.fr.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.Lang.hu.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.Lang.nl.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.Lang.pl.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.Lang.ru.resources +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.csproj.GenerateResource.cache +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.csproj.CoreCompileInputs.cache +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\de\RateController.resources.dll +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\fr\RateController.resources.dll +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\hu\RateController.resources.dll +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\nl\RateController.resources.dll +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\pl\RateController.resources.dll +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\ru\RateController.resources.dll +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.csproj.CopyComplete +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.exe +D:\MyDocs\GitHub\SK21\AOG_RC\RateAppSource\RateController\obj\Debug\RateController.pdb diff --git a/RateAppSource/RateController/obj/Debug/RateController.csproj.GenerateResource.cache b/RateAppSource/RateController/obj/Debug/RateController.csproj.GenerateResource.cache index 0e638736..f91d7bca 100644 Binary files a/RateAppSource/RateController/obj/Debug/RateController.csproj.GenerateResource.cache and b/RateAppSource/RateController/obj/Debug/RateController.csproj.GenerateResource.cache differ diff --git a/RateAppSource/RateController/obj/Debug/RateController.exe b/RateAppSource/RateController/obj/Debug/RateController.exe index aae38668..3bbff2f1 100644 Binary files a/RateAppSource/RateController/obj/Debug/RateController.exe and b/RateAppSource/RateController/obj/Debug/RateController.exe differ diff --git a/RateAppSource/RateController/obj/Debug/RateController.pdb b/RateAppSource/RateController/obj/Debug/RateController.pdb index 5c1118fc..118b4a40 100644 Binary files a/RateAppSource/RateController/obj/Debug/RateController.pdb and b/RateAppSource/RateController/obj/Debug/RateController.pdb differ diff --git a/RateAppSource/RateController/obj/Debug/de/RateController.resources.dll b/RateAppSource/RateController/obj/Debug/de/RateController.resources.dll index 633e1590..60691ff3 100644 Binary files a/RateAppSource/RateController/obj/Debug/de/RateController.resources.dll and b/RateAppSource/RateController/obj/Debug/de/RateController.resources.dll differ diff --git a/RateAppSource/RateController/obj/Debug/nl/RateController.resources.dll b/RateAppSource/RateController/obj/Debug/nl/RateController.resources.dll index d94612c5..2bbfd682 100644 Binary files a/RateAppSource/RateController/obj/Debug/nl/RateController.resources.dll and b/RateAppSource/RateController/obj/Debug/nl/RateController.resources.dll differ diff --git a/RateControllerApp/RateController.exe b/RateControllerApp/RateController.exe index aae38668..3bbff2f1 100644 Binary files a/RateControllerApp/RateController.exe and b/RateControllerApp/RateController.exe differ diff --git a/RateControllerApp/de/RateController.resources.dll b/RateControllerApp/de/RateController.resources.dll index 633e1590..60691ff3 100644 Binary files a/RateControllerApp/de/RateController.resources.dll and b/RateControllerApp/de/RateController.resources.dll differ diff --git a/RateControllerApp/fr/RateController.resources.dll b/RateControllerApp/fr/RateController.resources.dll index 6d2ae033..75afd8d4 100644 Binary files a/RateControllerApp/fr/RateController.resources.dll and b/RateControllerApp/fr/RateController.resources.dll differ diff --git a/RateControllerApp/hu/RateController.resources.dll b/RateControllerApp/hu/RateController.resources.dll index abdfdeb4..3fac1152 100644 Binary files a/RateControllerApp/hu/RateController.resources.dll and b/RateControllerApp/hu/RateController.resources.dll differ diff --git a/RateControllerApp/nl/RateController.resources.dll b/RateControllerApp/nl/RateController.resources.dll index d94612c5..2bbfd682 100644 Binary files a/RateControllerApp/nl/RateController.resources.dll and b/RateControllerApp/nl/RateController.resources.dll differ diff --git a/RateControllerApp/pl/RateController.resources.dll b/RateControllerApp/pl/RateController.resources.dll index 45af6bcb..73ce9799 100644 Binary files a/RateControllerApp/pl/RateController.resources.dll and b/RateControllerApp/pl/RateController.resources.dll differ diff --git a/RateControllerApp/ru/RateController.resources.dll b/RateControllerApp/ru/RateController.resources.dll index a1c768cb..ff4a4303 100644 Binary files a/RateControllerApp/ru/RateController.resources.dll and b/RateControllerApp/ru/RateController.resources.dll differ