Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
560
Alejandro
posted

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

Parents
No Data
Reply
  • 69832
    Verified Answer
    Offline posted

    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();
    }

Children
No Data