From d73bed3a5e57dace6215d0dafc52cf16c19db0a9 Mon Sep 17 00:00:00 2001 From: lempamo Date: Sun, 29 Oct 2017 00:50:08 -0400 Subject: making progress on bad ie6 --- Histacom2.Engine/UI/ClassicLabel.cs | 4 +- Histacom2/Histacom2.csproj | 12 +- Histacom2/OS/WinXPBad/VirusLabel.Designer.cs | 23 +- Histacom2/OS/WinXPBad/VirusLabel.cs | 16 +- Histacom2/OS/WinXPBad/WinClassicIE6Bad.Designer.cs | 377 +++++++++++++++++++++ Histacom2/OS/WinXPBad/WinClassicIE6Bad.cs | 35 ++ Histacom2/OS/WinXPBad/WinClassicIE6Bad.resx | 310 +++++++++++++++++ Histacom2/Properties/Resources.resx | 3 + Histacom2/Properties/Resources1.Designer.cs | 10 + Histacom2/Resources/WinClassic/sliveroldlace.png | Bin 0 -> 157 bytes 10 files changed, 769 insertions(+), 21 deletions(-) create mode 100644 Histacom2/OS/WinXPBad/WinClassicIE6Bad.Designer.cs create mode 100644 Histacom2/OS/WinXPBad/WinClassicIE6Bad.cs create mode 100644 Histacom2/OS/WinXPBad/WinClassicIE6Bad.resx create mode 100644 Histacom2/Resources/WinClassic/sliveroldlace.png diff --git a/Histacom2.Engine/UI/ClassicLabel.cs b/Histacom2.Engine/UI/ClassicLabel.cs index eba8dc6..60bd9b7 100644 --- a/Histacom2.Engine/UI/ClassicLabel.cs +++ b/Histacom2.Engine/UI/ClassicLabel.cs @@ -25,9 +25,11 @@ namespace Histacom2.Engine.UI base.OnPaint(e); var gfx = e.Graphics; if (BackColor != Color.Transparent) gfx.Clear(BackColor); + StringFormat sf = new StringFormat(); + sf.HotkeyPrefix = System.Drawing.Text.HotkeyPrefix.Show; gfx.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit; - gfx.DrawString(Text, Font, new SolidBrush(ForeColor), ClientRectangle); + gfx.DrawString(Text, Font, new SolidBrush(ForeColor), ClientRectangle, sf); Height = (int)gfx.MeasureString(Text, Font, ClientRectangle.Width).Height; } diff --git a/Histacom2/Histacom2.csproj b/Histacom2/Histacom2.csproj index f32a64d..5dfb148 100644 --- a/Histacom2/Histacom2.csproj +++ b/Histacom2/Histacom2.csproj @@ -355,11 +355,17 @@ - UserControl + Form VirusLabel.cs + + UserControl + + + WinClassicIE6Bad.cs + UserControl @@ -591,6 +597,9 @@ VirusLabel.cs + + WinClassicIE6Bad.cs + WinXPBad.cs Designer @@ -871,6 +880,7 @@ + diff --git a/Histacom2/OS/WinXPBad/VirusLabel.Designer.cs b/Histacom2/OS/WinXPBad/VirusLabel.Designer.cs index 1ddc93c..ec83a78 100644 --- a/Histacom2/OS/WinXPBad/VirusLabel.Designer.cs +++ b/Histacom2/OS/WinXPBad/VirusLabel.Designer.cs @@ -2,12 +2,12 @@ { partial class VirusLabel { - /// + /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; - /// + /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. @@ -20,10 +20,10 @@ base.Dispose(disposing); } - #region Component Designer generated code + #region Windows Form Designer generated code - /// - /// Required method for Designer support - do not modify + /// + /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() @@ -40,8 +40,8 @@ this.label1.ForeColor = System.Drawing.Color.PaleGreen; this.label1.Location = new System.Drawing.Point(0, 0); this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(242, 19); - this.label1.TabIndex = 0; + this.label1.Size = new System.Drawing.Size(247, 19); + this.label1.TabIndex = 1; this.label1.Text = "Welcome to the end of the internet!!!"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // @@ -54,10 +54,13 @@ // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.Black; + this.BackColor = System.Drawing.Color.Fuchsia; + this.ClientSize = new System.Drawing.Size(247, 19); this.Controls.Add(this.label1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.Name = "VirusLabel"; - this.Size = new System.Drawing.Size(242, 19); + this.Text = "VirusLabel"; + this.TransparencyKey = System.Drawing.Color.Fuchsia; this.ResumeLayout(false); } @@ -67,4 +70,4 @@ private System.Windows.Forms.Label label1; private System.Windows.Forms.Timer timer1; } -} +} \ No newline at end of file diff --git a/Histacom2/OS/WinXPBad/VirusLabel.cs b/Histacom2/OS/WinXPBad/VirusLabel.cs index e2af37a..7ab3ee1 100644 --- a/Histacom2/OS/WinXPBad/VirusLabel.cs +++ b/Histacom2/OS/WinXPBad/VirusLabel.cs @@ -1,8 +1,8 @@ using System; using System.Collections.Generic; using System.ComponentModel; -using System.Drawing; using System.Data; +using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; @@ -10,9 +10,9 @@ using System.Windows.Forms; namespace Histacom2.OS.WinXPBad { - public partial class VirusLabel : UserControl + public partial class VirusLabel : Form { - private bool white = true; + private bool light = true; public VirusLabel() { @@ -21,15 +21,13 @@ namespace Histacom2.OS.WinXPBad private void timer1_Tick(object sender, EventArgs e) { - if (white) + if (light) { label1.ForeColor = Color.Black; - white = false; - } - else - { + light = false; + } else { label1.ForeColor = Color.PaleGreen; - white = true; + light = true; } } } diff --git a/Histacom2/OS/WinXPBad/WinClassicIE6Bad.Designer.cs b/Histacom2/OS/WinXPBad/WinClassicIE6Bad.Designer.cs new file mode 100644 index 0000000..657b4ac --- /dev/null +++ b/Histacom2/OS/WinXPBad/WinClassicIE6Bad.Designer.cs @@ -0,0 +1,377 @@ +namespace Histacom2.OS.WinXPBad +{ + partial class WinClassicIE6Bad + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinClassicIE6Bad)); + this.panel1 = new System.Windows.Forms.Panel(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.menuStrip1 = new System.Windows.Forms.MenuStrip(); + this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.favoritesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.pictureBox2 = new System.Windows.Forms.PictureBox(); + this.menuStrip2 = new System.Windows.Forms.MenuStrip(); + this.backToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem(); + this.pictureBox3 = new System.Windows.Forms.PictureBox(); + this.panel2 = new System.Windows.Forms.Panel(); + this.classicLabel1 = new Histacom2.Engine.UI.ClassicLabel(); + this.comboBox1 = new System.Windows.Forms.ComboBox(); + this.panel3 = new System.Windows.Forms.Panel(); + this.label1 = new System.Windows.Forms.Label(); + this.originalTimer = new System.Windows.Forms.Timer(this.components); + this.panel1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.menuStrip1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); + this.menuStrip2.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); + this.panel2.SuspendLayout(); + this.panel3.SuspendLayout(); + this.SuspendLayout(); + // + // panel1 + // + this.panel1.Controls.Add(this.pictureBox1); + this.panel1.Controls.Add(this.menuStrip1); + this.panel1.Dock = System.Windows.Forms.DockStyle.Top; + this.panel1.Location = new System.Drawing.Point(0, 0); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(992, 22); + this.panel1.TabIndex = 0; + // + // pictureBox1 + // + this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.pictureBox1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.BackgroundImage"))); + this.pictureBox1.Location = new System.Drawing.Point(951, 0); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(41, 22); + this.pictureBox1.TabIndex = 1; + this.pictureBox1.TabStop = false; + // + // menuStrip1 + // + this.menuStrip1.AutoSize = false; + this.menuStrip1.BackgroundImage = global::Histacom2.Properties.Resources.sliveroldlace; + this.menuStrip1.Dock = System.Windows.Forms.DockStyle.None; + this.menuStrip1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.fileToolStripMenuItem, + this.editToolStripMenuItem, + this.viewToolStripMenuItem, + this.favoritesToolStripMenuItem, + this.toolsToolStripMenuItem, + this.helpToolStripMenuItem}); + this.menuStrip1.Location = new System.Drawing.Point(0, 0); + this.menuStrip1.Name = "menuStrip1"; + this.menuStrip1.Padding = new System.Windows.Forms.Padding(2, 2, 0, 2); + this.menuStrip1.Size = new System.Drawing.Size(951, 22); + this.menuStrip1.TabIndex = 0; + this.menuStrip1.Text = "menuStrip1"; + // + // fileToolStripMenuItem + // + this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; + this.fileToolStripMenuItem.Padding = new System.Windows.Forms.Padding(0); + this.fileToolStripMenuItem.Size = new System.Drawing.Size(27, 18); + this.fileToolStripMenuItem.Text = "File"; + // + // editToolStripMenuItem + // + this.editToolStripMenuItem.Name = "editToolStripMenuItem"; + this.editToolStripMenuItem.Padding = new System.Windows.Forms.Padding(0); + this.editToolStripMenuItem.Size = new System.Drawing.Size(29, 18); + this.editToolStripMenuItem.Text = "Edit"; + // + // viewToolStripMenuItem + // + this.viewToolStripMenuItem.Name = "viewToolStripMenuItem"; + this.viewToolStripMenuItem.Padding = new System.Windows.Forms.Padding(0); + this.viewToolStripMenuItem.Size = new System.Drawing.Size(33, 18); + this.viewToolStripMenuItem.Text = "View"; + // + // favoritesToolStripMenuItem + // + this.favoritesToolStripMenuItem.Name = "favoritesToolStripMenuItem"; + this.favoritesToolStripMenuItem.Padding = new System.Windows.Forms.Padding(0); + this.favoritesToolStripMenuItem.Size = new System.Drawing.Size(56, 18); + this.favoritesToolStripMenuItem.Text = "Favorites"; + // + // toolsToolStripMenuItem + // + this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem"; + this.toolsToolStripMenuItem.Padding = new System.Windows.Forms.Padding(0); + this.toolsToolStripMenuItem.Size = new System.Drawing.Size(36, 18); + this.toolsToolStripMenuItem.Text = "Tools"; + // + // helpToolStripMenuItem + // + this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; + this.helpToolStripMenuItem.Padding = new System.Windows.Forms.Padding(0); + this.helpToolStripMenuItem.Size = new System.Drawing.Size(32, 18); + this.helpToolStripMenuItem.Text = "Help"; + // + // pictureBox2 + // + this.pictureBox2.BackgroundImage = global::Histacom2.Properties.Resources.ie4_hsplitter; + this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Top; + this.pictureBox2.Location = new System.Drawing.Point(0, 22); + this.pictureBox2.Name = "pictureBox2"; + this.pictureBox2.Size = new System.Drawing.Size(992, 1); + this.pictureBox2.TabIndex = 1; + this.pictureBox2.TabStop = false; + // + // menuStrip2 + // + this.menuStrip2.AutoSize = false; + this.menuStrip2.BackgroundImage = global::Histacom2.Properties.Resources.sliveroldlace; + this.menuStrip2.Font = new System.Drawing.Font("Tahoma", 8.25F); + this.menuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.backToolStripMenuItem, + this.toolStripMenuItem2, + this.toolStripMenuItem3, + this.toolStripMenuItem4, + this.toolStripMenuItem5, + this.toolStripMenuItem6, + this.toolStripMenuItem7, + this.toolStripMenuItem8}); + this.menuStrip2.Location = new System.Drawing.Point(0, 23); + this.menuStrip2.Name = "menuStrip2"; + this.menuStrip2.Size = new System.Drawing.Size(992, 39); + this.menuStrip2.TabIndex = 2; + this.menuStrip2.Text = "menuStrip2"; + // + // backToolStripMenuItem + // + this.backToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripMenuItem1}); + this.backToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("backToolStripMenuItem.Image"))); + this.backToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.backToolStripMenuItem.Name = "backToolStripMenuItem"; + this.backToolStripMenuItem.Size = new System.Drawing.Size(77, 35); + this.backToolStripMenuItem.Text = " Back ▼"; + this.backToolStripMenuItem.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // toolStripMenuItem1 + // + this.toolStripMenuItem1.Enabled = false; + this.toolStripMenuItem1.Name = "toolStripMenuItem1"; + this.toolStripMenuItem1.Size = new System.Drawing.Size(112, 22); + this.toolStripMenuItem1.Text = "(Empty)"; + // + // toolStripMenuItem2 + // + this.toolStripMenuItem2.Enabled = false; + this.toolStripMenuItem2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem2.Image"))); + this.toolStripMenuItem2.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripMenuItem2.Name = "toolStripMenuItem2"; + this.toolStripMenuItem2.Size = new System.Drawing.Size(52, 35); + this.toolStripMenuItem2.Text = " ▼"; + // + // toolStripMenuItem3 + // + this.toolStripMenuItem3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem3.Image"))); + this.toolStripMenuItem3.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripMenuItem3.Name = "toolStripMenuItem3"; + this.toolStripMenuItem3.Size = new System.Drawing.Size(36, 35); + // + // toolStripMenuItem4 + // + this.toolStripMenuItem4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem4.Image"))); + this.toolStripMenuItem4.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripMenuItem4.Name = "toolStripMenuItem4"; + this.toolStripMenuItem4.Size = new System.Drawing.Size(36, 35); + // + // toolStripMenuItem5 + // + this.toolStripMenuItem5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem5.Image"))); + this.toolStripMenuItem5.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripMenuItem5.Name = "toolStripMenuItem5"; + this.toolStripMenuItem5.Size = new System.Drawing.Size(36, 35); + // + // toolStripMenuItem6 + // + this.toolStripMenuItem6.Image = global::Histacom2.Properties.Resources.ie4_vsplitter; + this.toolStripMenuItem6.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripMenuItem6.Name = "toolStripMenuItem6"; + this.toolStripMenuItem6.Size = new System.Drawing.Size(14, 35); + // + // toolStripMenuItem7 + // + this.toolStripMenuItem7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem7.Image"))); + this.toolStripMenuItem7.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripMenuItem7.Name = "toolStripMenuItem7"; + this.toolStripMenuItem7.Size = new System.Drawing.Size(76, 35); + this.toolStripMenuItem7.Text = "Search"; + // + // toolStripMenuItem8 + // + this.toolStripMenuItem8.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem8.Image"))); + this.toolStripMenuItem8.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.toolStripMenuItem8.Name = "toolStripMenuItem8"; + this.toolStripMenuItem8.Size = new System.Drawing.Size(88, 35); + this.toolStripMenuItem8.Text = "Favorites"; + // + // pictureBox3 + // + this.pictureBox3.BackgroundImage = global::Histacom2.Properties.Resources.ie4_hsplitter; + this.pictureBox3.Dock = System.Windows.Forms.DockStyle.Top; + this.pictureBox3.Location = new System.Drawing.Point(0, 62); + this.pictureBox3.Name = "pictureBox3"; + this.pictureBox3.Size = new System.Drawing.Size(992, 1); + this.pictureBox3.TabIndex = 3; + this.pictureBox3.TabStop = false; + // + // panel2 + // + this.panel2.Controls.Add(this.comboBox1); + this.panel2.Controls.Add(this.classicLabel1); + this.panel2.Dock = System.Windows.Forms.DockStyle.Top; + this.panel2.Location = new System.Drawing.Point(0, 63); + this.panel2.Name = "panel2"; + this.panel2.Size = new System.Drawing.Size(992, 24); + this.panel2.TabIndex = 4; + // + // classicLabel1 + // + this.classicLabel1.DropShadow = false; + this.classicLabel1.Font = new System.Drawing.Font("Tahoma", 8.25F); + this.classicLabel1.Location = new System.Drawing.Point(5, 5); + this.classicLabel1.Name = "classicLabel1"; + this.classicLabel1.Size = new System.Drawing.Size(56, 14); + this.classicLabel1.TabIndex = 0; + this.classicLabel1.Text = "A&ddress:"; + // + // comboBox1 + // + this.comboBox1.FormattingEnabled = true; + this.comboBox1.Location = new System.Drawing.Point(53, 2); + this.comboBox1.Name = "comboBox1"; + this.comboBox1.Size = new System.Drawing.Size(886, 21); + this.comboBox1.TabIndex = 1; + this.comboBox1.Text = "http://www.microsoft.com/"; + // + // panel3 + // + this.panel3.BackColor = System.Drawing.Color.White; + this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.panel3.Controls.Add(this.label1); + this.panel3.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel3.Location = new System.Drawing.Point(0, 87); + this.panel3.Name = "panel3"; + this.panel3.Size = new System.Drawing.Size(992, 569); + this.panel3.TabIndex = 5; + // + // label1 + // + this.label1.Dock = System.Windows.Forms.DockStyle.Fill; + this.label1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label1.ForeColor = System.Drawing.Color.PaleGreen; + this.label1.Location = new System.Drawing.Point(0, 0); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(988, 565); + this.label1.TabIndex = 2; + this.label1.Text = "Welcome to the end of the internet!!!"; + this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // originalTimer + // + this.originalTimer.Enabled = true; + this.originalTimer.Tick += new System.EventHandler(this.originalTimer_Tick); + // + // WinClassicIE6Bad + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.OldLace; + this.Controls.Add(this.panel3); + this.Controls.Add(this.panel2); + this.Controls.Add(this.pictureBox3); + this.Controls.Add(this.menuStrip2); + this.Controls.Add(this.pictureBox2); + this.Controls.Add(this.panel1); + this.Name = "WinClassicIE6Bad"; + this.Size = new System.Drawing.Size(992, 656); + this.panel1.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.menuStrip1.ResumeLayout(false); + this.menuStrip1.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); + this.menuStrip2.ResumeLayout(false); + this.menuStrip2.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); + this.panel2.ResumeLayout(false); + this.panel3.ResumeLayout(false); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.MenuStrip menuStrip1; + private System.Windows.Forms.PictureBox pictureBox1; + private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem favoritesToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem toolsToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem; + private System.Windows.Forms.PictureBox pictureBox2; + private System.Windows.Forms.MenuStrip menuStrip2; + private System.Windows.Forms.ToolStripMenuItem backToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1; + private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2; + private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem3; + private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem4; + private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem5; + private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem6; + private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem7; + private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8; + private System.Windows.Forms.PictureBox pictureBox3; + private System.Windows.Forms.Panel panel2; + private Engine.UI.ClassicLabel classicLabel1; + private System.Windows.Forms.ComboBox comboBox1; + private System.Windows.Forms.Panel panel3; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Timer originalTimer; + } +} diff --git a/Histacom2/OS/WinXPBad/WinClassicIE6Bad.cs b/Histacom2/OS/WinXPBad/WinClassicIE6Bad.cs new file mode 100644 index 0000000..84a5646 --- /dev/null +++ b/Histacom2/OS/WinXPBad/WinClassicIE6Bad.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Histacom2.OS.WinXPBad +{ + public partial class WinClassicIE6Bad : UserControl + { + private bool light = true; + + public WinClassicIE6Bad() + { + InitializeComponent(); + } + + private void originalTimer_Tick(object sender, EventArgs e) + { + if (light) + { + label1.ForeColor = Color.Black; + light = false; + } + else { + label1.ForeColor = Color.PaleGreen; + light = true; + } + } + } +} diff --git a/Histacom2/OS/WinXPBad/WinClassicIE6Bad.resx b/Histacom2/OS/WinXPBad/WinClassicIE6Bad.resx new file mode 100644 index 0000000..1f5eeb4 --- /dev/null +++ b/Histacom2/OS/WinXPBad/WinClassicIE6Bad.resx @@ -0,0 +1,310 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + iVBORw0KGgoAAAANSUhEUgAAACkAAAAXCAYAAACWEGYrAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAAPgSURBVEhL3ZX5 + T5N3HMf3fwxQRxARxZ1AdBebm7qA85jgTrdEJpOMMAiMS4QNUJiTG9RlUXADcZBRW9w4R7lBoIVKCwqW + KxyzVcJkCEpf+0If9yOWVhO3V/JNnif5Pu+88nl/mj7FE8zo8PjS+X9L/l1ykrnCMO6n7YAULxYCN2AI + 9WFMUSDdsB2bJU3Jb0KaF+RsF5JvwOH1zPqt4Yb30wzmpzN6c0S6aT02Sc6pKoXgW2bJ3HcgfgscdGb6 + vVXohaShuYavftxN0OldVKhKpK/MtI3JqR+QSW/LY5tkcRJkvQ0ZYpo5QjLiRUwHnDDscaBv5xrGJ4fZ + l7KO/alr8c9z5euK54lvdidJ5cGxLg8qdT9LSctjk+R8ui9kboVsIZq+DYLduP+hI+Pv2jMQ7otSq2Bv + shMf5azjyxI34prcSez0XBJM6HBH/2e/lLQ8NklyQkwwQ+zhGW/z8xfmfRzeacdYQRYZZZHs+24tn/7g + QujlZ/m2zePfKSY3i28sxGrJu22XWMj3YypjF8biWIxnQ5gOdGfGd7XYRztua7vwz34Vv8Wq812JrH6B + xA4xRbVZsqArTkp6OFZL6vUTtNd3IlNNca7pFmdrhmhUD3OzRs5A9Cfox/vYI6r+INOZw0UbiW14iSSp + 6sXTcuM3KenhWC0ZUDRBSMU9opQmUeUMe1PVeIUr8I2V0XV9kkGxb4dyvThwxoVg2Sa+aV2s2pPj3WIf + r2yWUizDKsm2gTuElc8SVm3iSAMEFhvwOd7Ca6GleBw6T1ljP12KJAavKqnulpFTF0Jq48dkNh+kqOME + 7b21UpJlWCV5rtG4NMHwP4RkvYnP8obYEV/Ly0G/4Pl5HqNjk/x+1JG6BAcGCrczo0lkVp/NXf0R5nTb + MOpOSUmWYZVkjMJAhBIi6yCqZp79OTq2RpezObCQ94+WMtFbxeUoO1pTHDBccIRWV7i6AXpdMenWYxxR + SUmWYZVksHxKTJGlqkPL7rD7+w5eD5PjGfATqRda0chjKY+xoyttFTOXnEAlBLXi9Llyu8VdSrGcFUtW + a6eJVs4T0yj+bHoWiCyfwudYM68El+Dun0dT9yi1J72ojrPn2qnV3Kt0hu6NoBPTFJIGdZCUZDkrlqzS + GMhVDnKxSU+deoSazmGySjV4R/zKloB8jJNDKKLsqU+wZzTvGUwNLqJqISkElySvFUpJlrNiyeVoUA0x + opZRFmnex1sXxT5eEXJS1fMa8WwFj1TyAT1Vp2nL9OQvhai65zkW+twwtmziem2AdGNlPBbJB4z1tzOs + kTOiFb8yG3isko+K/56ktqfvCT59/AP5nm9ye51txwAAAABJRU5ErkJggg== + + + + 17, 17 + + + 132, 17 + + + + iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAARHSURBVEhLpZV7 + UFRlGMbPgY3luh7OtruYICu3FNOFCSu7zKpFXsLVCCyRARzIUhCbInWcBRUaL6mpSOHEwiAoBCG3ZWFZ + bqIhtIjKGBOcQFTGsRn7w8z6I/94+r5DSEcWx5nemefMOWe+7zfPO8/7ncMAcCjhngDjoBH6i3pwFg5s + HQunsyzCrDqsOWeAachEljneSzXlBQUmXEmAokWBqB9XIaM/FTkD25E/mIXsq8lI+WEpljUFQP2dO7xL + OWTajWSblEElefj+dhW4Vg5xV9bDeseMxrFyVFw/jgLi/HB/Cvb0rsGnXYuRdl4nKro5COoid4SV68j2 + acCmmyYobArkj+ah5XY1am4UoFjIRu5P6cjpW4edPW8+Aj6u0BIe4SVSuHix/9YLtoHFtyO5MN8qQdnw + YZz8eQcOXk1Clj0Ke3sN6Pm1Dpab+Q7BVKFFPPSn9Y/g4kXXrsOmvnhUjX6DoqG9OHptM7IvxSCj6zXs + J27/enifbhDrWH+yQzCV5og7qq5V0WUMY7pugtqiROkv+/H1wGfYd3kDdvVEIv1C+BQord32lQ6hH3W+ + gFW1/uCzObqMYcKaddh4MWpKOI6gpUOZU4Bbzi9Ecud8JJ6bh/XtIeC/kKOw2wTGqYLFLrtBEs7TQFOJ + NhGXSQQY3/E81rUFIbotAAsKeKwtMIDRVHpi24WIJ0LHHgyKwf1XdTfyyOTk4exoLnZfjoOhVYsVNj+8 + VKZG+D4dGL8KrydCn6ZKR77C2wS6pPk5RFSrIEtjCbjs/4OLyXi+YZ2JV60a6Gp5yFIo+NQkeDp4391W + VI+eQCU5hfQknhk5Kro8NXwEhcOHkGaPxqImFcIsPAKLvaD8mCPhnWAlYEfwP8n9dvtqMZx3WvyxnLS9 + rHkWXrf64JUmDcIblVhIoHMbZkBzzBVLs/RgAkxafGANkYA3kxHacylaBE7Ug4e/I7V7BSJtvv+27YOI + RhV0BDi/gUOg2RNzzB7w2ilD1mkjmHTbVoQW8iKQjlAKmUk6Qhs6QvA5cUmBE/UHuY/pXISXm0jy5FAt + sHgjuEGBAAL1rXeHulIO2bsshDGBfCbvCuC/5BBrCcZGAkzomIv324PxXlsgVrdosYW4pMCJyhcOiC7n + kbapS/96D/jUuUJVK4fHDmckHkqgy8a/FZmtRjx7wA2xtiDEEODa1jlYaZtNRsgXejJCSV1v4f7f90Ql + dUchyOxF2vbErDo3qAmQr3kGbiQr3sBBuCVMgqkSKxKgzJZjeaOfJJzFj4VD255N2tYQoKrWBV7VznA7 + ycI5kkVV+/gHSAKmokfRO9MFL1aqpg1nJmmbuuRqZPAgvyp55ji00Cz9VUnAVFn1RigzOKhzXBFyRiEJ + h7pU1rjAs9wJ8hwWsigWAbFa2Ad6yVYpR/IwIeGOgG2lWxH4iRYu8U5wT3OG64dEKc6QxRGHS1iEJ+mm + uJwUmH8Agpr3YE61dFwAAAAASUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAALfSURBVEhLnZVb + T1pBFIXPn9dWaCIxKaiJWlMExRtwuHnldiASqVK5WrloVOKjPumDyeqsTYce4GCaPqygg/ubNXuvGQ0A + U9Xt9nB2VsLp6SnC4TD29/cRiUSRzWZRrzXUnzjXUY6L9XoDiUQSJycnuLy8RL1eR6PRQK1WQ7FYlI1i + ZgyhrRAKVlGVTDImFjKZjBS22208PDyg1+vh+voa1WoV5XJZneAMuVwOuWwO2UwWUXWCLbVBu91R5VPA + 6XRaCvv9Pu7u7nBzcyNO6bpUKiGfzw+gf8BaqWQK/u9+NBsthRkDE1ooFHB/f49Op4NWq4WrqytxyXU6 + 54b8eQi36ejoCH7/xii4Vqvj8PAQt7e3cmz28uLiYnjsSqWC9/d30cvLy1R4JBJBLBYTuIBNNQget9ls + CuT8/HykmK41+CM457O6uqrM/YLBpqdSqcnhjImtmQZn/AhlOxnLeDwBw7IKsjAxHAc5wS3LknomifFk + S71eLwzSuaiL2QoOapoIs8Ofn5/F8fHxsQyQWlpaghEKheQLDWaxvfBfRDhd0+3BwQFWVlZgBIPBIfR/ + wW9vb9JvzopaXl6m422xr8FOreh2uyLm++npaSo0mUyqpyCBxcVFGLTORbtrLfu0OQcOmKBxqAbG43HJ + scvlglEu/8De3t6HUE7bCcpEEJhQAYjHFFTdh8BGQKXCN7h+6+vrAnBySSizbYe+vr4OoeJSAc2oKQ+S + 96tX1aUHYH5J1+NAHSG+dE5QHpsiMBKOYDO4Cbf7y98rTa2tfZPdNVRnkhHSbSCUl0j30jRNeR8I3d3Z + hdvlRj5njYL5EDEmLNJAPdjx4YjLqHJJqNLO9g7mPs/Jp+YNwVS1WoPP51MP99YwkzIcG3ToUon/qgKB + wASUGgFTj499sC3cgJeHzjRQu+RDQ+DCwgJmZz/JLMY5I7/YVan8BNPidrsFQHk8HszPz2NmZkZ9euQU + 43UDwfgNK+o0WYVUzZkAAAAASUVORK5CYII= + + + + + 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 + z2EegDoAAAAASUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAAQzSURBVEhLpZP9 + T1pXGMft/7K/YFmbLVu2LIuue1+zZelr9j7TLXGZyRLXOTdjuyzYphuKTu2YRmRARW0VxXYWsSIoKlUB + RVtFioDyIi8qKMh3z+EKQu9dmm4/fHOv5xw/n3ue56EIwH+KTTsI9YXvMSCqxZLRREvC5wQX87M304E9 + Ry+9Fq4bCd505AhmSp6Ct+Zj3n42govZ7KtOAIpXgBtvArc/wL7pa+wtd2DXNw5TRfn/E6RufsTBe9/O + wDH6IWD+Apj4HNCdBvpPICB6FuvfPP1kgsTaLFK99A/XS4C+d4Chk4CBZJOlwPhnwJ1TgOZdbr/tBaR/ + fwZ+CUkf4WRT8AeDp5WvA52vchAGM37CwdmTydiN2M2kz9G504hpa3C/5kV4jfw+seReEl4r0qo3gK7X + ODgrg+lTDs5uwMrEepEHTyei2N5NYeGvX3Cr7DiWhvsJJSBIeG1Id74F9JBA+x4wfIarNYOz2mfh8peB + lmNIqs5gP87BIzt72IgkMNJ0Gde/OgmHYYSQeYIcnAEG3wf0Z7lmsrB3JmS3kr2UgScUZ3lwz2YczsA2 + tI0NkH93AfMT0zlJUdKqBG6SgH3lyLnDScnC1cc5ePNR7MjPUVliSOztIxpPwh/dhTccxyrBH2xswboa + QKdYitafpbBZljKSjKW938yVgpUkO4aPTEqkoRipiOdf4fPeKGbcEUzcD6CjRYuW+mEsLwe4a0i1K2CS + +NiX3OSw8VQVA63PI9V4FJsET64vPhY+5QrDuBKC3rEBsVgPBz1zgh57CNJxL5y93+YmJUnwYH3JE8FH + HwQxRGCRqOewREzQbQtB49vFtako9MrfkJAcg/tqMTQ6C5KpNGIED8Z24aOmuoI7GJ9zo09nh1RuQN01 + HUxOgi8HcWfRj1sLAgK1NYhuVxxdzjja5mKo/TsIEUVtjfHgy/4tlJY25fLjxa4CeJ/Nxxeo7gUycMXi + NmTzW2idjeEPS5RKt8WDL1BZ8gVVJMiHd895+QLFdCAD71jYzsGbzBGoZqNYP4Cv+LczcOtapEDwQ40a + t6nuDN5DcOU9T6GAdZtJ5A6CU3mycMlYGApLBA9DBKemOnwx2DxRTFND8wWVJNDYfbhh9VElPJBb1goF + LDMzbjSq7Dl4gykM8d1NtJvDPPjE6mYGfP58C8rKWlEt0hTAWyfdfAGLyxWApG0aktFgBn5FF8Kfpk0e + 3EANLS+XoaJChcrKLtRKhjNwqW4RtTIjqkR9qKsb4AtYXC4/mmVTuDxAdaQpahkNwX4ANx/A9fRrra7u + xaVLWvrSIVz5VY+r4iHI5UYYDAuEOeQVwPNT36jHxU4nGoeDsDwMY5LgA+ZVKLV2yNQ2NDePQaOxY3bW + Q8eFGSyCi9mwL6qRGFArHkTVTyq0t9/F5KSTtoTPC0VwMT82m5sewnuPD4r+AcvsHEimwLbJAAAAAElF + TkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAAO5SURBVEhLtZRt + UxNXFMfzvVo/QJ2+7DhDtR2/APrOF85YjYKD0qigGBCERGhgIRBJUQmBEJUENg+bB4GkYUNWaKU8ViFa + EyV//3eZiCFR4zhm5pfs3XPP/5x7zrkxAPimVHz5KYaHQ6i/6MBpox31JheaWn1oa5uCyzVLc/n+shcf + Ix5bwu9XR3HNFsDduQ14V1/D93wX7mc5SLHnaLbFca15HPPzS9y+71ci8jEiioZ2iw8JbRO7fLFBAv8D + nm3g0Ssg+AaYWAdaJrZgbBjF7OxT7tjzLRM7SCazgfYeGZHFTS73PvIaMEmkFGBlZQYWuc4CfgZs9W7C + WHdXbNP9ywQPMupKoM+zACH/hum/ZLaTy8DI34DzH+BPcm+F62fAQ57m8QvgivQE3Xe89KgiQI89hjF1 + C6m3gLJF0QzQx8zdjDhJsSmKygw6Qx7usFwFnmhuG2fOSnT/TAB1YQ1tPSFMZfOYpvPEKgOwh6NsghCM + cFOczJM5EiNh4uEAnLs8AnVhtbJwkXR6HW3dAQR2C3CyDN1UGvmXZWCDhVCCpAkPpaOSJyT6dheXzONI + p9cqCxdR1XXc4gl8L/MYY9a2v1hz1nqa2YuMhSjj6VPFIQJNSJLwqxwazS6o6mcCaBzLDlsMDzIv8JgT + Yqeii2oBNltkz17jP8IDga3QB4Htgby5g7P1g9C0jcrCH+K8l4B1XIOPCvfZAxEgyAAiU3GlRAD2H+wt + 8oTDhftRDSaTk09VTFEkugTTbQVDiSxmxOXi5IgSicaK68TrAPb//Wd5KwtTyxjicVHAKgKoT1fQwno2 + tCsYTmUhM02F6YqJYUv0PoiT8J5hleJ/OIKQ+vxc7fmXCRbJx63YDjRDmfHgZqsVFy/3w9QZwh2vBvfK + DsKv80gWCpjjr8KauyIaLJKMAXuA7vs6JaJFcpHbKLiPAI4fEWisgflqI4LBEPz+JMydUzjfNIHGDi/M + vdOwDkfRZQ+j36FAnhFDW6pVshDo4p6jKAz9gMUL38FR+xNsNzpp2t8TCi7AL6cQnV1GIrWGZFIMa6lO + kZJFTulAYfIYMz+M9IXvMXiiBpZzTXAOKjSXOlbL+4dcuBUF7y97mddRvLYGXcbrGJSCNJc7Vov+lVPa + dXGRuRAforjF2AR7r/hDqOxYLYZ8jDX3/qpnnqk7BHvtUVgpPmAL0V7Z6UswuCWTnnmmXpTlZ11c6pZp + q+zwpRj6+3px5dRxOE4eo3gz+nu+ruYHMYRCYVi6utDw23kMSV9f81JgeAcDBSi4OB9ykAAAAABJRU5E + rkJggg== + + + + + iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAAPKSURBVEhLjVVb + aFRXFM0gBCFIQ7GIBGIM1dJ+CKJIUWjrg4qgIoggItQH1Q8FqW/FamIsqI0IKkgSSz6cBJWrkYyK8ZHx + gTd+XI0Z7SSjScY8nPERbTPG6vW1XPscE2funMp8rIGzzzprn7v32meyAGSMY0VjYG0bjpaGo1yaOV4Y + gyZc8q9E9KYfifBc1Oz6gSEzzwtj0AQRdfu6gbZxsH4fzJCZ54UxaIJVMhZ4cRWIfAP7QDbabp1l2MxN + hjHoRVvTWdhHfwMe/wH8nYeo5YNtbeaWmZ8MY9ALEYs21gDtU4BbQ+Davoz7YAx6oerfewdoLgQcH9CY + k3Ef1E+ovgztLINAypFMENSW/gT0ngBCX+oEd4bDLh+GVk8fpC+CVmo0UTPeGda3k/o6gWI4J5bAObkI + gdLJxHgEduVDvK/qH1sP3BgE3MwG7n6L6MUJ8G8cAaskX3N5xj48ixq/ai3CKh7N4dk6Am5oMtC1CHh5 + Cnh3jZdxgPdtwNtWwL3NWB/dM17f/vZQIDoJ6FnMeAe5MfLCQN9x4NlB6qzhBaYC3UtQt/drZDXVl6Nq + fa5yBsL5wKsdPFTGZMXA02UkzlDWVDeXBC2jdOzfVUxwQHOf8+u6Zw70KHF1CAIlOQj6V3yq3/mKhQgU + c/NKDi81Wx96OF/fVhKLeNMXdNIE4NEC4L8iLf76T30R4XHfKfOp0kkfRHcggUCaLCUTEkIfS8F6izVV + guYCoHMa8M8K4M0eHmGCF1uB+FzE6gtRvW5Q2nykJOiHkGq35yIWoCgHS4nTmrg3RomhbxNpFGeJ3Pgy + 2H8VqLl42MFeeLRSFsmQ3gQrfmYzK3UCWhMdP+pyuDtJ0X2KXp7y2aEzBgXnyxciFq5l/fkGiT2lVLE5 + QGItHUa3CHpX0zXTOXRf8YhZxxgUVG8eyfo26tuLNdu/B578Qpf5uW3prxCrsunOoRwOVjnj6TppAYFz + ZjdC57azyRRQzaX9aM3IhWmwj8wjJUEX7QMe0G3cSwR9aiCTNfqRFhAc21YINxHV4mJN/gc41d/pqaYB + AqUT4T6/R7tuGHg+6nYORryjmcdTtVIWAvk7DFby5jEOGg+6jXkI7h8KmZN+jrwzVlEeEo9DwP2lymGR + mnwED68c4PQjZSE4vW8WejpZ+9BIuA3Z6tWUknl5XZEGVG0qQE8rn/GnFWo+qjYOS+OlLARly1mW+A70 + 1PlgbclFy/X//4PvarmuyhaxaeWXl/nYjUt7YVMOCC7xM+XJkPdJBLz7JsgcBCvnZ/YFgkyFk9FpPIOs + D4DevqAH13BWAAAAAElFTkSuQmCC + + + + 247, 17 + + \ No newline at end of file diff --git a/Histacom2/Properties/Resources.resx b/Histacom2/Properties/Resources.resx index 782693e..4bd013e 100644 --- a/Histacom2/Properties/Resources.resx +++ b/Histacom2/Properties/Resources.resx @@ -2095,4 +2095,7 @@ ..\Resources\win95plustravelwallpaper.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\WinClassic\sliveroldlace.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + \ No newline at end of file diff --git a/Histacom2/Properties/Resources1.Designer.cs b/Histacom2/Properties/Resources1.Designer.cs index 07a3730..5d75b0a 100644 --- a/Histacom2/Properties/Resources1.Designer.cs +++ b/Histacom2/Properties/Resources1.Designer.cs @@ -883,6 +883,16 @@ namespace Histacom2.Properties { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap sliveroldlace { + get { + object obj = ResourceManager.GetObject("sliveroldlace", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// diff --git a/Histacom2/Resources/WinClassic/sliveroldlace.png b/Histacom2/Resources/WinClassic/sliveroldlace.png new file mode 100644 index 0000000..7f73daf Binary files /dev/null and b/Histacom2/Resources/WinClassic/sliveroldlace.png differ -- cgit v1.2.3