I would like to know how to make my second trackbar.position mirror in the opposite direction of trackbar1.position. eg. Range from 1 to 100.
So When TrackBar1.Position := 2
, then trackbar2.Position := 99
Regardless of which way the trackbars goes, I would like to mirror in the opposite direction.
Heres my code so far: (not interested in using keys to do this), just mouse interaction.
Direction : string;
Skip : boolean;
procedure TForm1.TrackBar1Change(Sender: TObject);
begin
if TrackBar1.Position = TrackBar2.Position then
begin
if Direction = 'up' then TrackBar2.Position := TrackBar2.Position + 1;
if Direction = 'down' then TrackBar2.Position := TrackBar2.Position - 1;
skip := true;
end;
if TrackBar1.Position < TrackBar2.Position then
begin
if skip = false then
begin
TrackBar2.Position := TrackBar2.Position - 1;
Direction := 'down';
end;
end
else
begin
if skip = false then
begin
TrackBar2.Position := TrackBar2.Position + 1;
Direction := 'up';
end;
end;
end;
Im probably overdoing this. Maybe there is a simpler way. I prefer the simpler way. Thanks,
Ben
The 2 trackbars
OnChange
events are linked to this code:Alternative start (suggested by Ken White and comments from me ;o)):