-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclsHalbjahrNoten.cls
41 lines (32 loc) · 966 Bytes
/
clsHalbjahrNoten.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
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "clsHalbjahrNoten"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Option Compare Database
Option Explicit
Private lngSchuelernummer As Long
Private lngHalbjahr1 As Long
Private lngHalbjahr2 As Long
Public Property Get schuelernummer() As Long
schuelernummer = lngSchuelernummer
End Property
Public Property Let schuelernummer(ByVal vNewValue As Long)
lngSchuelernummer = vNewValue
End Property
Public Property Get halbjahr1() As Long
halbjahr1 = lngHalbjahr1
End Property
Public Property Let halbjahr1(ByVal vNewValue As Long)
lngHalbjahr1 = vNewValue
End Property
Public Property Get halbjahr2() As Long
halbjahr2 = lngHalbjahr2
End Property
Public Property Let halbjahr2(ByVal vNewValue As Long)
lngHalbjahr2 = vNewValue
End Property