1#include "CopyDialogRes.h" 2#include "../../GuiCommon.rc" 3 4#define xc 320 5#define yc 144 6 7#define y 40 8 9IDD_COPY DIALOG 0, 0, xs, ys MY_MODAL_RESIZE_DIALOG_STYLE MY_FONT 10CAPTION "Copy" 11{ 12 LTEXT "", IDT_COPY, m, m, xc, 8 13 COMBOBOX IDC_COPY, m, 20, xc - bxsDots - m, 65, MY_COMBO_WITH_EDIT 14 PUSHBUTTON "...", IDB_COPY_SET_PATH, xs - m - bxsDots, 18, bxsDots, bys, WS_GROUP 15 LTEXT "", IDT_COPY_INFO, m, y, xc, by - y - 1, SS_NOPREFIX | SS_LEFTNOWORDWRAP 16 OK_CANCEL 17} 18 19#undef xc 20#undef yc 21