home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / basic / eventshell / Tools / !EvntEdit / UserFNs / DataLoad < prev    next >
Encoding:
Text File  |  1996-01-17  |  463 b   |  18 lines

  1. *|Start FN.........
  2. DEF FN.........( address%, file_type%, file_name$, file_size% )
  3.  
  4. REM Called when a file been dragged to a window or window/icon
  5. REM pair that has a DataLoad event attached
  6.  
  7. REM address%   - address file was loaded at for an automatic load
  8. REM file_type% - type of the file
  9. REM file_name$ - the full name for the file to load
  10. REM file_size% - size of the file
  11.  
  12. REM the returned value of this function is ignored
  13.  
  14. LOCAL
  15.  
  16. = 0
  17. :
  18. *|Stop FN.........