Results 1 to 2 of 2

Thread: [2005] Class Instances Please help

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 2006
    Posts
    9

    Unhappy [2005] Class Instances Please help

    I need to be able to create an instance of a list class to store instances of an employee class.

    my employee class is:

    Public Class Employee
    Public EmployeeID As Integer
    Public EmployeeType As Integer
    Public EmployeeName As String
    Public EmployeeAddress As String
    Public EmployeeSSN As Double
    End Class

    I really appreciate it in advanced

  2. #2
    Raging swede Atheist's Avatar
    Join Date
    Aug 2005
    Location
    Sweden
    Posts
    8,018

    Re: [2005] Class Instances Please help

    You need to create a list to hold employee instances?
    vb Code:
    1. Private empList As New List(Of Employee)
    Rate posts that helped you. I do not reply to PM's with coding questions.
    How to Get Your Questions Answered
    Current project: tunaOS
    Me on.. BitBucket, Google Code, Github (pretty empty)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width