home *** CD-ROM | disk | FTP | other *** search
/ An Introduction to Progr…l Basic 6.0 (4th Edition) / An Introduction to Programming using Visual Basic 6.0.iso / PROGRAMS / CH9 / 9-1-4.BAS < prev    next >
Encoding:
BASIC Source File  |  1998-11-02  |  139 b   |  8 lines

  1. Attribute VB_Name = "Module1"
  2. Public Type collegeData
  3.   nom As String * 30
  4.   state As String * 2
  5.   yearFounded As Integer
  6. End Type
  7.  
  8.