home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 25: Programming / pc_actual_25.iso / C_C++ / BorlandCompiler / freecommandLinetools.exe / Include / msapcdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-06-27  |  2.6 KB  |  76 lines

  1. //#----------------------------------------------------------------------------
  2. //
  3. // Copyright (C) 1996-97  Microsoft Corporation.  All Rights Reserved.
  4. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  5. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  6. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  7. // PARTICULAR PURPOSE.
  8. //
  9. //  File:       msapcdlg.h
  10. //
  11. //  Synopsis:   Resource ID's for custom dialog 
  12. //
  13. //-----------------------------------------------------------------------------
  14. #ifndef _MSAPC_DLG_H_
  15. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  16. #define _MSAPC_DLG_H_
  17.  
  18. //
  19. //  This resource is a string containing the friendly name of the Realm
  20. //  This string can not be longer than 40 characters.
  21. //
  22. #define IDS_FRIENDLY_NAME   1001    
  23.  
  24. //
  25. //  Optional.  This resource is the label string for the user name input field
  26. //  This string must contain a '&' 
  27. //  This string can not be longer than 12 chars, not including the '&' character
  28. //
  29. #define IDS_USERNAME_LABEL  1002
  30.  
  31. //
  32. //  Optional.  This resource is the label string for the password input field
  33. //  This string must contain a '&' 
  34. //  This string can not be longer than 12 chars, not including the '&' character
  35. //
  36. #define IDS_PASSWORD_LABEL  1003
  37.  
  38. //
  39. //  Optional.  This resource is the message string displayed at the lower 
  40. //  message box area of the dialog.  This message string is displayed as soon 
  41. //  as the dialog is pop-up; it instructs the user to type in their user name
  42. //  and password to connect to the internet site.
  43. //  This string can not be longer than 128 characters.
  44. //
  45. #define IDS_ENTERNORP       1004
  46.  
  47. //
  48. //  Optional.  This resource is the message string displayed in a pop-up
  49. //  window if users forget to enter their name before hitting the OK button.
  50. //
  51. #define IDS_NOUSERNAME      1005
  52.  
  53. //
  54. //  Optional.  This resource is the message string displayed in a pop-up
  55. //  window if users forget to enter their password before hitting the OK button.
  56. //
  57. #define IDS_NOPASSWORD      1006
  58.  
  59. //
  60. //  Optional.  This resource is the label string for the check box where 
  61. //  users indicate to save their password persistently
  62. //  This string must contain a '&' 
  63. //  This string can not be longer than 50 chars, not including the '&' character
  64. //
  65. #define IDS_SAVEPWD_LABEL   1007
  66.  
  67. //
  68. //  Optional.  This resource is the message string displayed when users 
  69. //  have entered a password shorter than the minimum required length.
  70. //  This string can not be longer than 128 characters.
  71. //
  72. #define IDS_PWDTOOSHORT     1008
  73.  
  74. #pragma option pop /*P_O_Pop*/
  75. #endif // _MSAPC_DLG_H_
  76.