home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / ivbsrc / gaccess.bas < prev    next >
Encoding:
BASIC Source File  |  1995-05-09  |  438 b   |  22 lines

  1. Type f_RecType
  2.   I As Integer
  3.   L As Long
  4.   C As Currency
  5.   S As Single
  6.   D As Double
  7.   st As String * 30
  8. End Type
  9.  
  10. '  OpenFile() Structure
  11. Type OFSTRUCT
  12.         cBytes As String * 1
  13.         fFixedDisk As String * 1
  14.         nErrCode As Integer
  15.         Reserved1 As String * 1
  16.         Reserved2 As String * 1
  17.         Reserved3 As String * 1
  18.         Reserved4 As String * 1
  19.         szPathName As String * 128
  20. End Type
  21.  
  22.