-
Notifications
You must be signed in to change notification settings - Fork 0
/
colSchule.cls
71 lines (60 loc) · 1.98 KB
/
colSchule.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
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "colSchule"
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 Schulen
Private mCol As Collection
Public Function Add(ByVal strSchulnummer As String, ByVal strSchulart As String, ByVal strSchulname As String, ByVal strSchulnamekurz As String) As clsSchule
' Neues Termin-Objekt erstellen
Dim objNewMember As clsSchule
On Error GoTo Err_Schule_Add
Set objNewMember = New clsSchule
' Daten an das erstellte Objekt zuweisen
With objNewMember
.schulnummer = strSchulnummer
.schulart = strSchulart
.schulname = strSchulname
.schulnamekurz = strSchulnamekurz
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_Schule_Add:
Exit Function
Err_Schule_Add:
FehlermeldungAusgeben "Klasse Schule", "Hinzufügen der Schule", Err.Number, Err.Description
Resume Exit_Schule_Add
End Function
Public Property Get Item(ByVal index As Long) As clsSchule
' 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