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")
Investigate: Infragistics.Win.UltraWinSchedule.DayLook
There is a fantastic example supplied on how to change Appearances of timeslots/days/weeks/appointments/months/alternate days etc
C:\Documents and Settings\All Users\...\Samples\WinForms\WinSchedule\VB\Appearances
If you really want to get tricky look at the following KB Article:
<Link to Article Here>
Hope this helps
You can infact do it in your code by comparing current date.