You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
656 B
17 lines
656 B
#include <windows.h>
|
|
#include "cdlids.h"
|
|
|
|
IDD_CDLLOGVIEW DIALOG DISCARDABLE 0, 0, 398, 118
|
|
STYLE WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX
|
|
CAPTION "Code Download Error Log Viewer"
|
|
FONT 8, "MS Sans Serif"
|
|
BEGIN
|
|
DEFPUSHBUTTON "View Log",IDC_CB_VIEWLOG,343,9,50,14
|
|
LISTBOX IDC_LB_LOGMESSAGES,7,9,328,101,LBS_SORT | LBS_HASSTRINGS |
|
|
LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_HSCROLL |
|
|
WS_TABSTOP
|
|
PUSHBUTTON "Delete Entry",IDC_CB_DELETE,343,26,50,14
|
|
PUSHBUTTON "Refresh",IDC_CB_REFRESH,343,43,50,14
|
|
PUSHBUTTON "Quit",IDCANCEL,343,60,50,14
|
|
END
|
|
|