Hey Pali,
I have done what you explained. I am still getting an empty schedulebox. I have gone through the companionkit application example in adding an event. I have place the schedulebox called schedulebox1 in a form and here is the code that I am using to add an event:
ScheduleBoxEvent newEvent = new ScheduleBoxEvent();
// Create absolutely new event
newEvent = new ScheduleBoxEvent();
newEvent.Start = DateTime.Now;
newEvent.End = newEvent.Start.AddHours(1);
newEvent.Subject = "This is a test Subject";
newEvent.Tag = "This is a test tag";
this.scheduleBox1.Events.Add(newEvent);
this.scheduleBox1.Show();
I have placed a border around the schedulebox control in the form. So, the control border shows up in the form while running in debug mode of VS2010, but there isn't any events or day,week or month schedule content showing in the bordered control. Am I still missing something?
thanks,
Greg