Drag and Drop interface is it possible (1 Viewer)

Zedster

Registered User.
Local time
Today, 19:26
Joined
Jul 2, 2019
Messages
169
It is popular for web based project management systems to use a Kanban board to display actions. So a task would have a status field with for example: assigned, WIP, solved, closed etc. The GUI would display four columns and the tasks would be listed according to their status. To change a status a user would simply drag a task from one column to another. The status of the record would be changed and it would remain in the new column.

Is such a thing possible in Access?
 

CJ_London

Super Moderator
Staff member
Local time
Today, 19:26
Joined
Feb 19, 2013
Messages
16,653
Short answer is yes - you would probably need to use the mouse down and up events. Also review the undocumented acchittest function to determine the control below the cursor in the mouse up event. From this you can determine what action you need to take to update the records
 

kentgorrell

Member
Local time
Today, 19:26
Joined
Dec 5, 2020
Messages
48
You can do this using GDI. see Access Gantt Chart for a demo. This demo is a Gantt chart but pivot and the same principles apply to a Kanban board
 

GPGeorge

George Hepworth
Local time
Today, 11:26
Joined
Nov 25, 2004
Messages
1,963
It is popular for web based project management systems to use a Kanban board to display actions. So a task would have a status field with for example: assigned, WIP, solved, closed etc. The GUI would display four columns and the tasks would be listed according to their status. To change a status a user would simply drag a task from one column to another. The status of the record would be changed and it would remain in the new column.

Is such a thing possible in Access?
Alessandro Grimaldi has published on a book on creating interfaces of the type you describe. You can find examples of his work on YouTube.
 

Users who are viewing this thread

Top Bottom