-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclsKlasseDaten.cls
49 lines (40 loc) · 1.24 KB
/
clsKlasseDaten.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
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "clsKlasseDaten"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Option Compare Database
Option Explicit
'Klassenmodul für die Daten der Klasse zum Ändern
Private lngUid As Long
Private strBezeichnung As String
Private lngKlassleitung As Long
Private lngZeugnisunterzeichner As Long
Public Property Get uid() As Long
uid = lngUid
End Property
Public Property Let uid(ByVal vNewValue As Long)
lngUid = vNewValue
End Property
Public Property Get bezeichnung() As String
bezeichnung = strBezeichnung
End Property
Public Property Let bezeichnung(ByVal vNewValue As String)
strBezeichnung = vNewValue
End Property
Public Property Get klassleitung() As Long
klassleitung = lngKlassleitung
End Property
Public Property Let klassleitung(ByVal vNewValue As Long)
lngKlassleitung = vNewValue
End Property
Public Property Get zeugnisunterzeichner() As Long
zeugnisunterzeichner = lngZeugnisunterzeichner
End Property
Public Property Let zeugnisunterzeichner(ByVal vNewValue As Long)
lngZeugnisunterzeichner = vNewValue
End Property