Dragging and dropping multiple files into a datagrid
Posted: Tue Oct 24, 2017 12:25 am
Hi all,
I want to drag and drop multiple files into a data grid. These files would come from a folder on the local computer, not from the livecode application itself. I then want those files locations to put put into a column into the datagrid. Any thoughts?
Is it correct to start with "dragEnter"?
I want to drag and drop multiple files into a data grid. These files would come from a folder on the local computer, not from the livecode application itself. I then want those files locations to put put into a column into the datagrid. Any thoughts?
Is it correct to start with "dragEnter"?
Code: Select all
on dragEnter
set the acceptDrop to true
##put file location into DataGrid column X
end dragEnter