-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolHalbjahrNoten.cls
60 lines (53 loc) · 1.74 KB
/
colHalbjahrNoten.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
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "colHalbjahrNoten"
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 Halbjahresleistungen zum Importieren
Private mCol As Collection
Public Function Add(ByVal lngSchuelernummer As Long, ByVal lngHalbjahr1 As Long, ByVal lngHalbjahr2 As Long) As clsHalbjahrNoten
' Neues Halbjahr-Objekt erstellen
Dim objNewMember As clsHalbjahrNoten
Set objNewMember = New clsHalbjahrNoten
' Daten an das erstellte Objekt zuweisen
With objNewMember
.schuelernummer = lngSchuelernummer
.halbjahr1 = lngHalbjahr1
.halbjahr2 = lngHalbjahr2
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
End Function
Public Property Get Item(ByVal index As Long) As clsHalbjahrNoten
' 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