Hmm i got this for now:
Dim ArrJaar(10) As Integer
Dim ArrMaand(10) As Integer
Dim ArrDag(10) As Integer
For Each datums As Google.GData.Extensions.When In
feedEntry.Times
'datums naar array
ArrJaar(i) = datums.StartTime.Year
ArrMaand(i) = datums.StartTime.Month
ArrDag(i) = datums.StartTime.Day
i = i + 1
Console.WriteLine("When: " + datums.StartTime.Date + "
" + _
datums.EndTime.Date)
Next
'output voor de maandkalender
For Each jaar As Integer In ArrJaar
For Each maand As Integer In ArrMaand
For Each dag As Integer In ArrDag
cal2.AnnuallyBoldedDates = New
System.DateTime() _
{New System.DateTime(jaar, maand, dag, 0, 0, 0,
0)}
Next
Next
Next
But i get the error "Year, Month, and Day parameters describe an
un-representable DateTime." That's because he clears the array "dag"
when i ask for him in the las For Each.
Anyone a solution?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Calendar Data API" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-calendar-help-dataapi
-~----------~----~----~----~------~----~------~--~---