[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: GridView horizontal scrolling on touchscreens
[Thread Prev] | [Thread Next]
- Subject: Re: GridView horizontal scrolling on touchscreens
- From: Bruce Steers <bsteers4@xxxxxxxxx>
- Date: Wed, 12 Aug 2026 08:02:43 +0100
- To: Gambas Mailing List <user@xxxxxxxxxxxxxxxxxxxxxx>
Maybe you want something like this... Public Sub GridView1_MouseDrag() GridView1.Scroll((Mouse.StartX - Mouse.X), GridView1.ScrollY) End Or to control up and down too.... Public Sub GridView1_MouseDrag() GridView1.Scroll(Mouse.StartX - Mouse.X, Mouse.StartY - Mouse.Y) End Respects BruceS On Wed, 12 Aug 2026, 04:00 KKing, <kicking177@xxxxxxxxx> wrote: > I'd like users to be able scroll horizontally by dragging on Gridview > cell left or right is this possible? > > >
| Re: GridView horizontal scrolling on touchscreens | Bruce Steers <bsteers4@xxxxxxxxx> |
| GridView horizontal scrolling on touchscreens | KKing <kicking177@xxxxxxxxx> |