Hi
I get a problem with drag and drop. It is possible
to get each drag n dropped files one by one ?
Actually i'm using this, the problem is that the returned
information is ony one string. Is there a command to
extract each filename ?
Thanks
I get a problem with drag and drop. It is possible
to get each drag n dropped files one by one ?
Actually i'm using this, the problem is that the returned
information is ony one string. Is there a command to
extract each filename ?
Thanks
SuperStrict Local Window:TGadget = CreateWindow("Launcher", 40, 40, 320, 240, ,WINDOW_TITLEBAR | WINDOW_RESIZABLE | WINDOW_ACCEPTFILES) While True WaitEvent() Select EventID() Case EVENT_WINDOWCLOSE End Case EVENT_WINDOWACCEPT If EventSource() = Window Print EventExtra().ToString() 'Useful code here EndIf End Select Wend End