Hallo haentschman,
wie Positionierst Du die Form auf dem VST.
Ich habe das ganze wie folgt versucht, die Position passt aber nicht...
Delphi-Quellcode:
var
CellRect : TRect;
Node : PVirtualNode;
begin
...
CellRect := vst.GetDisplayPosition(Node, Column, false);
fForm2.Top := CellRect.Top;
fForm2.Left := CellRect.Left;
fForm2.ShowModal;
end;