Ola,

Now I've hardcoded my date into my app, but now I want to read it from the database. I knowhow to read the columns, but unfortunately I don't now how to make the date appear into the monthcalendar.

vb.net Code:
  1. Select Case MyDGV.SelectedCells(8).Value.ToString()
  2.     Case "Radjesh"
  3.         With MyMonthCal
  4.             .MarkedDates = New System.DateTime() {New System.DateTime(2010, 3, 3), New System.DateTime(2010, 3, 10), New System.DateTime(2010, 3, 17), New System.DateTime(2010, 3, 24), New System.DateTime(2010, 3, 31), _
  5.             New System.DateTime(2010, 4, 7), New System.DateTime(2010, 4, 14), New System.DateTime(2010, 4, 21), New System.DateTime(2010, 4, 28), _
  6.             New System.DateTime(2010, 5, 12), New System.DateTime(2010, 5, 19), New System.DateTime(2010, 5, 26)}
  7. MyNotes.Text = "blablablabla"
  8.         .UpdateMarkedDates()
  9.     Case  "VB.NET"
  10.         'etc...

Let me start by asking what the best way would be to setup the table?

Thanks for the help in advance.