dclar2
05-10-2006, 07:13 AM
I have recently upgraded from VB6.0 to VB.Net. So I am really new to VB.NET. I am trying to make a custom calendar control. I have an array of dates that I need to put into a grid. Should I use a DataGrid or a FlexGrid for this? And if you reccommend a DataGrid, can someone clue me in on how to set up a dataset that is not bound to a table? And how to fill in the DataGrid correctly with the first of the month starting on the correct day.
ajb2528
05-10-2006, 07:37 AM
dclar2,
I used a control similar to the 'out-of-the-box' listview called GlacialList. It works sort-of similar to the Listview but has a few bells on. I have attached a screenshot of what I created as a calendar. If you need any info on the code behind it - let me know.
Regards,
Alan
dclar2
05-11-2006, 06:59 AM
Alan,
Thanks for the reply, I have decided to go with the datagrid. I finally figured out how to correctly fill it in with an array. With the first day of the month going into the correct cell.