From 19ea483b2ba7974ffcfbe06b73c160a5ca418f45 Mon Sep 17 00:00:00 2001 From: lempamo Date: Fri, 31 Mar 2017 14:36:15 -0400 Subject: starting work on the actual webchat98 app --- .../OS/Win95/Win95Apps/WebChat1998.Designer.cs | 53 +++++++++ TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs | 20 ++++ TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.resx | 123 +++++++++++++++++++++ .../DesignTimeResolveAssemblyReferences.cache | Bin 52637 -> 52637 bytes 4 files changed, 196 insertions(+) create mode 100644 TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs create mode 100644 TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs create mode 100644 TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.resx diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs new file mode 100644 index 0000000..4348cf3 --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs @@ -0,0 +1,53 @@ +namespace TimeHACK.OS.Win95.Win95Apps +{ + partial class WebChat1998 + { + /// + /// 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(); + this.Chat = new System.Windows.Forms.Timer(this.components); + this.SuspendLayout(); + // + // Chat + // + this.Chat.Interval = 15000; + // + // WebChat1998 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Name = "WebChat1998"; + this.Size = new System.Drawing.Size(724, 482); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Timer Chat; + } +} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs new file mode 100644 index 0000000..ce87665 --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs @@ -0,0 +1,20 @@ +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 TimeHACK.OS.Win95.Win95Apps +{ + public partial class WebChat1998 : UserControl + { + public WebChat1998() + { + InitializeComponent(); + } + } +} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.resx b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.resx new file mode 100644 index 0000000..51a63d1 --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + 17, 17 + + \ No newline at end of file diff --git a/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferences.cache b/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferences.cache index b21e519..3841497 100644 Binary files a/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferences.cache and b/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferences.cache differ -- cgit v1.2.3