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-2-2.BAS < prev    next >
Encoding:
BASIC Source File  |  1997-09-06  |  211 b   |  8 lines

  1. Attribute VB_Name = "Module1"
  2. Type collegeData
  3.   nom As String * 30    'Name of college
  4.   state As String * 2   'State where college is located
  5.   yrFounded As Integer  'Year college was founded
  6. End Type
  7.  
  8.