diff options
| author | lempamo <[email protected]> | 2017-04-02 20:07:39 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-04-02 20:07:39 -0400 |
| commit | db3a41715a3d49c275fd924f1d590de2956d972f (patch) | |
| tree | 69ae30c8fbd6f996adb3d862ad0cfc97328b954e /TimeHACK.Main/OS | |
| parent | 568d5a6573ffd13c5adb38ab40e0e608fa3dff8e (diff) | |
| download | histacom2-db3a41715a3d49c275fd924f1d590de2956d972f.tar.gz histacom2-db3a41715a3d49c275fd924f1d590de2956d972f.tar.bz2 histacom2-db3a41715a3d49c275fd924f1d590de2956d972f.zip | |
more convo
Diffstat (limited to 'TimeHACK.Main/OS')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs | 1 | ||||
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs index af44554..9ab490a 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs @@ -87,6 +87,7 @@ this.history.ReadOnly = true; this.history.Size = new System.Drawing.Size(471, 377); this.history.TabIndex = 2; + this.history.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; // // panel1 // diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs index 714df9d..de03b93 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs @@ -26,6 +26,7 @@ namespace TimeHACK.OS.Win95.Win95Apps SoundPlayer leave = new SoundPlayer(Properties.Resources.AIMbuddyleave); SoundPlayer send = new SoundPlayer(Properties.Resources.AIMmessagesent); SoundPlayer receive = new SoundPlayer(Properties.Resources.AIMmessagereceived); + SoundPlayer file = new SoundPlayer(Properties.Resources.AIMfile); public WebChat1998() { @@ -76,6 +77,15 @@ namespace TimeHACK.OS.Win95.Win95Apps listBox1.Items.Add("rain49"); join.Play(); break; + case "addfile": + label5.Show(); + button5.Show(); + file.Play(); + break; + case "addpadams": + listBox1.Items.Add("12padams"); + join.Play(); + break; default: receive.Play(); break; |
