-
Notifications
You must be signed in to change notification settings - Fork 0
/
colLehrer.cls
76 lines (64 loc) · 2.1 KB
/
colLehrer.cls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "colLehrer"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Option Compare Database
Option Explicit
' Collection für alle eingelesenen Lehrer
Private mCol As Collection
Public Function Add(ByVal strNachname As String, ByVal strRufname As String, _
ByVal strKuerzel As String, ByVal strAmt As String, ByVal strTitel As String, _
ByVal lngGeschlecht As Long) As clsLehrer
' Neues Termin-Objekt erstellen
Dim objNewMember As clsLehrer
On Error GoTo Err_Lehrer_Add
Set objNewMember = New clsLehrer
' Daten an das erstellte Objekt zuweisen
With objNewMember
.nachname = strNachname
.rufname = strRufname
.kuerzel = strKuerzel
.amt = strAmt
.titel = strTitel
.geschlecht = lngGeschlecht
End With
' das Objekt schließlich zur Collection hinzufügen
mCol.Add objNewMember
' das neu erstellte Objekt zurückgeben
Set Add = objNewMember
' Objekt löschen
Set objNewMember = Nothing
Exit_Lehrer_Add:
Exit Function
Err_Lehrer_Add:
FehlermeldungAusgeben "Klasse Lehrer", "Hinzufügen der Lehrkraft", Err.Number, Err.Description
Resume Exit_Lehrer_Add
End Function
Public Property Get Item(ByVal index As Long) As clsLehrer
' Bestimmten Datensatz der Collection zurückgeben.
' Der Datensatz wird über die Position (Index) "angesprochen".
Set Item = mCol(index)
End Property
Public Property Get Count() As Long
' Anzahl Collections-Einträge
Count = mCol.Count
End Property
Public Sub Remove(ByVal index As Integer)
' Löschen eines Eintrags aus dem Collection-Objekt
mCol.Remove index
End Sub
Private Sub Class_Initialize()
' Erstellt das Collection-Objekt beim ersten Zugriff
' auf die Klasse
Set mCol = New Collection
End Sub
Private Sub Class_Terminate()
' Zerstört das Collection-Objekt,
' wenn die Klasse beendet wird
Set mCol = Nothing
End Sub