home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #3 / amigamamagazinepolishissue1998.iso / bazy / easyvideo / rexx / ev_befehl10zurück.rexx < prev    next >
OS/2 REXX Batch file  |  1995-04-02  |  250b  |  23 lines

  1. /* RexxBefehle für EasyVideo
  2.    (c) Jörg Trahm
  3.  
  4.     Springe 10 Datensätze zurück
  5.  
  6. */
  7.  
  8.  
  9. call addlib('rexxsupport.library',0,-30)
  10.  
  11. parse arg PortName
  12. address(PortName)
  13. options results
  14.  
  15. Satz = 0
  16.  
  17. EV_Inhalt "Akt_Satz"
  18. Satz = Result - 10
  19. EV_Goto Satz
  20.  
  21. exit
  22.  
  23.