Go Back  Xtreme Visual Basic Talk > Visual Basic .NET (2002/2003/2005/2008, including Express editions) > .NET General > calendar control


Reply
 
Thread Tools Display Modes
  #1  
Old 06-24-2012, 03:19 PM
Amerigo's Avatar
Amerigo Amerigo is offline
Centurion
 
Join Date: Jan 2009
Location: USA
Posts: 127
Talking calendar control


I have a calendar in an app with 3 month display. How can I tell it to display the current month in the middle (or previous month first) on start up. I don't see any commands to accomplish this without changing the current day.

Edit:

I got it with this:
Code:
    Private Sub Calendar_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Me.Location = My.Settings.CalLoc
        Dim thisMonth As New DateTime(DateTime.Today.Year, DateTime.Today.Month, 1)
        Dim LastMonth As DateTime
        LastMonth = thisMonth.AddDays(-1)
        Cal.SetDate(LastMonth)
    End Sub
__________________
Amerigo

Last edited by Amerigo; 06-24-2012 at 05:17 PM. Reason: Resolved
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->