home *** CD-ROM | disk | FTP | other *** search
File List | 1994-09-22 | 404 b | 15 lines |
- DIM fmuster$(19)
- FILESELECT #"FÜLLMUSTER LADEN",DIR$(0)+"\*.FLL","",select$
- IF EXIST(select$)=-1
- OPEN "I",#0,select$
- dummy$=INPUT$(640,#0)
- CLOSE #0
- FOR q&=0 TO 19
- fmuster$(q&)=MID$(dummy$,SUCC(MUL(q&,32)),32)
- ' Die nächste Zeile aktiviert das Füllmuster
- DEFFILL ,fmuster$(q&)
- ' Hier wird etwas gezeichnet
- PBOX MUL(q&,32),0,ADD(MUL(q&,32),32),399
- NEXT q&
- ENDIF
-