/***********************************************************************/ /* PROPERTY OF STATE OF GEORGIA DEPARTMENT OF REVENUE, 2001 */ /***********************************************************************/ // Created by Larry Leonard, Definitive Solutions, Inc. // // MYLOG.RC2 - resources Microsoft Visual C++ does not edit directly // #ifdef APSTUDIO_INVOKED #error this file is not editable by Microsoft Visual C++ #endif //APSTUDIO_INVOKED ///////////////////////////////////////////////////////////////////////////// // Add manually edited resources here... ///////////////////////////////////////////////////////////////////////////// // // Dialog // IDD_MYLOG DIALOG DISCARDABLE 0, 0, 350, 213 STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME CAPTION "Dialog" FONT 8, "MS Sans Serif" BEGIN LTEXT "For debugging purposes, it is convenient to be able to log at different severity levels. This dialog allows you to set the logging level for this application.", IDC_STATIC_MYLOG_TEXT0,5,7,336,16 LTEXT "The five message levels, in order of severity, are Audit, Error, Warning, Trace, and Debug. You can see descriptions of each type by hovering over the colored buttons below.", IDC_STATIC_MYLOG_TEXT1,5,31,336,16 LTEXT "The more message levels logged, the more information is provided - but, the application runs more slowly. So, including Trace and/or Debug levels is not recommended for normal use.", IDC_STATIC_MYLOG_TEXT2, 5,55,336,16 LTEXT "The logging level selected below is in effect for the current program run only. That is, when the program exits, the logging level is automatically reset to Warning, the normal default setting.", IDC_STATIC_MYLOG_TEXT3,5,79,336,16 CONTROL "",IDC_STATIC_MYLOG_LINE0,"Static",SS_ETCHEDHORZ,7,106,336,1 CTEXT "None",IDC_STATIC_MYLOG_NOLOG,7,119,50,14,SS_NOPREFIX | SS_CENTERIMAGE | SS_NOTIFY |WS_BORDER CTEXT "Audit",IDC_STATIC_MYLOG_AUDIT,62,119,50,14,SS_NOPREFIX | SS_CENTERIMAGE | SS_NOTIFY |WS_BORDER CTEXT "Error",IDC_STATIC_MYLOG_ERROR,117,119,50,14,SS_NOPREFIX | SS_CENTERIMAGE | SS_NOTIFY |WS_BORDER CTEXT "Warning",IDC_STATIC_MYLOG_WARNS,172,119,50,14, SS_NOPREFIX | SS_CENTERIMAGE | SS_NOTIFY |WS_BORDER CTEXT "Trace",IDC_STATIC_MYLOG_TRACE,227,119,50,14,SS_NOPREFIX | SS_CENTERIMAGE | SS_NOTIFY |WS_BORDER CTEXT "Debug",IDC_STATIC_MYLOG_DEBUG,282,119,50,14,SS_NOPREFIX | SS_CENTERIMAGE | SS_NOTIFY |WS_BORDER CONTROL "Slider1",IDC_SLIDER_MYLOG,"msctls_trackbar32",TBS_BOTH | TBS_NOTICKS | WS_TABSTOP,57,138,292,15 LTEXT "Less Logging",IDC_STATIC_MYLOG_LESSLOGGING,5,156,43,8 LTEXT "Faster",IDC_STATIC_MYLOG_FASTER,5,169,20,8 CTEXT "Desc", IDC_STATIC_MYLOG_DESC, 57, 156, 233, 14, SS_NOPREFIX | SS_CENTERIMAGE | SS_CENTERIMAGE | SS_NOTIFY | WS_BORDER LTEXT "More Logging",IDC_STATIC_MYLOG_MORELOGGING,297,156,44,8 LTEXT "Slower",IDC_STATIC_MYLOG_SLOWER,319,169,22,8 CONTROL "",IDC_STATIC_MYLOG_LINE1,"Static",SS_ETCHEDHORZ,7,188,336,1 PUSHBUTTON "Cancel",IDCANCEL,231,195,50,14, BS_OWNERDRAW DEFPUSHBUTTON "OK",IDOK,291,195,50,14, BS_OWNERDRAW END ///////////////////////////////////////////////////////////////////////////// // // String Table // STRINGTABLE DISCARDABLE BEGIN API_FAILURE "API Failure for <%s> is <%d>: <%s>" NEW_FAILURE "New failure <%s>" REGISTRY_NOT_OPEN "The Registry is not open on key <%s>." NULL_POINTER "Null pointer encountered for variable <%s>" BAD_DEFAULT_CASE "Bad default case encountered in function <%s>." END STRINGTABLE DISCARDABLE BEGIN ID_ENABLELOGGING "Enable Logging\nEnable Logging" ID_VIEWLOG "View Log\nView Log" END STRINGTABLE DISCARDABLE BEGIN IDC_SLIDER_MYLOG "Slide to set the applications logging level" IDC_STATIC_MYLOG_NOLOG "No logging will be done" IDC_STATIC_MYLOG_AUDIT "Infrequent, informational message" IDC_STATIC_MYLOG_ERROR "Indicates a unexpected, severe problem" IDC_STATIC_MYLOG_WARNS "Indicates a unexpected, minor problem" IDC_STATIC_MYLOG_TRACE "Frequent, detailed debugging message" IDC_STATIC_MYLOG_DEBUG "Very frequently, very detailed debugging message" IDC_STATIC_MYLOG_DESC "Describes the currently selected level" END STRINGTABLE DISCARDABLE BEGIN IDS_MYLOG_NOLOG_DESC "No logging will be done. Fastest setting." IDS_MYLOG_AUDIT_DESC "Only Audit messages logged. Not recommended." IDS_MYLOG_ERROR_DESC "Only Audit and Error messages logged. Not recommended." IDS_MYLOG_WARNS_DESC "Audit, Error, and Warning messages logged. (Default)" IDS_MYLOG_TRACE_DESC "Audit, Error, Warning, Trace messages logged." IDS_MYLOG_DEBUG_DESC "Maximum logging will be done. Slowest setting." END