home *** CD-ROM | disk | FTP | other *** search
/ Chip Hitware 10 / Chip_Hitware_Vol_10.iso / chiphit / tools / 95linkch / readme.txt < prev    next >
Text File  |  1997-10-06  |  8KB  |  218 lines

  1. =====================================================================
  2.                            Link Check
  3.                              v5.7
  4.                Windows 3.x, Windows 95, Windows NT
  5.                              Oct 1997
  6.             Copyright (C) Karri Software Ltd 1994-1997
  7. =====================================================================
  8.  
  9.  /*
  10.  ** Installation Notes
  11.  */
  12.  
  13.  It is recommended that all of the files contained in this package
  14.  are unzipped to a single directory such as C:\LINKCHK. This will
  15.  avoid any future versioning problems between different releases
  16.  of the program(s).
  17.  
  18.  The Windows 95 version does not run under Windows NT due to Kernel
  19.  differences between the two operating systems. Please use the NT
  20.  version instead.
  21.  
  22.  
  23.  /*
  24.  ** What's New
  25.  */
  26.  
  27.  There have been many changes made to the programs, the main highlights
  28.  being:
  29.  
  30.  - Now fully functional
  31.  - All version information now shown
  32.  - Clipboard copy added for all info in tab-delimited form for easy export
  33.  - "Ignore Modules in Memory" Option added
  34.  - "Show Self-Registering Executables" Option added for identification of
  35.    those files (32-bit only)
  36.  - New interface
  37.  - .OCXs are now shown correctly in the Windows NT version
  38.  - New reports
  39.  - New "Memory Details" display
  40.  - Old executable (MZ) header display added
  41.  - New executable (NE) header display added
  42.  - Portable executable (PE) header display added (32-bit only)
  43.  - Improved toolbar
  44.  - Function Check displays can now be sorted
  45.  - Ordinals in Function Check can now be displayed in decimal/hexadecimal
  46.  - CTL3D32.DLL fix for Windows NT version
  47.  - Can now self-register and unregister DLLs from the Registry (32-bit only)
  48.  - Link Check can now create a response file for zipping purposes
  49.  - Evaluation period extended to 30 days
  50.  - Help files merged into just the one (WLCHECK.HLP)
  51.  - Other minor bugs fixed
  52.  
  53.  Also please visit our new Web page:
  54.  
  55.            http://ourworld.compuserve.com/homepages/KarriSL
  56.  
  57.  /*
  58.  ** Introduction
  59.  */
  60.  
  61.  Link Check is a suite of three (3) diagnostic programs which allows
  62.  the user to examine different areas of the system. These are useful
  63.  not only on solving system problems but also for learning about the
  64.  system.
  65.  
  66.  All three programs show version and file information on any of the
  67.  modules (files) for identification purposes as well as interacting
  68.  with each other.
  69.  
  70.  Armed with these three, you should be able to solve most of your
  71.  software problems:
  72.  
  73.  
  74.  /*
  75.  ** 1) Link Check
  76.  */
  77.  
  78.  Link Check enables the user to view the links between an executable
  79.  file and the modules it requires to run on the system. This tool is
  80.  useful for analyzing those "Cannot find (filename) or one of its
  81.  components" system error messages.
  82.  
  83.  You may also use Link Check to view which versions of modules (DLLs,
  84.  VBXs, OCXs) the program will actually use in the system as there are
  85.  duplicate DLLs frequently lying about the network or the machine.
  86.  
  87.  Link Check mimics the system when a program is finally executed by the
  88.  operating system (Windows). This will help in determining beforehand
  89.  whether a program will run or not, or which particular copy of a .DLL
  90.  it is going to use if there are multiple copies lying around the system.
  91.  
  92.  Any file(s) required by the program that are missing from the system will
  93.  be highlighted with a red exclamation mark. It could be that the file(s)
  94.  are actually present on the system but will not get picked up by the system
  95.  during run time. This could be because the system environment variable PATH
  96.  has been changed.
  97.  
  98.  Link Check is also useful for analyzing software installation problems
  99.  as well as indicating which support modules should be backed-up with a
  100.  particular program.
  101.  
  102.  
  103.  /*
  104.  ** 2) Memory Check
  105.  */
  106.  
  107.  Memory Check allows the user to view, load and unload modules currently
  108.  in memory. You may also view the current status of memory, including the
  109.  amount of free memory left.
  110.  
  111.  Important version information about each module can be displayed and you
  112.  may create and print a summary report of the state of the system.
  113.  
  114.  Memory Check really comes into play when some program has ended abnormally
  115.  and has left modules lying around in memory. The system might behave
  116.  irratically but more to the point, those modules take up valuable memory.
  117.  In these situations you can use Memory Check to unload those modules and
  118.  save a reboot of Windows.
  119.  
  120.  Warning: Sometimes a clean unload is not possible and you may find yourself
  121.  unceremoniously dumped back on to the C: prompt, so please do use care when
  122.  unloading.
  123.  
  124.  You may also verify exactly which version of a module is currently loaded
  125.  in memory. Sometimes some programs will not run because a wrong version of
  126.  a particular module (.DLL) has already been loaded into memory by some
  127.  other application. Windows does not load a new copy of a file with the same
  128.  file name but will simply increase the "usage count" of the module already
  129.  in memory. These "usage counts" are displayed by Memory Check as a number
  130.  in parenthesis () after the file name.
  131.  
  132.  WINSOCK.DLL is a very good example of a module which shares very many
  133.  different versions. Most communications programs require their own particular
  134.  version of WINSOCK.DLL to be loaded, but if another application has put
  135.  their version in first, it is highly likely that the second one will fail
  136.  or behave in manner not designed by the programmers. Use Memory Check to
  137.  solve these type of problems.
  138.  
  139.  
  140.  /*
  141.  ** 3) Function Check
  142.  */
  143.  
  144.  Function Check allows the user to view actual function calls inside
  145.  modules. This program is useful for analyzing those "Call to Undefined
  146.  Dynalink" system error messages.
  147.  
  148.  When a program calls a module (.DLL) to execute a function (piece of
  149.  code) inside the .DLL and that particular function does not exist in
  150.  the .DLL, a "Call to Undefined Dynalink" error is raised by the system.
  151.  These can occur when a newer version of a .DLL is accidentally replaced
  152.  by an older version of the same .DLL. A program is compiled to use the new
  153.  functionality of the .DLL but can come unstuck when that .DLL is replaced
  154.  by an older version which does not contain the new functionality.
  155.  
  156.  Some installation programs are prone to do this "accidental" replacement.
  157.  
  158.  Function Check cross-checks all function calls in an executable with
  159.  the ones in all of the .DLLs (modules) that it uses, to verify that
  160.  all of the functions all present.
  161.  
  162.  Should your program throw up one of those "Call to Undefined Dynalink"
  163.  messages, Function Check will show you which module is at fault.
  164.  
  165.  
  166.  /*
  167.  ** How to Register/Order
  168.  */
  169.  
  170.  Please see the "About" dialog box and click on the "Ordering Information"
  171.  pushbutton.
  172.  
  173.  Alternatively, please see the online Help file for the same section
  174.  obtainable from the "Contents" page.
  175.  
  176.  If all else fails, please visit our Web page:
  177.  
  178.            http://ourworld.compuserve.com/homepages/KarriSL
  179.  
  180.  /*
  181.  ** Registered Version
  182.  */
  183.  
  184.  You have the registered version. Some features are disabled and you
  185.  have a 30-day evaluation period to test the program. Should you
  186.  decide to register we will email you a license file which will give
  187.  you full access to all of the features as well as removing the time
  188.  limit. This license file will also work across different releases;
  189.  you only need to obtain it once. Should you lose it or should it
  190.  become corrupt, please email us and we will send you a new copy.
  191.  
  192.  
  193.  /*
  194.  ** Price Details
  195.  */
  196.  
  197.  Link Check for Windows 3.x   - $29
  198.  Link Check for Windows 95    - $35
  199.  Link Check for Windows NT    - $35
  200.  Link Check Suite (all three) - $50
  201.  
  202.  Note that all future upgrades are free.
  203.  
  204.  
  205.  /*
  206.  ** Technical Support
  207.  */
  208.  
  209.  The Windows Utility forum on CompuServe (GO WINUTIL) is now the
  210.  official home of Link Check. You may pass any questions on to
  211.  their online staff.
  212.  
  213.  You can always get in touch with us too, please email any questions
  214.  to:
  215.  
  216.                    KarriSL@compuserve.com
  217.  
  218.