Guten Tag,
ich habe eine
Unit in der ich die VirtualStringTrees einstelle. In der CE10.4 ist noch alles in Ordnung. In der CE11.3 werden beim Compilieren
nur Fehler geworfen, dass alle Bezüge auf das VST nicht mehr compiliert werden können.
Hat jemand wissen darüber ob für das VirtualStringTree andere Optionen oder sonstige sich geändert hat?
Delphi-Quellcode:
procedure TOVST_Einstellung.Stell_Vst_Ein;
var
aVST: TVirtualStringTree;
begin
aVST := FVST;
aVST.LineStyle := lsSolid; // Fehleranzeige
aVST.Color := $00D0F8FF;
with aVST.Colors do // Fehleranzeige
begin
HotColor := clFuchsia;
TreeLineColor := clRed;
FocusedSelectionColor := clBlack;
UnfocusedSelectionColor := $0000C0FF;
UnfocusedSelectionBorderColor := clRed;
end;
with aVST.TreeOptions do
begin
MiscOptions := MiscOptions + [toEditable, toAcceptOLEDrop, toCheckSupport, toFullRepaintOnResize, toInitOnSave];
PaintOptions := PaintOptions + [toShowVertGridLines, toShowHorzGridLines, toShowRoot, toUseblendedImages,
toUseBlendedSelection];
SelectionOptions := SelectionOptions + [toExtendedFocus, toFullRowSelect, toRightClickSelect];
end;
aVST.CheckImageKind := ckSystemDefault;
aVST.DragMode := dmAutomatic;
aVST.DragType := dtOLE;
end;
Die aktuelle Version für das VirtualStringTree habe ich bei der JAM-Software herruntergeladen.
Aber auch die Installation aus der CE11.3 über GetIT funktioniert nicht.
Vielen Dank für Eure evtl. Hilfe