diff options
| author | Michael Webb <[email protected]> | 2019-04-06 16:47:15 -0500 |
|---|---|---|
| committer | Michael Webb <[email protected]> | 2019-04-06 16:47:15 -0500 |
| commit | 8a8a895afa16a9b7cec499b5a25746e37ceb4cb4 (patch) | |
| tree | 3d3ca43a52fb534f1e9801476a30cee09b7feec1 /Histacom2/OS/Win98 | |
| parent | b2184ed7e69bc03cbce76dedff8d73bc8b2baa41 (diff) | |
| download | histacom2-8a8a895afa16a9b7cec499b5a25746e37ceb4cb4.tar.gz histacom2-8a8a895afa16a9b7cec499b5a25746e37ceb4cb4.tar.bz2 histacom2-8a8a895afa16a9b7cec499b5a25746e37ceb4cb4.zip | |
Fix bug where the Online Services on Windows 98 would break Histacom (see issue #3)
Diffstat (limited to 'Histacom2/OS/Win98')
| -rw-r--r-- | Histacom2/OS/Win98/Win98.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Histacom2/OS/Win98/Win98.cs b/Histacom2/OS/Win98/Win98.cs index 3a0b216..36939a8 100644 --- a/Histacom2/OS/Win98/Win98.cs +++ b/Histacom2/OS/Win98/Win98.cs @@ -294,12 +294,14 @@ namespace Histacom2.OS.Win98 else if (objListViewItem.Text == "Network Neighborhood") { // Alex's TODO here - } else if (objListViewItem.Text == "Recycle Bin") { // Another thing you may need to digital poke Alex about doing. - + } + else if (objListViewItem.Text == "Online Services") + { + wm.StartInfobox95("Online Services", "This feature isn't implemented yet.", InfoboxType.Error, InfoboxButtons.OK); } else if (objListViewItem.Text == "Set Up The Microsoft Network") { |
