Results 1 to 20 of 48

Thread: Calendar control not working

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #11
    VBAX Tutor
    Joined
    Mar 2005
    Posts
    268
    Location
    OK, I promise this is the last version for this thread. It is now the five-mode calendar. Feature-complete, suits my own purposes extremely well. Code is being washed and on the way to KB...

    Features are now accessed through:
    Call DatePick.FillVars([defaultDate][,dpMode][,forceCancel][,displayComments][,eventList])
    defaultDate Optional as Date. The date to return if user clicks 'OK' without selecting a date. Defaults to current date.
    dpMode Optional as Integer. Calendar mode: zero through four. Experiment away! Defaults to zero.
    forceCancel Optional as Boolean. Do you want a 'Cancel' button. Defaults to False. 'Cancel' returns date as zero.
    displayComments Optional as Boolean. Default False. Displays comments associated with event list items for dpmodes two through four.
    eventList Optional as Variant containing Array. Dates as Variant Date in eventList(i,1). Event names in eventList(i,2). Comments in eventList(i,3) LBound(eventList, 1) = 1; LBound(eventList, 2) = 1

    Edit: Code removed, see post #38.
    Last edited by Aussiebear; 01-27-2025 at 11:02 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
  •