I have the current date displayed in a label. That current date is supplied by the monthview control when the program starts. Now the user of the program will want to look at previous and future days/dates. For this I have two buttons which decrease or increase the day by only one day. But the following code doesn't work. And after searching around I could only find examples where the user clicks on the monthview control and I couldn't work it out. So does anyone know how to do this? Thanks.
Increase:
Decrease:Code:label.Caption = Format(calendar.Value + 1, "dddd d MMM yyyy")
Code:label.Caption = Format(calendar.Value - 1, "dddd d MMM yyyy")


Reply With Quote
