home *** CD-ROM | disk | FTP | other *** search
- CLASS TXT
-
- FUNCTION Open
- PRIVATE txtfile, handle
- txtfile = self:set()
- handle = FCREATE (txtfile)
- self:Set(handle)
- RETURN
-
- FUNCTION Add
- PARAMETER txt
- FWRITE (self:set(), txt)
- RETURN NIL
-
- FUNCTION Addline
- PARAMETER txt
- FWRITE (self:set(), txt+chr(13)+chr(10))
- RETURN NIL
-
- FUNCTION Close
- FCLOSE (self:set())
- RETURN NIL
-
- FUNCTION NewPage
- FWRITE (self:set(), chr(12))
- RETURN NIL
-
-
-