IProjectCounters Property |
Project Counters - when was the most recent activity in this project, how many activities were registered in the period. May be NULL if the Sales Intelligence license is missing.
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxSOCounters Counters { get; }
ReadOnly Property Counters As SOCounters
Get
Dim instance As IProject
Dim value As SOCounters
value = instance.Counters
property SOCounters^ Counters {
SOCounters^ get ();
}
Property Value
Type:
SOCounters
ExamplesCounters
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
MsgBox objSO.CurrentProject.Counters.LastCompletedActivity(enAppointAllCounters, Nothing, enDirectionAllCounters), vbInformation + vbOkOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also