Results 1 to 2 of 2

Thread: Calender

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Mar 2000
    Posts
    84
    Is there anyone who know how Microsoft Calender Control works ??
    Anyone who made a project including it who can send it to me ??

    ****'*****'*****'*****'*****
    Thanks
    [email protected]

  2. #2
    Lively Member
    Join Date
    Aug 2000
    Location
    Trondheim, Norway
    Posts
    65
    Create 4 text boxes and a Calendar control...

    Code:
    Private Sub Calendar1_Click()
    
      Text1.Text = Format(Calendar1.Value, "DDMMYYYY")
      Text2.Text = Format(Calendar1.Value, "DD. MMM YYYY")
      Text3.Text = Calendar1.Value
      Text4.Text = Calendar1.Day & _
      " - " & Calendar1.Month & " - " & Calendar1.Year
      Calendar1.DayLength = 1
    End Sub
    
    Private Sub Form_Load()
      Calendar1.FirstDay = 2 'Monday as first day of week
    End Sub
    D...

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