I want the same calendar layout (see image) print on paper using c sharp code? is that possible? Need I use this crystal reports or something else?
That calendar is made by datagridview. I don't really know how to begin with that.
Any suggestions are welcome and thanks by advance.

dj ramcPosted Mar 7, 2010, 4:04 AM
public partial class Calendar : DataGridView
{
private DateMode m_dateMode = DateMode.OneDay;
private DateTime m_startTime = DateTime.Now;
private List<CalendarItem> m_items = null;
internal Dictionary<CalendarItem, int> OverlapCount = new Dictionary<CalendarItem, int>();
http://www.ramcom.be/beveiliging/alarmsystemen/
Sam HobbsPosted Mar 6, 2010, 8:47 PM