home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / DelphiWin32 / VCLWin32 / ShellControls / ShellConsts.pas next >
Encoding:
Pascal/Delphi Source File  |  2004-10-22  |  1.1 KB  |  35 lines

  1. {*********************************************************}
  2. {                                                         }
  3. {       Borland Delphi Visual Component Library           }
  4. {                                                         }
  5. {       Copyright (c) 1995, 2001-2002 Borland Corporation }
  6. {                                                         }
  7. {*********************************************************}
  8.  
  9. unit ShellConsts;
  10.  
  11. interface
  12.  
  13. resourcestring
  14.   SShellDefaultNameStr = 'Name';
  15.   SShellDefaultSizeStr = 'Size';
  16.   SShellDefaultTypeStr = 'Type';
  17.   SShellDefaultModifiedStr = 'Modified';
  18.   SShellNoDetails = 'Unable to retrieve folder details for "%s". Error code $%x';
  19.   SCallLoadDetails = '%s: Missing call to LoadColumnDetails';
  20.   SPalletePage = 'Samples';
  21.   SPropertyName = 'Root';
  22.   SRenamedFailedError = 'Rename to %s failed';
  23.  
  24. const
  25.   SRFDesktop = 'rfDesktop'; { Do not localize }
  26.   SCmdVerbOpen = 'open'; { Do not localize }
  27.   SCmdVerbRename = 'rename'; { Do not localize }
  28.   SCmdVerbDelete = 'delete'; { Do not localize }
  29.   SCmdVerbPaste = 'paste'; { Do not localize }
  30.  
  31.  
  32. implementation
  33.  
  34. end.
  35.