Source code of Windows XP (NT5)
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.

34 lines
1.4 KiB

  1. //
  2. // JonN 12/6/99 templated from SNAPIN\EVENTVWR
  3. //
  4. // Clients of CHOOSER2 should include this in their RC file.
  5. // Clients may also replace this resource as long as they
  6. // hold to its basic form and include the appropriate controls.
  7. //
  8. // Microsoft Windows
  9. // Copyright (C) Microsoft Corporation, 1997-2000
  10. //
  11. #include "chooser2.h"
  12. IDD_CHOOSER2 DIALOG DISCARDABLE 0, 0, 331, 124
  13. STYLE DS_MODALFRAME | DS_CONTEXTHELP | WS_POPUP | WS_CAPTION | WS_SYSMENU
  14. CAPTION "Select Computer"
  15. FONT 8, "MS Shell Dlg"
  16. BEGIN
  17. LTEXT "Select the computer you want this snap-in to manage.",
  18. IDD_CHOOSER2,7,6,317,8
  19. GROUPBOX "This snap-in will always manage:",
  20. -1,7,20,317,76
  21. CONTROL "&Local computer: (the computer this console is running on)",
  22. IDC_CHOOSER2_RADIO_LOCAL_MACHINE,"Button",
  23. BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP,16,34,297,10
  24. CONTROL "&Another computer:",IDC_CHOOSER2_RADIO_SPECIFIC_MACHINE,
  25. "Button",BS_AUTORADIOBUTTON,16,51,83,10
  26. EDITTEXT IDC_CHOOSER2_EDIT_MACHINE_NAME,102,50,154,13,
  27. ES_AUTOHSCROLL
  28. PUSHBUTTON "B&rowse...",IDC_CHOOSER2_BUTTON_BROWSE_MACHINENAMES,262,
  29. 49,53,14
  30. DEFPUSHBUTTON "OK",IDOK,222,104,50,14
  31. PUSHBUTTON "Cancel",IDCANCEL,274,104,50,14
  32. END