I'm new to your web controls and am trying the Calendar control. All I'm looking for is to display dates on the calender highlighted. I'm using the following code in the page load event with only the calendar and the WebScheduleInfo. Do I need to add other controls to get it to work? Thanks
Me.WebScheduleInfo1.DataBind()Dim Appt As AppointmentAppt = New Appointment(Me.WebScheduleInfo1)Appt.StartDateTime = New Infragistics.WebUI.Shared.SmartDate(2008, 2, 3, 10, 11, 11)Appt.Key = "123"Appt.ResourceKey = Me.WebScheduleInfo1.VisibleResources.UnassignedResource.KeyAppt.Style.BackColor = System.Drawing.Color.RedMe.WebScheduleInfo1.Activities.Add(Appt)
Check wether you have set the WebCalendarView property WebScheduleInfoID="WebScheduleInfo1".
you can get more Info and help from
http://samples.infragistics.com/2006.2/ or http://samples.infragistics.com/2007.3/webfeaturebrowser/default.htm
Hope this Helps!!!