aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.cs
diff options
context:
space:
mode:
authorAlex-TIMEHACK <[email protected]>2017-08-27 15:48:28 +0100
committerAlex-TIMEHACK <[email protected]>2017-08-27 15:48:28 +0100
commita751c8fcac0aab40de9cf0539fff65791da51f34 (patch)
treeff71b4556f20762aa9ebb8d68eca8d43ca5618b3 /Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.cs
parent1d2e7331e356f71547972f30b6bbbca4c40b35ae (diff)
downloadhistacom2-a751c8fcac0aab40de9cf0539fff65791da51f34.tar.gz
histacom2-a751c8fcac0aab40de9cf0539fff65791da51f34.tar.bz2
histacom2-a751c8fcac0aab40de9cf0539fff65791da51f34.zip
Fixed up a few things
Diffstat (limited to 'Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.cs')
-rw-r--r--Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.cs b/Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.cs
index 59c81d7..bb385da 100644
--- a/Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.cs
+++ b/Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.cs
@@ -226,6 +226,13 @@ namespace Histacom2.OS.Win95.Win95Apps
Program.AddTaskbarItem(app, app.Tag.ToString(), "Notepad", Properties.Resources.Win95IconNotepad);
break;
+ case 2:
+ WinClassicWordPad wp = new WinClassicWordPad();
+ wp.mainText.LoadFile(fileDir);
+ WinClassic app2 = wm.StartWin95(wp, "Wordpad", Properties.Resources.Win95IconWordpad, true, true);
+
+ Program.AddTaskbarItem(app2, app2.Tag.ToString(), "Wordpad", Properties.Resources.Win95IconWordpad);
+ break;
case 12:
OpenApplication(FileDialogBoxManager.ReadTextFile(fileDir), fileDir);
break;