Click or drag to resize

ISaleAppointment Property

Appointment

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
SOAppointment Appointment { get; set; }

Property Value

Type: SOAppointment
This is not yet implemented. The property along with the database field is for future use
Examples

Appointment

VB
 Dim objDB
Dim msg

Set objDB = CreateObject("superofficedb.database")
If Not (objDB is Nothing) Then
    objDB.login "<userid>", "<password>" ' log in to the database

    Set mySale = objDB.GetSale(2) 'get sale with sale_id=2
    msg = msg & "Are all required fields filled: " & mySale.Sentry.AreAllRequiredFieldsFilled & vbCrLf
    msg = msg & "Appointment: " & mySale.Appointment.Description & vbCrLf
    msg = msg & "Group: " & mySale.Group.Text & vbCrLf
    msg = msg & "Private to group: " & mySale.PrivateToGroup.Id & vbCrLf
    msg = msg & "Publish type: " & mySale.PublishType & vbCrLf
    msg = msg & "Number of documents added to this sale =  " & mySale.ActivityLinks.Documents.Count & vbCrLf
    MsgBox msg, vbInformation, "SuperCOM"


Else
    MsgBox "unable to connect to database"
End If
Set objso = Nothing

See Also