Results 1 to 34 of 34

Calendar pop up query

Threaded View

  1. #1
    Forum Contributor
    Join Date
    06-23-2007
    Posts
    690

    Calendar pop up query

    hi guys

    using this code
    Private Sub Calendar1_Click()
        ActiveCell.Value = CDbl(Calendar1.Value)
        ActiveCell.NumberFormat = "dd/mm/yyyy"
        ActiveCell.Select
        Calendar1.Visible = False
    End Sub
    
    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        If Target.Cells.Count > 1 Then Exit Sub
        If Not Application.Intersect(Range("x:y"), Target) Is Nothing Then
            Calendar1.Left = Target.Left + Target.Width - Calendar1.Width
            Calendar1.Top = Target.Top + Target.Height
            Calendar1.Visible = True
            ' select Today's date in the Calendar
            Calendar1.Value = Date
        ElseIf Calendar1.Visible Then Calendar1.Visible = False
        End If
    End Sub
    the trouble is that once cell d24 is activated the calendar control pops up as planned , but it pops up semi out of view i.e half the calendar requires me to scroll down the page . is there anyway i can change where the pop up pops up so to speak

    regards
    Last edited by stevesunfold; 10-11-2008 at 03:17 PM. Reason: upper to lower case

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. VBA Calendar Control does not show day numbers. ??
    By Richard Buttrey in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 07-25-2008, 08:26 PM
  2. creating a fairly complicated calendar
    By Jayhawks88 in forum Excel General
    Replies: 1
    Last Post: 05-23-2008, 01:52 PM
  3. User-defined variables in MS access query
    By ratzy in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 11-11-2007, 11:13 AM
  4. Pivot Table from MS Query
    By Jim Palmer in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 10-17-2007, 09:42 AM
  5. Excel query and parameters
    By urbanmojo in forum Excel General
    Replies: 1
    Last Post: 07-23-2007, 12:17 AM

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1