zacktagnan, te pondré un ejemplo más sensillo. En el evento DayRender pones lo siguiente y te coloreará en rojo el dìa 25 de Sep de 2007:
Código:
Dim EstiloFeriarios As New Style()
If e.Day.Date = CDate("2007-09-25") Then
EstiloFeriarios.Font.Bold = True
EstiloFeriarios.ForeColor = Drawing.Color.Red
e.Cell.ApplyStyle(EstiloFeriarios)
End If