![]() |
Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Synchronize of two ScrollBoxes
One of the ways of synchronization in Delphi is the Timer component. Use this component so.
procedure TForm1.Timer1Timer(Sender: TObject);
begin
ScrollBox2.HorzScrollbar.Position:=ScrollBox1.HorzScrollbar.Position;
ScrollBox2.VertScrollbar.Position:=ScrollBox1.VertScrollbar.Position;
end;
-
More for developers