1#include "ComboDialogRes.h" 2#include "../../GuiCommon.rc" 3 4#define xc 240 5#define yc 64 6 7IDD_COMBO DIALOG 0, 0, xs, ys MY_MODAL_RESIZE_DIALOG_STYLE MY_FONT 8CAPTION "Combo" 9{ 10 LTEXT "", IDT_COMBO, m, m, xc, 8 11 COMBOBOX IDC_COMBO, m, 20, xc, 65, MY_COMBO_WITH_EDIT 12 OK_CANCEL 13} 14 15#undef xc 16#undef yc 17