aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-04-01 21:52:12 -0400
committerlempamo <[email protected]>2017-04-01 21:52:12 -0400
commit21fe930cb2ad9fccdd304ab8b0b38fbcc79afb3a (patch)
treeca55e2ad6e0c350982617dd73e20a3114b5a6ce0 /TimeHACK.Main/OS/Win95
parenta0bb3219e3a015b0f9dfc7c0f4353a48b3b74b13 (diff)
downloadhistacom2-21fe930cb2ad9fccdd304ab8b0b38fbcc79afb3a.tar.gz
histacom2-21fe930cb2ad9fccdd304ab8b0b38fbcc79afb3a.tar.bz2
histacom2-21fe930cb2ad9fccdd304ab8b0b38fbcc79afb3a.zip
added error images for infobox
Diffstat (limited to 'TimeHACK.Main/OS/Win95')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs
index a259fa5..7679c7a 100644
--- a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs
@@ -35,13 +35,13 @@ namespace TimeHACK.OS.Win95.Win95Apps
if (txtscreenname.Text == "")
{
WindowManager wm = new WindowManager();
- wm.startInfobox95("Invalid Username", "Your username cannot be blank.");
+ wm.startInfobox95("Invalid Username", "Your username cannot be blank.", Properties.Resources.Win95Warning);
return;
}
else if (txtscreenname.Text.Length > 12)
{
WindowManager wm = new WindowManager();
- wm.startInfobox95("Invalid Username", "Your username needs to be less than 12 characters.");
+ wm.startInfobox95("Invalid Username", "Your username needs to be less than 12 characters.", Properties.Resources.Win95Warning);
return;
}
ParentForm.AcceptButton = button2;