home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4611 / fw16d.ins / SOURCE / FUNCTION / MEMOEDIT.PRG < prev    next >
Text File  |  1994-04-16  |  671b  |  25 lines

  1. // Warning: Under development. Not available yet!
  2.  
  3. #include "FiveWin.ch"
  4.  
  5. //----------------------------------------------------------------------------//
  6.  
  7. function MemoEdit( cText, nTop, nLeft, nBottom, nRight, cTitle )
  8.  
  9.    local oDlg
  10.  
  11.    DEFAULT nTop := 3, nLeft := 5, nBottom := 20, nRight := 70,;
  12.            cTitle := "MemoEdit"
  13.  
  14.    DEFINE DIALOG oDlg FROM nTop, nLeft TO nBottom, nRight TITLE cTitle
  15.  
  16.    @ 0, 0 GET cText OF oDlg SIZE ( nRight - nLeft ) * 4, ( nBottom - nTop ) * 6
  17.  
  18.    @ nBottom - nTop - 2, 2 BUTTON "&Aceptar"
  19.  
  20.    ACTIVATE DIALOG oDlg
  21.  
  22. return
  23.  
  24. //----------------------------------------------------------------------------//
  25.