home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / install / reqtools / rexxreqtools / examples / ttxarexx.lha / OpenDoc.ttx < prev    next >
Text File  |  1993-10-21  |  525b  |  25 lines

  1. /* $VER: OpenDoc.ttx 1.0 (20.02.93) */
  2.  
  3. OPTIONS RESULTS
  4.  
  5. GetFilePath
  6. DirName = RESULT
  7. OpenDoc
  8. NewPort = RESULT
  9. ADDRESS VALUE NewPort
  10.  
  11. Index = LastPos( '/', DirName )
  12. IF Index ~= 0 THEN DirName = Left( DirName, Index - 1 )
  13. ELSE DO
  14.   Index = Index( DirName, ":" )
  15.  
  16.   IF Index ~= 0 THEN DirName = Left( DirName, Index )
  17.   ELSE DirName = ""
  18. END
  19.  
  20. FileName = rtFileRequest( DirName,, "Select file to open", "_Open", "RT_PubScrName=TURBOTEXT RTFI_Flags=FREQF_PatGad" )
  21.  
  22. IF rtResult = 1 THEN OpenFile FileName
  23.  
  24. CALL rtFreeFileBuffer
  25.