home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / winnt / perfmon / logoptns.dlg < prev    next >
Text File  |  1995-01-10  |  3KB  |  79 lines

  1. //---------------------------------------------------------------------------
  2. // FileOpen.dlg :  File Open and Save As dialog descriptions
  3. //
  4. // Copyright (c) Microsoft Corporation, 1990-1995
  5. //---------------------------------------------------------------------------
  6.  
  7. #include "dlgs.h"
  8.  
  9.  
  10.  
  11. #define LeftCol               16
  12. #define RightCol             120
  13. #define ButtonCol            243
  14.  
  15.  
  16. #define LBS_DISABLENOSCROLL   0x1000L
  17.  
  18.  
  19. idDlgLogOptions DIALOG LOADONCALL MOVEABLE DISCARDABLE
  20. 36, 24,  300, 208
  21. CAPTION "Open"
  22. STYLE WS_CAPTION | WS_SYSMENU | WS_POPUP | DS_MODALFRAME
  23. FONT 8, "MS Sans Serif"
  24. BEGIN
  25.     GROUPBOX        "Log File", -1, 4, 6, 220, 145
  26.  
  27.     LTEXT "File &Name:", stc3,   LeftCol,    16,  76,  9
  28.     CONTROL "", edt1, "edit", ES_LEFT | ES_AUTOHSCROLL | WS_BORDER |
  29.             WS_TABSTOP | WS_CHILD | ES_LOWERCASE,
  30.            LeftCol,    26,  90,  12
  31.     CONTROL "", lst1, "listbox",
  32.             LBS_SORT | LBS_HASSTRINGS | LBS_NOTIFY | LBS_DISABLENOSCROLL
  33.             | WS_VSCROLL | WS_CHILD | WS_BORDER | WS_TABSTOP
  34.             | LBS_OWNERDRAWFIXED,
  35.            LeftCol,  42,  90,  68
  36.  
  37.     LTEXT "&Directories:", -1, RightCol,  16,  92,   9
  38.     LTEXT "", stc1, RightCol,  28,  92,   9, SS_NOPREFIX
  39.     CONTROL "", lst2, "listbox",
  40.             LBS_SORT | LBS_HASSTRINGS | LBS_NOTIFY | LBS_DISABLENOSCROLL
  41.             | WS_VSCROLL | WS_CHILD | WS_BORDER | WS_TABSTOP
  42.             | LBS_OWNERDRAWFIXED,
  43.             RightCol,  42,  92,  68
  44.  
  45.     LTEXT "List Files of &Type:", stc2,LeftCol,  114,  90,   9
  46.     CONTROL "", cmb1, "combobox", CBS_DROPDOWNLIST | CBS_AUTOHSCROLL |
  47.             WS_BORDER | WS_VSCROLL | WS_TABSTOP | WS_CHILD,
  48.            LeftCol,  124,  90,  36
  49.  
  50.     LTEXT "Dri&ves:", stc4, RightCol, 114,  92,  9
  51.     CONTROL "", cmb2, "combobox",
  52.             CBS_SORT | CBS_HASSTRINGS | CBS_OWNERDRAWFIXED | CBS_DROPDOWNLIST
  53.             | WS_CHILD | CBS_AUTOHSCROLL | WS_BORDER | WS_VSCROLL
  54.             | WS_TABSTOP,
  55.             RightCol, 124,  92, 68
  56.  
  57.     GROUPBOX        "Update Time", 210, 4, 157, 172, 46
  58.     LTEXT "&Interval (seconds):", IDD_LOGOPTINTERVALTEXT, 
  59.           79,  164,  90,   9
  60.     CONTROL "", IDD_LOGOPTINTERVAL, "combobox", CBS_DROPDOWN | CBS_AUTOHSCROLL |
  61.             WS_BORDER | WS_VSCROLL | WS_TABSTOP | WS_CHILD,
  62.            79,  174,  90,  36
  63.     CONTROL "&Periodic Update", IDD_LOGOPTIONSPERIODIC, "Button", 
  64.            BS_RADIOBUTTON, 9, 174, 66, 10
  65.     CONTROL "&Manual Update", IDD_LOGOPTIONSMANUALREFRESH, "Button", 
  66.            BS_RADIOBUTTON, 9, 189, 66, 10
  67.  
  68.     DEFPUSHBUTTON "OK", IDOK,      ButtonCol,  6,  50,  14, WS_GROUP
  69.     PUSHBUTTON "Cancel",IDCANCEL,  ButtonCol,  24,  50,  14, WS_GROUP
  70.     PUSHBUTTON "&Start Log", IDD_LOGOPTSTART, ButtonCol, 52, 50, 14, WS_GROUP
  71.  
  72.     PUSHBUTTON "&Help", ID_HELP,   ButtonCol,  98,  50,  14, WS_GROUP
  73.     PUSHBUTTON "Net&work", psh14,   ButtonCol,  124,  50,  14, WS_GROUP
  74.  
  75.     AUTOCHECKBOX "&Read Only", chx1, ButtonCol,  68,  50,  12,
  76.                        WS_TABSTOP | WS_GROUP
  77.  
  78. END
  79.