Einzelnen Beitrag anzeigen

NoName1

Registriert seit: 8. Mär 2018
196 Beiträge
 
Delphi 12 Athens
 
#1

VirtualStringTree für die CE-11.3

  Alt 6. Mai 2023, 15:29
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

Geändert von NoName1 ( 6. Mai 2023 um 15:32 Uhr)
  Mit Zitat antworten Zitat