Also bei mir kommt nur VirtualEditTreeReg fehle. Was aber auch kein Wunder ist, weil in der Projektdatei (.dpk, Projekt -_> Quelltext anzeigen) ein seltsames relatives Verzeichnis drin ist. Bei mir (D2006) funktioniert es so problemlos, wobei in der Zeile mit VirtualTreesD10 bei dir dann wohl VirtualTreesD5 hingehört (sonst lösch das einfach, Delphi fragt dann):
Delphi-Quellcode:
package VirtualEditTreeD6;
{$R *.res}
{$R 'VirtualEditTree.dcr'}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO ON}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION OFF}
{$OVERFLOWCHECKS ON}
{$RANGECHECKS ON}
{$REFERENCEINFO OFF}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $30400000}
{$DESCRIPTION 'Virtual Treeview'}
{$IMPLICITBUILD ON}
requires
rtl,
dclstd,
VclSmp,
VirtualTreesD10;
contains
VirtualEditTreeReg
in '
VirtualEditTreeReg.pas',
VirtualEditTree
in '
VirtualEditTree.pas',
VTEditors
in '
VTEditors.pas';
end.