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

  1. REM MS Quick Basic / MS Basic
  2. REM ufba043.bas - generic example
  3. REM
  4. REM standard includ3e file
  5. '$INCLUDE: 'UFBA04.INC'
  6. REM include file for <testfmt>
  7. '$INCLUDE: 'testfmt.INC'
  8. REM initialize mouse
  9. CALLS 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. CALLS UNIF(FKZ%, FMT$, fld0$, RET%, SM%, Daten$)
  22. REM hide mouse
  23. CALLS MOUSEOFF
  24. END
  25.