T O P I C R E V I E W |
rmklever |
Posted - Jan 19 2020 : 17:48:22 Hi,
I am wondering how I can have MouseInteractGeneral:= [miScroll] and still be able to click and select the red and white line. The red and white line act as a slider and should be able to move when I select it.
I tried to set MouseInteractGeneral:= [] in MouseDown event but it still enable scrolling... I need the scrolling when not moving the slider. Any ideas? The slider is selected when mouse pointer is within 10 pixels from it and mousebutton is pressed.
Roy M Klever Klever on Delphi - www.rmklever.com |
2 L A T E S T R E P L I E S (Newest First) |
rmklever |
Posted - Jan 22 2020 : 16:54:24 Thanks Nigel,
I solved it by using spacebar to toogle scrolling. Its working okay :)
Roy M Klever Klever on Delphi - www.rmklever.com |
xequte |
Posted - Jan 21 2020 : 19:23:47 Hi Roy
Sorry, I can't think of a good way to do that with existing functionality.
The two bad ways I can think of are:
1. Add your own scrolling code (i.e. copy the scroll from imageenview.pas into your form's mouse events
2. Use a separate control (on top of the ImageEnView) to handle the splitting
Nigel Xequte Software www.imageen.com
|