home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / msj / msjv3_3 / windebug / bugtest.rc < prev    next >
Encoding:
Text File  |  1989-03-02  |  1.2 KB  |  33 lines

  1. /*
  2.  * DEBUG TEST PROGRAM - RESOURCE FILE
  3.  *
  4.  * LANGUAGE : Microsoft C 5.0
  5.  * MODEL    : small
  6.  * STATUS    : operational
  7.  *
  8.  * 12/11/87 1.00 - Kevin P. Welch - initial creation.
  9.  *
  10.  */
  11.  
  12. #include <style.h>
  13. #include "debug.h"
  14.  
  15. BugTestIcon    ICON    bugtest.ico
  16.  
  17. DebugControl DIALOG LOADONCALL MOVEABLE DISCARDABLE 8, 20, 185, 81
  18. CAPTION "Debug Control Panel"
  19. STYLE WS_BORDER | WS_CAPTION | WS_DLGFRAME | WS_POPUP
  20. BEGIN
  21.    CONTROL "OFF - debug &inactive." BUG_OFF, "button", STD_RADIO, 5, 3, 130, 12
  22.    CONTROL "ON  - debug &active." BUG_ON, "button", STD_RADIO, 5, 15, 128, 12
  23.    CONTROL "&Count debug events." BUG_COUNT, "button", STD_CHECKBOX, 18, 26, 114, 12
  24.    CONTROL "&Display in debug window." BUG_DISPLAY, "button", STD_CHECKBOX, 18, 38, 114, 12
  25.    CONTROL "&Filter" BUG_FILTER, "button", STD_CHECKBOX, 18, 50, 34, 12
  26.    CONTROL "" BUG_FILTERLIST, "edit", STD_EDITFIELD, 55, 50, 78, 12
  27.    CONTROL "&Log to" BUG_LOG, "button", STD_CHECKBOX, 18, 62, 36, 12
  28.    CONTROL "" BUG_LOGFILE, "edit", STD_EDITFIELD , 55, 63, 78, 12
  29.    CONTROL "" -1, "static", STD_FRAME, 142, 0, 1, 81
  30.    CONTROL "Ok" BUG_OK, "button", DEF_BUTTON, 148, 4, 32, 14
  31.    CONTROL "Cancel" BUG_CANCEL, "button", STD_BUTTON, 148, 21, 32, 14
  32. END
  33.