summaryrefslogtreecommitdiff
path: root/src/test/dialog.rc
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2005-03-25 02:25:10 +0000
committerIan C <ianc@noddybox.co.uk>2005-03-25 02:25:10 +0000
commitbf252f63d520be07a938076518aa17c25b11f8be (patch)
tree0118bd10342317d265d72ba94ce13723fa7fd70a /src/test/dialog.rc
parent72f0c86eb3ecdda4cab53213302fad645bc571f0 (diff)
Implemented OpenFile and SaveFile. Removed SelectDirectory as it depends on IE controls and COM
Diffstat (limited to 'src/test/dialog.rc')
-rw-r--r--src/test/dialog.rc8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/test/dialog.rc b/src/test/dialog.rc
index cae59bb..27f1ea6 100644
--- a/src/test/dialog.rc
+++ b/src/test/dialog.rc
@@ -1,7 +1,7 @@
#include <windows.h>
#include "dialog.h"
-TESTDLG DIALOG 10, 10, 240, 100
+TESTDLG DIALOG 10, 10, 240, 180
STYLE WS_POPUP | WS_BORDER CAPTION
"Test Dialog"
FONT 8,"MS Shell Dlg"
@@ -11,4 +11,10 @@ TESTDLG DIALOG 10, 10, 240, 100
PUSHBUTTON "Try Me!", IDBUTTON, 10, 30, 150, 18
AUTOCHECKBOX "Check", IDCHECK, 10,50,150,18
PUSHBUTTON "Quit", IDQUIT, 10,70,150,18
+
+ EDITTEXT IDLOADTXT, 10, 100, 200, 12
+ PUSHBUTTON "Load ...",IDLOADBUT, 10, 115, 100, 18
+
+ EDITTEXT IDSAVETXT, 10, 140, 200, 12
+ PUSHBUTTON "Save ...",IDSAVEBUT, 10, 155, 100, 18
}