home *** CD-ROM | disk | FTP | other *** search
/ Dan Appleman's Visual Bas…s Guide to the Win32 API / Dan.Applmans.Visual.Basic.5.0.Programmers.Guide.To.The.Win32.API.1997.Ziff-Davis.Press.CD / VB5PG32.mdf / desaware / demo32 / vs5demo / english.bas next >
Encoding:
BASIC Source File  |  1995-07-20  |  2.5 KB  |  53 lines

  1. Attribute VB_Name = "ENGLISH"
  2. Option Explicit
  3. 'Information and error message strings
  4. Global Const NOEMBEDDED = "No component files embedded into this EXE"
  5. Global Const NOSTRING = "No string file info for this language"
  6. Global Const NOFIXED = "No fixed file info for this file"
  7. Global Const NOCONFLICT = "No conflicts found"
  8.  
  9. Global Const RSQ_OPENTITLE = "Select File to Version check"
  10.  
  11. Global Const CONFLICT_REFFILENAME = "Reference File Name : "
  12. Global Const CONFLICT_REFFILEDATE = "Reference File Date : "
  13. Global Const CONFLICT_REFFILESIZE = "Reference File Size : "
  14. Global Const CONFLICT_REFFILEVER = "Reference File Version : "
  15. Global Const CONFLICT_FILENAME = "Conflict File Name : "
  16. Global Const CONFLICT_FILEDATE = "Actual File Date : "
  17. Global Const CONFLICT_FILESIZE = "Actual File Size : "
  18. Global Const CONFLICT_FILEVER = "Actual File Version : "
  19. Global Const CONFLICT_FILEFOUND = "Actual File Found : "
  20. Global Const CONFLICT_DESCRIPTION = "Description of Conflict : "
  21. Global Const CONFLICT_FILEINOTHERDIR = "File was also found in the following directories : "
  22.  
  23. Global Const CONFLICT_OLDERFILE = "Older file was found (based on file date)."
  24. Global Const CONFLICT_NEWERFILE = "Newer file was found (based on file date)."
  25. Global Const CONFLICT_OLDERVERSION = "Older Version was found."
  26. Global Const CONFLICT_NEWERVERSION = "Newer Version was found."
  27. Global Const CONFLICT_SPECIALVERSION = "Special Version was found: "
  28. Global Const CONFLICT_ALWAYSWARN = "Always warn was set for this file."
  29. Global Const CONFLICT_FILEINMEMORY = "File was found in memory."
  30. Global Const CONFLICT_FILENOTFOUND = "No matching file was found."
  31. Global Const CONFLICT_VERINFONOTFOUND = "File does not contain Version Information."
  32. Global Const CONFLICT_FILESIZELARGER = "Larger size file was found."
  33. Global Const CONFLICT_FILESIZESMALLER = "Smaller size file was found."
  34. Global Const CONFLICT_NOTINREGISTRY = "File was not registered in registry."
  35.  
  36. Global Const RPT_INCOMPATIBLEFILES = "The following Incompatible files were found:"
  37. Global Const RPT_REPORTTITLE = "Report For "
  38. Global Const RPT_SAVETITLE = "Write version conflict to file"
  39. Global Const RPT_CONFLICTTITLE = "File Conflict Report for "
  40.  
  41. Global Const FF_DEBUG = "Debug"
  42. Global Const FF_INFOINFERRED = "Infoinferred"
  43. Global Const FF_PATCHED = "Patched"
  44. Global Const FF_PRERELEASE = "Prerelease"
  45. Global Const FF_PRIVATEBUILD = "PrivateBuild"
  46. Global Const FF_SPECIALBUILD = "SpecialBuild"
  47.  
  48. Global Const VI_UNAVAILABLE = "Unavailable"
  49. Global Const VI_NONE = "None"
  50.  
  51. Global Const INTERNAL_FILENAME = "VerResQ.Exe"
  52.  
  53.