Multi-Day and All Day Events
BCGControlBar Pro (MFC)
BCGSuite (MFC)
BCGControlBar for .NET
The planner control allows to add All day and Multi-day appointments.
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);