Multi-Day and All Day Events

Fully implemented BCGControlBar Pro (MFC)

Fully implemented BCGSuite (MFC)

Not available BCGControlBar for .NET

The planner control allows to add All day and Multi-day appointments.

Multi-Day and All Day Events

Sample code:

// Create a new all day appointment:
COleDateTime now = COleDateTime::GetCurrentTime ();

CBCGPAppointment* pApp = new CBCGPAppointment (
     now, now, _T("Vacation"));

pApp->SetAllDay (TRUE);

// Add this appointment to planner:
m_wndPlanner.AddAppointment (pApp);