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 / articles / vbbultn / source / english.bas < prev    next >
Encoding:
BASIC Source File  |  1994-03-29  |  2.2 KB  |  47 lines

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