Registriert seit: 27. Apr 2005
Ort: Görlitz
1.358 Beiträge
Delphi XE2 Professional
|
AW: TVirtualStringTree und Strg+C
17. Jun 2010, 19:50
Bei mir funktioniert es so:
Delphi-Quellcode:
procedure TForm7.VirtualStringTree1KeyUp(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if (Key = Ord('C')) and (ssCtrl in Shift) then
Caption := Format('%P', [VirtualStringTree1.GetFirstSelected]);
end;
Benjamin Schwarze If I have seen further it is by standing on the shoulders of Giants. (Isaac Newton)
|