CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Threaded View

  1. #1
    Join Date
    May 2006
    Posts
    170

    [RESOLVED] Change Calendar control attributes

    I'm trying to change the attributes from a calendar control in framework 1.1. But whatever I do nothing changes what am I doing wrong? I also want to remove the underlining of the dates?

    Code:
    this.calendar = new Calendar();
    this.calendar.BackColor = Color.Pink;
    this.calendar.SelectedDate = DateTime.Now;
    this.calendar.ShowDayHeader = true;
    //TodayDayStyle.BackColor = Color.Chocolate;
    Last edited by Visslan; April 25th, 2007 at 03:19 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured