Tom F 83 Posted February 16, 2021 Does anyone know how to disable the Raize TRzTrackBar from showing the two little triangles when the mouse is over the thumb? The green arrow in the attached image points to the triangles. Share this post Link to post
Attila Kovacs 629 Posted February 16, 2021 override the WMSetCursor message for TRzTrackBar Share this post Link to post
Attila Kovacs 629 Posted February 16, 2021 add this to your unit or add it to a unit which you include everywhere after "RzTrkBar" in the uses list. interface type TRzTrackBar = class(RzTrkBar.TRzTrackBar) private procedure WMSetCursor(var Msg: TWMSetCursor); message wm_SetCursor; end; implementation procedure TRzTrackBar.WMSetCursor(var Msg: TWMSetCursor); begin end; Share this post Link to post
Tom F 83 Posted February 17, 2021 Thanks, Attila, for the code!! I REALLY appreciate it!! Share this post Link to post