This function creates a new case.
object.CreateCase(aPatientID)
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfile interface |
|
aPatientID |
In, Required | int |
ID of the patient |
Add a new case and display its title and ID.
Dim aPatient
Dim aCase
Set aPatient = Profile.SelectPatient
set aCase = Profile.CreateCase(aPatient.ID)
aCase.CaseTitle = "Case 7"
Profile.MsgBox("ID of the case with the title '" & aCase.CaseTitle & "' is " &_
aCase.ID)
In Profile Client v8 on User Interface Cases can be found in
.