Mega Code Archive

 
Categories / Delphi / Graphic
 

How to change the color of a TProgressbar

Title: How to change the color of a TProgressbar uses CommCtrl; procedure TForm1.Button1Click(Sender: TObject); begin // Set the Background color to teal Progressbar1.Brush.Color := clTeal; // Set bar color to yellow SendMessage(ProgressBar1.Handle, PBM_SETBARCOLOR, 0, clYellow); end;