home *** CD-ROM | disk | FTP | other *** search
/ Master 95 #1 / MASTER95_1.iso / microsof / vbasic4 / vb4-6.cab / recedit.bas < prev    next >
Encoding:
BASIC Source File  |  1995-07-26  |  309 b   |  13 lines

  1. Attribute VB_Name = "Module1"
  2. Option Explicit
  3. Type Person
  4.     ID              As Integer
  5.     MonthlySalary   As Double
  6.     LastReviewDate  As Long
  7.     FirstName       As String * 15
  8.     LastName        As String * 15
  9.     Title           As String * 15
  10.     ReviewComments  As String * 50
  11. End Type
  12.  
  13.