home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / basic / tools / basicwi / ufba034.bas < prev    next >
BASIC Source File  |  1993-07-28  |  491b  |  25 lines

  1. REM Turbo Basic/ Power Basic
  2. REM ufba034.bas - generic example
  3. REM
  4. REM standard includ3e file
  5. $INCLUDE "UFBA03.INC"
  6. REM include file for <testfmt>
  7. $INCLUDE "testfmt.INC"
  8. REM initialize mouse
  9. CALL MOUSEON
  10. REM function identifier
  11. FKZ% = 2
  12. REM cursor position
  13. SM% = 0
  14. REM shadow attribute
  15. RET% = 112
  16. REM format name
  17. FMT$ = "testfmt "
  18. REM format layout
  19. $INCLUDE "testfmt.PRO"
  20. REM call UNIF
  21. CALL UNIF(FKZ%, FMT$, fld0$, RET%, SM%, Daten$)
  22. REM hide mouse
  23. CALL MOUSEOFF
  24. END
  25.