grantful 3 Posted September 16, 2023 Is there a way to longclick an item in a listbox ? I need it for IOS and Android. Thanks Share this post Link to post
Mike Warren 2 Posted September 26, 2023 A simplistic approach might be to use MouseDown and trigger a timer. In MouseUp reset the timer if it hasn't expired. I haven't put a lot of thought into this, but feel it should be possible to make it work. Share this post Link to post
DelphiUdIT 176 Posted September 26, 2023 9 hours ago, Mike Warren said: A simplistic approach might be to use MouseDown and trigger a timer. In MouseUp reset the timer if it hasn't expired. I haven't put a lot of thought into this, but feel it should be possible to make it work. I've been using this technique for years (in Windows) because I use external graphical controls that don't have the POPUP function and so I simulate POPUP this way. Especially with Touch screens, where there is no mouse and it is simulated with touch. Bye Share this post Link to post