Error in sSpinnedit on double click Root › Technical support › Troubleshooting This topic has 4 replies, 2 voices, and was last updated 1 year, 10 months ago by RJ. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts July 25, 2023 at 8:54 pm #71283 RJParticipant Can some one help me with a work arround or solution please. July 27, 2023 at 8:55 am #71296 LasseParticipant I can confirm this issue is happening with the latest version. I will try to fix it. July 28, 2023 at 5:50 am #71299 LasseParticipant If you have source codes (sSpinEdit.pas), you can fix this like: procedure TsBaseSpinEdit.WndProc(var Message: TMessage); ... CM_MOUSELEAVE: begin // ==> Fix starts if Assigned(FRepeatTimer) then FreeAndNil(FRepeatTimer); MousePressed := False; // <== Fix ends if Btn1State > 0 then Btn1State := 0; If you don’t have source code, you need to inherit TsSpinEdit and override WndProc. This reply was modified 1 year, 10 months ago by Lasse. July 28, 2023 at 5:40 pm #71303 RJParticipant Thanks this works perfect for me. Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In Root › Technical support › Troubleshooting