VB.Net Calender problems

  • Thread starter Thread starter Mike D
  • Start date Start date
M

Mike D

Having some trouble with crappy VB.net calenders. Want to show the
date on a clender, that is the same as a label showing a specific
date. Unfortunately i can only get the calendar to show the current
todays date... got any code that could help me out?

basic prob summaru:
how to show the date on a calender that is taken from a label
 
Hi Mike,

Place this in the crappy form load event, in reference to the crappy label
and crappy monthcalendar control:
If IsDate(Label1.Text) = True Then

MonthCalendar1.SetDate(CDate(Label1.Text))

Else

MonthCalendar1.Refresh()

End If

HTH,

Bernie Yaeger
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top