views:

34

answers:

1

A bit of a long shot but I'm looking for a .Net WinForms scheduler style control that lists times down the left and resources along the top. I've found lots of schedule controls that list days along the top and times down the left but I really need something slightly different. I'm happy to buy the control if a free version does not exist.

The DevExpressCalendar came close but its seems very overkill for what I want. It seems to want to set up its own database mappings and have its own create forms. Also using this control I have not been able to display just resources and not dates along the top.

I just want to be able to display a schedule style control with resources of my choice along the top and times along the left where I can call something like this to add items.

CalendarControl.AddItem(ResourceId, StartTime,EndTime)

Also really need the option to specify colours of schedule items and also probably an icon for some to represent recurrence.

I'm hoping something exists or something similar exists that I can adapt to meet our needs as I don't really have time to create the control from scratch.

Idealy I'm looking for something like this.

example

The date control and label at the top would not be part of the control they would be the standard winform controls.

A: 

We use Infragistics WinSchedule in our application, but you have to purchase the entire control package and it is pricey (around $1000).

http://www.infragistics.com/dotnet/netadvantage/winforms/winschedule.aspx

The videos and screenshots on that site aren't very good though, the theme we choose for our implementation is much more modern and nice than the ugly one they are displaying there.

luksan