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.

61 lines
2.0 KiB

  1. #include <windows.h>
  2. #include "resource.h"
  3. // NetMeeting version information
  4. #define VER_FILETYPE VFT_APP
  5. #define VER_DESCRIPTION_STR "Sample Server App"
  6. #define VER_INTERNALNAME_STR "Server"
  7. #define VER_ORIGNAME_STR "Server.exe"
  8. #ifndef APSTUDIO_INVOKED
  9. #include <version.rc>
  10. #endif
  11. IDD_SERVERUI DIALOGEX 0, 0, 220, 198
  12. CAPTION "Server - Remote Desktop"
  13. STYLE WS_POPUP | WS_CAPTION | WS_BORDER | WS_MINIMIZEBOX | WS_SYSMENU
  14. EXSTYLE WS_EX_DLGMODALFRAME
  15. FONT 8, "MS Shell Dlg", 0, 0, 0x1
  16. BEGIN
  17. // Edit field to enter string (with font...)
  18. CONTROL "Activate!", IDC_ACTIVATE, "button", BS_CHECKBOX | BS_PUSHLIKE,
  19. 7, 7, 64, 14
  20. CONTROL "Use security/encryption", IDC_SECURITY,
  21. "button", BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP,
  22. 7, 28, 96, 12
  23. CONTROL "Unattended mode", IDC_UNATTENDED,
  24. "button", BS_AUTOCHECKBOX | WS_TABSTOP,
  25. 7, 44, 96, 12
  26. CONTROL "Who's in the conference:", -1, "static", SS_LEFT,
  27. 117, 7, 96, 8
  28. CONTROL "", IDC_ROSTER, "listbox", LBS_HASSTRINGS | LBS_DISABLENOSCROLL |
  29. WS_VSCROLL | WS_BORDER | WS_GROUP | WS_TABSTOP,
  30. 117, 19, 96, 72
  31. CONTROL "Send private data:", -1, "static", SS_LEFT,
  32. 7, 89, 96, 8
  33. CONTROL "", IDC_PRIVATESEND, "edit", ES_MULTILINE | ES_AUTOVSCROLL |
  34. ES_WANTRETURN | WS_BORDER | WS_GROUP | WS_TABSTOP,
  35. 7, 101, 96, 72
  36. CONTROL "Send Data", IDC_SENDBUTTON, "button", BS_PUSHBUTTON | WS_TABSTOP |
  37. WS_GROUP,
  38. 7, 177, 50, 14
  39. CONTROL "Received private data:", -1, "static", SS_LEFT,
  40. 117, 89, 96, 8
  41. CONTROL "", IDC_PRIVATERECV, "edit", ES_MULTILINE | ES_AUTOVSCROLL |
  42. ES_READONLY | WS_BORDER | WS_GROUP | WS_TABSTOP,
  43. 117, 101, 96, 72
  44. END
  45. STRINGTABLE DISCARDABLE
  46. BEGIN
  47. IDS_ACTIVATE "Activate!"
  48. IDS_DEACTIVATE "Deactivate!"
  49. IDS_CONFERENCE_TITLE "Remote Desktop Sharing"
  50. END