Hello,
Simple question:
I have a form with a TrackBar1.
When I paint my form in red, the surrounding of the TrackBar1 stay to default color, until I click on it or it get the focus, then the surrounding becomes red.
procedure TForm1.Button1Click(Sender: TObject);
begin
form1.Color:= clRed;
end;
Any idea how to fix this?
The only solution I've found is to do a loop with SetFocus on all TTrackBars of my form, and I found it not clean.
Thanks