Ticket A2159
Visible to All Users

How to obtain the number of events scheduled for a given date

created 20 years ago

Description:
I'm trying to show the number of events for each day in the day header. Is there a function which will quickly return an event count for each day?

Answer:
You can use the Scheduler Storage's GetEvents function. For example:

Delphi
uses DateUtils; // for OneSecond ... var AList: TcxSchedulerFilteredEventList; ... AList := TcxSchedulerFilteredEventList.Create; try if <Storage>.GetEvents(AList, Date + OneSecond, Date + 1 - OneSecond) then Caption := IntToStr(AList.Count) + ' events.' else Caption := 'No events.'; finally AList.Free; end;

For more details, please refer to the ExpressScheduler's documentation.
IMPORTANT: It's necessary to add and subtract 1 second from the compared time. Since the TDateTime type is actually Double, it's necessary to take the Double type precision into account. You can use the OneSecond constant declared in the DateUtils unit.
See Also:
How to display a count of the events for a particular day within the month view

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.