When in UltraCalendarLook1 have the stilo office 2003 in the header the date puts it with format day of the week, day and month but when the style is a office 2007 puts alone the day and day of the week in the header of the control UltraDayView1.
Since I can modify the header in the style office 2007 in order that I leave in the same format that with the style office 2003?
Language Visual basic 2010
Thank you
You can handle the InitializeVisibleDay event and explicitly set the text for the header:
void dayView_InitializeVisibleDay(object sender, VisibleDayEventArgs e){ e.VisibleDay.Text = e.VisibleDay.Date.ToLongDateString();}