'Class module
Sub Class_Globals
Private SysPatientId As String
Private NameFull As String
Private Add1 As String
Private Add2 As String
Private Add3 As String
Private City As String
Private Province As String
Private PostCode As String
Private Telephone As String
Private TimeStamp As Long
End Sub
'Initializes the object. You can add parameters to this method if needed.
Public Sub Initialize(pSysPatientId As String, pNameFull As String, pAdd1 As String, pAdd2 As String, pAdd3 As String, pCity As String, pProvince As String,pPostCode As String, pTelephone As String, pTimeStamp As Long)
SysPatientId=pSysPatientId
NameFull=pNameFull
Add1=pAdd1
Add2=pAdd2
Add3=pAdd3
City=pCity
Province=pProvince
PostCode=pPostCode
Telephone=pTelephone
TimeStamp=pTimeStamp
End Sub
Public Sub GetPatientId As String
Return SysPatientId
End Sub
Public Sub GetNameFull As String
Return NameFull
End Sub
Public Sub GetAddress As String
Dim lAddress As String
lAddress=Add1 & ", " & City & ", " &Province
Return lAddress
End Sub