home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #3 / amigamamagazinepolishissue1998.iso / bazy / fiasco_2.1 / arexx / requestdt.frx < prev    next >
Text File  |  1997-09-22  |  442b  |  26 lines

  1. /* RequestDT.frx
  2.  * Open a file requester for a datatypes field
  3.  * Usage: RequestDT.frx <FieldID>
  4.  * Copyright © 1996-1997 Nils Bandener
  5.  * $VER: RequestDT.frx 6.1 (22.9.97)
  6.  */
  7.  
  8. Options Results
  9. Parse Arg Field
  10.  
  11. GetField '"' || Field || '"'
  12. File = Result
  13.  
  14. if rc = 0 then
  15. do
  16.     RequestFile '"' || File || '"' ProjectRelative
  17.  
  18.     if rc = 0 then
  19.     do
  20.         File = Result
  21.  
  22.         SetField '"' || Field || '" "' || File || '"'
  23.  
  24.     end
  25. end
  26.