is there any way to change the appearance of only the current date(not the selected date) in UltraWeekView, UltraMonthViewSingle, and UltraMonthViewMulti? Thank you, Jamie
You can also use "Appearances" which is the easiest way IMHO.
CheersAaron
Dim AP As Infragistics.Win.Appearance ' Create an Appearance for each day you want to look "different" AP = Me.CalendarInfo2.Appearances.Add("SpecialRedDay") AP.BackColor = Color.FromName("Red") Me.UltraCalendarLook1.DaysOfYearLook(Now().Date.Appearance = _ Me.UltraCalendarLook1.Appearances("SpecialRedDay")