home *** CD-ROM | disk | FTP | other *** search
- Option Explicit
- 'Information and error message strings
- Global Const NOEMBEDDED = "No component files embedded into this EXE"
- Global Const NOSTRING = "No string file info for this language"
- Global Const NOFIXED = "No fixed file info for this file"
- Global Const NOCONFLICT = "No conflicts found"
-
- Global Const RSQ_OPENTITLE = "Select File to Version check"
-
- Global Const CONFLICT_REFFILENAME = "Reference File Name : "
- Global Const CONFLICT_REFFILEDATE = "Reference File Date : "
- Global Const CONFLICT_REFFILEVER = "Reference File Version : "
- Global Const CONFLICT_FILENAME = "Conflict File Name : "
- Global Const CONFLICT_FILEDATE = "Actual File Date : "
- Global Const CONFLICT_FILEVER = "Actual File Version : "
- Global Const CONFLICT_FILEFOUND = "Actual File Found : "
- Global Const CONFLICT_DESCRIPTION = "Description of Conflict : "
- Global Const CONFLICT_FILEINOTHERDIR = "File was also found in the following directories : "
-
- Global Const CONFLICT_OLDERFILE = "Older file was found (based on file date)."
- Global Const CONFLICT_NEWERFILE = "Newer file was found (based on file date)."
- Global Const CONFLICT_OLDERVERSION = "Older Version was found."
- Global Const CONFLICT_NEWERVERSION = "Newer Version was found."
- Global Const CONFLICT_SPECIALVERSION = "Special Version was found: "
- Global Const CONFLICT_ALWAYSWARN = "Always warn was set for this file."
- Global Const CONFLICT_FILEINMEMORY = "File was found in memory."
- Global Const CONFLICT_FILENOTFOUND = "No matching file was found."
- Global Const CONFLICT_VERINFONOTFOUND = "File does not contain Version Information."
-
- Global Const RPT_INCOMPATIBLEFILES = "The following Incompatible files were found:"
- Global Const RPT_REPORTTITLE = "Report For "
- Global Const RPT_SAVETITLE = "Write version conflict to file"
- Global Const RPT_CONFLICTTITLE = "File Conflict Report for "
-
- Global Const FF_DEBUG = "Debug"
- Global Const FF_INFOINFERRED = "Infoinferred"
- Global Const FF_PATCHED = "Patched"
- Global Const FF_PRERELEASE = "Prerelease"
- Global Const FF_PRIVATEBUILD = "PrivateBuild"
- Global Const FF_SPECIALBUILD = "SpecialBuild"
-
- Global Const VI_UNAVAILABLE = "Unavailable"
- Global Const VI_NONE = "None"
-
- Global Const INTERNAL_FILENAME = "VerResQ.Exe"
-
-