summaryrefslogtreecommitdiff
path: root/src/test/dialog.rc
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/dialog.rc')
-rw-r--r--src/test/dialog.rc8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/test/dialog.rc b/src/test/dialog.rc
index 27f1ea6..e96fa9f 100644
--- a/src/test/dialog.rc
+++ b/src/test/dialog.rc
@@ -1,9 +1,9 @@
#include <windows.h>
#include "dialog.h"
-TESTDLG DIALOG 10, 10, 240, 180
- STYLE WS_POPUP | WS_BORDER CAPTION
- "Test Dialog"
+TESTDLG DIALOG 10, 10, 240, 300
+ STYLE WS_POPUP | WS_BORDER
+ CAPTION "Test Dialog"
FONT 8,"MS Shell Dlg"
{
LTEXT "Text:", IDSTATIC1, 10, 10, 35, 12
@@ -17,4 +17,6 @@ TESTDLG DIALOG 10, 10, 240, 180
EDITTEXT IDSAVETXT, 10, 140, 200, 12
PUSHBUTTON "Save ...",IDSAVEBUT, 10, 155, 100, 18
+
+ COMBOBOX IDCOMBO, 10, 180, 100, 100, CBS_SIMPLE | CBS_SORT | WS_VSCROLL | WS_TABSTOP
}