home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Unleashed / Visual_Basic_4_Unleashed_SAMS_Publishing_1995.iso / source / chap05 / readme.txt < prev   
Text File  |  1995-10-07  |  969b  |  30 lines

  1. Chapter 5:
  2.  
  3. These are the two modules discussed in Chapter 5.  To use them, include
  4. them in a VB project.
  5.  
  6. The file DEBUG.BAS contains only one function "Assert."  Based on C 
  7. language ASSERT macros, it tests assumptions and displays messages in 
  8. message boxes (in working code) or in log files (in production code).  
  9. See the code for syntax.  Note that conditional compilation is used in 
  10. this module.
  11.  
  12. FILECLAS.CLS is a new class module that encapsulates error handling for 
  13. file I/O.  To use it add the file to a vb project.  You call it by 
  14. instantiating an object of the FileClass type: "Dim myFile as New 
  15. FileClass," and then access its properties and use its methods:
  16.  
  17.     Properties        Methods
  18.             _________                   __________
  19.     Name            FileOpen
  20.     Path*            FileClose
  21.     Mode            File Move
  22.     Access            FileCreate
  23.     Length*            FileRename
  24.     DateTime*        FileCopy
  25.     MyError*        FileDelete
  26.  
  27. * Read Only
  28.  
  29. See Chapter 5 for more information.
  30.