Cry about...
Delphi Troubleshooting
File not found: CDO_TLB.dcu
Symptom:
When compiling a Delphi unit, a "uses" clause generates the following
error:
[Fatal Error] File not found: 'CDO_TLB.dcu'
Cause:
The unit CDO_TLB provides access the the classes found in the library
cdosys.dll, this provides access to various CDO (collaboration data objects)
classes.
This error is generated if the library file cdosys.dll has not been imported
into a unit.
Remedy:
Import "CDO". Do this by:
- Start up Delphi.
- On the "Project" menu in the main toolbar select "Import Type Library..."
- Scroll down the list and select "CDO". (If this isn't shown in the
list then click [Add] and add "C:\WINDOWS\system32\cdosys.dll", then
try again.)
- The "Class names" should then list "TMessage", "TConfiguration"
and "TDropDirectory".
- Click [Create Unit]
These notes are believed to be correct for Delphi 6 and
Delphi 7, and may apply to other versions as well.
|