diff --git a/RateAppSource/RateController/Resources/Pins.PNG b/RateAppSource/RateController/Resources/Pins.PNG index a811bf7f..a42ead87 100644 Binary files a/RateAppSource/RateController/Resources/Pins.PNG and b/RateAppSource/RateController/Resources/Pins.PNG differ diff --git a/RateAppSource/RateController/frmModule.Designer.cs b/RateAppSource/RateController/frmModule.Designer.cs index 6829cc97..6a6421e0 100644 --- a/RateAppSource/RateController/frmModule.Designer.cs +++ b/RateAppSource/RateController/frmModule.Designer.cs @@ -477,6 +477,7 @@ private void InitializeComponent() this.btnSave.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.btnSave.UseVisualStyleBackColor = false; this.btnSave.Click += new System.EventHandler(this.btnSave_Click); + this.btnSave.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.btnSave_HelpRequested); // // frmModule // diff --git a/RateAppSource/RateController/frmModule.cs b/RateAppSource/RateController/frmModule.cs index a2f6da5b..1a6b3bbd 100644 --- a/RateAppSource/RateController/frmModule.cs +++ b/RateAppSource/RateController/frmModule.cs @@ -34,10 +34,8 @@ private void btnSave_Click(object sender, EventArgs e) { try { - File.WriteAllText(mf.Tls.FilesDir() + "\\Ethernet.txt", tbEthernet.Text); - File.WriteAllText(mf.Tls.FilesDir() + "\\Serial.txt", tbSerial.Text); - File.WriteAllText(mf.Tls.FilesDir() + "\\Activity.txt", tbActivity.Text); - File.WriteAllText(mf.Tls.FilesDir() + "\\Errors.txt", tbErrors.Text); + File.WriteAllText(mf.Tls.FilesDir() + "\\Ethernet Log.txt", tbEthernet.Text); + File.WriteAllText(mf.Tls.FilesDir() + "\\Serial Log.txt", tbSerial.Text); mf.Tls.ShowHelp("File saved.", "Save", 10000); } catch (Exception ex) @@ -46,6 +44,14 @@ private void btnSave_Click(object sender, EventArgs e) } } + private void btnSave_HelpRequested(object sender, HelpEventArgs hlpevent) + { + string Message = "Save information to file."; + + mf.Tls.ShowHelp(Message, "Save"); + hlpevent.Handled = true; + } + private void btnStart_Click(object sender, EventArgs e) { if (FreezeUpdate) @@ -142,8 +148,6 @@ private void UpdateLogs() tbErrors.Text = mf.Tls.ReadTextFile("Error Log.txt"); tbErrors.Select(tbErrors.Text.Length, 0); tbErrors.ScrollToCaret(); - //tbErrors.SelectionStart= tbErrors.Text.Length; - //tbErrors.SelectionLength = 0; } } } \ No newline at end of file diff --git a/RateAppSource/RateController/frmPins.Designer.cs b/RateAppSource/RateController/frmPins.Designer.cs index 24cddc41..da6ab7ef 100644 --- a/RateAppSource/RateController/frmPins.Designer.cs +++ b/RateAppSource/RateController/frmPins.Designer.cs @@ -39,7 +39,7 @@ private void InitializeComponent() this.pictureBox1.Image = global::RateController.Properties.Resources.Pins; this.pictureBox1.Location = new System.Drawing.Point(11, 9); this.pictureBox1.Name = "pictureBox1"; - this.pictureBox1.Size = new System.Drawing.Size(753, 544); + this.pictureBox1.Size = new System.Drawing.Size(600, 495); this.pictureBox1.TabIndex = 0; this.pictureBox1.TabStop = false; // @@ -47,7 +47,7 @@ private void InitializeComponent() // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(766, 555); + this.ClientSize = new System.Drawing.Size(611, 504); this.Controls.Add(this.pictureBox1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); diff --git a/RateAppSource/RateController/obj/Debug/RateController.Properties.Resources.resources b/RateAppSource/RateController/obj/Debug/RateController.Properties.Resources.resources index 4435dd7e..0ae4e3ae 100644 Binary files a/RateAppSource/RateController/obj/Debug/RateController.Properties.Resources.resources and b/RateAppSource/RateController/obj/Debug/RateController.Properties.Resources.resources differ diff --git a/RateAppSource/RateController/obj/Debug/RateController.csproj.GenerateResource.cache b/RateAppSource/RateController/obj/Debug/RateController.csproj.GenerateResource.cache index 13475f88..fe3fe440 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 6b9e589c..fd0a9607 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 e3fd5e40..7b4834b3 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 9ef3ff66..543264b6 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 b5c2cc4b..200f800f 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 6b9e589c..fd0a9607 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 9ef3ff66..543264b6 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 23aaccb0..a63a92ff 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 8b1b8ef8..369e809c 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 b5c2cc4b..200f800f 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 d2b90938..fe44f345 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 987dcecf..18e23ab8 100644 Binary files a/RateControllerApp/ru/RateController.resources.dll and b/RateControllerApp/ru/RateController.resources.dll differ