summaryrefslogtreecommitdiff
path: root/src/test/dialog.rc
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2005-03-28 01:42:58 +0000
committerIan C <ianc@noddybox.co.uk>2005-03-28 01:42:58 +0000
commit82f1d860690dc0a2d0210db12344f7ea5e88b6a4 (patch)
tree517481a81e64cc70b5187ce6eeb20d8fa326fa54 /src/test/dialog.rc
parent4f54380eb1f7574bf9cc147cb8870508da09e10c (diff)
Added ComboBox. Also improved callback filtering and made controls auto register themselves.
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
}