install.txt
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:7k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. Installation Instructions for Multimedia Tools
  2. -----------------------------------------------
  3. !!! Make sure you have downloaded the right version:
  4. - MMTOOL2.EXE : Delphi 2.0
  5. - MMTOOL3.EXE : Delphi 3.0
  6. - MMTOOL4.EXE : Delphi 4.0
  7. - MMTOOL5.EXE : Delphi 5.0
  8. - MMTOOL6.EXE : Delphi 6.0
  9. - MMTOOLC1.EXE: C++ Builder 1.0
  10. - MMTOOLC3.EXE: C++ Builder 3.0
  11. - MMTOOLC4.EXE: C++ Builder 4.0
  12. - MMTOOLC5.EXE: C++ Builder 5.0
  13. ===============================
  14. Delphi 2.0 and C++ Builder 1.0:
  15. ===============================
  16. Delphi     : BACKUP YOUR ....DELPHIBINCMPLIB32.DCL
  17. C++ Builder: BACKUP YOUR ....CBUILDERBINCMPLIB32.CCL
  18. Better safe than sorry.
  19. The installation has copied all Multimedia Tools VCL files onto your
  20. harddrive.  Copy these VCL files into a directory containing
  21. your 3rd party added VCL's.
  22. Execute Delphi or C++ Builder. In the IDE select ComponentsInstall...
  23. and browse your 3rd party added VCL's directory.
  24. >>>>>>   Select MMTOOLS.PAS and press the OK button.
  25. After the library is rebuilt, you will notice many new icons on your toolbar
  26. under MMTOOLS.
  27. ==========================
  28. Delphi 3.0, 4.0, 5.0, 6.0:
  29. ==========================
  30. The installation has copied all Multimedia Tools VCL files onto your
  31. harddrive.  Copy these VCL files into a directory containing
  32. your 3rd party added VCL's.
  33. Execute Delphi. In Delphi select FileOpen and browse
  34. your 3rd party added VCL's directory.
  35. Delphi 3.0: >>>>>>   Select MMTOOLS_D3.DPK and press the OK button.
  36. Delphi 4.0: >>>>>>   Select MMTOOLS_D4.DPK and press the OK button.
  37. Delphi 5.0: >>>>>>   Select MMTOOLS_D5.DPK and press the OK button.
  38. Delphi 6.0: >>>>>>   Select MMTOOLS_D6.DPK and press the OK button.
  39. Now compile the package and select install.
  40. After the package is rebuilt and installed, you will notice many new icons
  41. on your Delphi toolbar under MMTOOLS.
  42. ====================================
  43. C++ Builder 3.0, 4.0, 5.0:
  44. ====================================
  45. The installation has copied all Multimedia Tools VCL files onto your
  46. harddrive.  Copy these VCL files into a directory containing
  47. your 3rd party added VCL's.
  48. Execute C++ Builder. In C++ Builder select FileOpen and browse
  49. your 3rd party added VCL's directory.
  50. C++ Builder 3.0: >>>>>>   Select MMTOOLS_C3.BPK and press the OK button.
  51. C++ Builder 4.0: >>>>>>   Select MMTOOLS_C4.BPK and press the OK button.
  52. C++ Builder 5.0: >>>>>>   Select MMTOOLS_C5.BPK and press the OK button.
  53. Now compile the package and select ComponentInstall Package.
  54. After the package is rebuilt and installed, you will notice many new icons
  55. on your Delphi toolbar under MMTOOLS.
  56. Installation Troubleshooting:
  57. -----------------------------
  58. The Delphi Library searchpath is very short (127 characters). The more
  59. VCL components you add, the larger your searchpath. Should you get a
  60. message MMTOOLS.PAS or  MMTOOLS.DCU not found, then your path is being
  61. truncated, the solution is to copy several 3rd party VCLs into one directory
  62. and delete the freed directories from your searchpath.
  63. If Complib cannot find a required DLL you will notice that all Icons
  64. are gone from your delphi toolbar and you get a message COMPLIB.DCL not found.
  65. No Panic, just copy all required DLLs to the windowssystem directory
  66. and restart Delphi.
  67. Delphi 2.0:
  68. -----------
  69. There is a known problem with Delphi 2.0 that causes the CMPLIB install and
  70. rebuild functions to fail.  Here is a description of the problem and a work-around.
  71. If you add too many VCLs to the library you may get one of the following two
  72. link errors:
  73.     - Link stack overflow.
  74.     - Access violation $FFFFFFFF
  75. The only remody for this is to remove components from the library until the
  76. link successeds.  This is done in the "Install Components" dialog by highlighting
  77. a name in the "Installed units" box and clicking the Remove button. The component
  78. will be removed from the library but will NOT be deleted from your disk. You can
  79. add components back in to the library if you remove something that you are not
  80. using in your programs.
  81. Users who have run into this problem linking the MMTools components have
  82. been able to rebuild the component library by removing only one or two component
  83. registration units.
  84. What to do when the link fails:
  85. When the link fails, sometimes, but not always, CMPLIB32.DLL (an intermediate
  86. link file) needs to be deleted.  You must exit Delphi to delete this file due
  87. to a sharing violation.  You also need to copy a valid CMPLIB32.DCL to your
  88. Delphi20Bin directory.
  89. Here are two batch files one of our users sent us to make it easier to deal
  90. with rebuild errors. Be sure to change the drive and path to Delphi to match
  91. your system.
  92.   D:Delphi20BinBackupGET.BAT     (save a good rebuild)
  93.     D:
  94.     cd D:Delphi20BinBackup
  95.     copy ..CMPLIB32.DCL
  96.     copy ..DELPHI32.DMT
  97.     copy ..DELPHI32.DRO
  98.     copy ..DELPHI32.DSK
  99.   D:Delphi20BinBackupOOPS.BAT    (restore a good rebuild)
  100.     D:
  101.     cd D:Delphi20BinBackup
  102.     if exist  ..CMPLIB32.DLL del  ..CMPLIB32.DLL
  103.     copy CMPLIB32.DCL ..
  104.     copy DELPHI32.DMT ..
  105.     copy DELPHI32.DRO ..
  106.     copy DELPHI32.DSK ..
  107. Delphi 2.0:
  108. -----------
  109. Sometimes you get the following error:
  110. "Error: (0): Overflow in conversion or arithmetic operation."
  111. In such a case please disable debug infos for the component library
  112. or the project !
  113. (Menu: ToolsOptionsLibrary...)
  114. Delphi 3.0, 4.0, 5.0:
  115. ---------------------
  116. Sometimes Delphi crashes if you have (re)compiled a package, this is a
  117. bug in Delphi and we don't know a solution. Simply restart your machine
  118. and load the previous compiled package.
  119. C++ Builder 1.0:
  120. ----------------
  121. There is a known problem with C++ Builder that causes the linker to fail
  122. with the following error message:
  123. [Linker Error] Fatal Assertion failded:
  124. !lastLine || lines[0].offset+base >= lastLine->offset at "IMPORT.CPP", line xxxx
  125. The only solution is compiling the library or project again. If this occurs in
  126. a project don't recompile the project, simply start the app (Menu: RunRun...)
  127. NOTE: This error occurs only with imported Delphi projects, for example our
  128.       demo projects. It occurs not with C++ projects !
  129. C++ Builder 3.0:
  130. ----------------
  131. Some times C++ Builder generates a access violation while starting a projct.
  132. Simply open the project options and toggle the full debug options two times.
  133. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  134. NOTE: If you run the MMTools demos with C++ Builder don't forget to set the
  135.       library and project searchpath to your MMTools directory:
  136.       OptionsEnvironmentDirectories
  137.       OptionsProjectDirectories