Monthview Control Problem
Hi, I have an issue with the monthview control, i'm trying to populate distinct dates into the calendar and make the dates bold in the calendar, the idea works if the dates are from the current month, but doesnot work if they are from a different month.
the following is the piece of code:
Do Until rstTransaction.EOF = True
X = Format$((rstTransaction.Fields("TrnDate")), "mm/dd/yyyy")
MonthView1.DayBold(X) = True
rstTransaction.MoveNext
Loop
Please can you help me with this, i tried researching on this quite a lot, i'm unsure if this will work
|