recognizing dragged file
BlitzMax Forums/BlitzMax Beginners Area/recognizing dragged file| 
 | ||
| How can i recognize a dragged file to the area of my applolication window. For example if i drag a png image i want the my program to load it. Is it something related to the appargs Command? | 
| 
 | ||
| Assuming you are using MaxGUI, it raises an event of type EVENT_WINDOWACCEPT when your window is created with the flag WINDOW_ACCEPTFILES. | 
| 
 | ||
| I do use maxgui. But what reads the accaptence? Where do i extract the name | 
| 
 | ||
| Hello, you can get the filename with "EventExtra().tostring()" -statement -Henri | 
| 
 | ||
| Cool tnx |