home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / jËzyki_programowania / amigae / e_v3.2a / tools / ee / rexx / dwindow.rexx < prev    next >
OS/2 REXX Batch file  |  1977-12-31  |  278b  |  17 lines

  1. /* Dwindow.rexx - SAY EE window dimensions. */
  2.  
  3. ADDRESS 'EE.0'
  4. OPTIONS RESULTS
  5.  
  6. LockWindow
  7. ?WindowDimensions; wd=RESULT
  8.  
  9. PARSE VALUE wd WITH leftedge topedge width height .
  10.  
  11. SAY "leftedge="leftedge
  12. SAY "topedge ="topedge
  13. SAY "width   ="width
  14. SAY "height  ="height
  15.  
  16. UnlockWindow
  17.