Ask a Question related to Macromedia Director Lingo, Design and Development.

  1. #1

    Default Calendar

    How do you place a calendar in forms?
    Cheryl Guest

  2. Similar Questions and Discussions

    1. 2006 calendar needed for photo calendar
      I want to start work on a 2006 calendar featuring my own photographs. In Photoshop there used to be a calendar-creating feature that worked well,...
    2. Pop-up Calendar
      I have some script (below) which is returning the date from a pop-up calendar. My problem is that the date is being returned in a dd/mm/yyyy format....
    3. asp calendar
      Can some of you point me to some website with good asp calendars. I did a search on the google but didn't find a whole lot . Thanks
    4. Calendar 9.0
      There are several calendars with the code to do that on my website: http://www.datastrat.com/Download/XCalendar2K.zip and...
    5. calendar asp
      Hello Everyone, I have a calendar http://thehihat.com/calendar/default.asp?month=6&year=2003 What I need to do is be able to add a graphic to the...
  3. #2

    Default Re: Calendar

    Hi,
    First off, you have to have installed the Calendar control.
    It's not installed by default during the office install.

    Once it's installed, when you have your form in design view, click on the
    activex icon (hammer and wrench) in your Toolbox. This will bring up a
    list of controls. Choose the Calendar control from this list.

    --
    HTH
    Dan Artuso, Access MVP


    "Cheryl" <Cheryl.Bazemore@dc.gov> wrote in message
    news:a6bd01c346e8$252da050$a401280a@phx.gbl...
    > How do you place a calendar in forms?

    Dan Artuso Guest

  4. #3

    Default Re: Calendar

    Hi,
    Well, you can't. The control is meant to be placed on a form.
    You can have the click event of a text box open the form with the
    control on it though.

    --
    HTH
    Dan Artuso, Access MVP


    "Cheryl" <Cheryl.Bazemore@dc.gov> wrote in message
    news:07d301c346f4$9c3b91a0$a001280a@phx.gbl...
    > Thank you. Now, how can I put the calendar in a drop down
    > box to select a date?
    >
    >
    > >-----Original Message-----
    > >Hi,
    > >First off, you have to have installed the Calendar
    > control.
    > >It's not installed by default during the office install.
    > >
    > >Once it's installed, when you have your form in design
    > view, click on the
    > >activex icon (hammer and wrench) in your Toolbox. This
    > will bring up a
    > >list of controls. Choose the Calendar control from this
    > list.
    > >
    > >--
    > >HTH
    > >Dan Artuso, Access MVP
    > >
    > >
    > >"Cheryl" <Cheryl.Bazemore@dc.gov> wrote in message
    > >news:a6bd01c346e8$252da050$a401280a@phx.gbl...
    > >> How do you place a calendar in forms?
    > >
    > >
    > >.
    > >

    Dan Artuso Guest

  5. #4

    Default Re: Calendar

    On Thu, 10 Jul 2003 08:04:50 -0700, "Cheryl" <Cheryl.Bazemore@dc.gov>
    wrote:
    >Thank you. Now, how can I put the calendar in a drop down
    >box to select a date?
    A Calendar Control is one way to pick dates; a Combo Box (a "drop
    down") is a different kind of control which can (if you set it up that
    way) also be used to pick dates. But you can't put a Calandar Control
    in a combo box!

    One trick I use to get a combo with the next (say) month's dates is to
    have a table named Num with a single field N, with values from 0 to
    1000. This table gets a lot of use in many contexts.

    You can create a Query:

    SELECT DateAdd("d", [N], Date()) FROM [Num] WHERE [N] <= 30 ORDER BY
    N;

    and base the Combo on this query. It'll show dates from today for the
    next thirty days. Adjust the criteria as desired. If you want to
    exclude weekends, for instance, use

    SELECT DateAdd("d", [N], Date()) FROM [Num] WHERE [N] <= 30 ORDER BY N
    AND Weekday(DateAdd("d", [N], Date()), vbMonday) < 6;


    John W. Vinson[MVP]
    Come for live chats every Tuesday and Thursday
    [url]http://go.compuserve.com/msdevapps?loc=us&access=public[/url]
    John Vinson Guest

  6. #5

    Default Calendar

    >-----Original Message-----
    >How do you place a calendar in forms?
    >.
    >
    Stephen Lebans has a calendar control method I
    particularly like. It's probably more complicated to
    implement than the Access ActiveX component, especially if
    any amount of Visual Basic makes you uncomfortable, but
    it's better overall in my opinion.

    The link to his website:

    [url]http://www.lebans.com/monthcalendar.htm[/url]

    I also mention it on my website (mainly I'm referencing
    his, though). The link:

    [url]http://www.lebans.com/monthcalendar.htm[/url]

    LRH
    Larry R Harrison Jr Guest

  7. #6

    Default calendar

    Hi
    I want to make a calendar with director.
    The calendar is of two types,from say hibrew
    to chineese. I know all the dates in both calendars
    I need to know how the client will switch between both

    Thanks.


    liyusaw webforumsuser@macromedia.com Guest

  8. #7

    Default Re: calendar

    if you had a brain you would use a button that says "switch to chinese" or
    "switch to hibrew" on the appropriate versions! Doesn't take a genius to
    come up with that solution!

    "liyusaw" <webforumsuser@macromedia.com> wrote in message
    news:bi94o6$o4b$1@forums.macromedia.com...
    > Hi
    > I want to make a calendar with director.
    > The calendar is of two types,from say hibrew
    > to chineese. I know all the dates in both calendars
    > I need to know how the client will switch between both
    >
    > Thanks.
    >
    >

    Andrew Kennedy Guest

  9. #8

    Default Calendar

    how do I attach a clendar to my web page??
    Darwin Guest

  10. #9

    Default Re: Calendar

    save the calendar as a web page and then link to it like any page.

    --
    David Bartosik - MS MVP
    for Publisher help:
    [url]www.davidbartosik.com[/url]
    enter to win Pub 2003:
    [url]www.davidbartosik.com/giveaway.aspx[/url]

    "Darwin" <LFDFF@comcast.net> wrote in message
    news:2910599E-7755-423E-B47A-8DBC67A7E617@microsoft.com...
    > how do I attach a clendar to my web page??

    David Bartosik - MS MVP Guest

  11. #10

    Default Calendar

    My client wants a calendar on her web page for classes she gives. I've never had to put a calender on a web page. Is there an extension for DW CS3 that does calenders?
    SuJun Guest

  12. #11

    Default Re: Calendar

    SuJun wrote:
    > My client wants a calendar on her web page for classes she gives. I've never had to put a calender on a web page. Is there an extension for DW CS3 that does calenders?
    My cssCalendar is one possibility.

    [url]http://valleywebdesigns.com/vwd_csscalhelp.asp[/url]

    --


    E. Michael Brandt

    [url]www.divahtml.com[/url]
    [url]www.divahtml.com/products/scripts_dreamweaver_extensions.php[/url]
    Standards-compliant scripts and Dreamweaver Extensions

    [url]www.valleywebdesigns.com/vwd_Vdw.asp[/url]
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

    --
    E Michael Brandt Guest

  13. #12

    Default Re: Calendar

    E Michael Brandt - thanks for sharing can I use Your cssCalendar in non-commercial website?
    Tom Black 30 Guest

  14. #13

    Default Re: Calendar

    Tom Black 30 wrote:
    > E Michael Brandt - thanks for sharing can I use Your cssCalendar in non-commercial website?
    Contact me offlist to explain your question better?

    michael at either of the domains below:

    --


    E. Michael Brandt

    [url]www.divahtml.com[/url]
    [url]www.divahtml.com/products/scripts_dreamweaver_extensions.php[/url]
    Standards-compliant scripts and Dreamweaver Extensions

    [url]www.valleywebdesigns.com/vwd_Vdw.asp[/url]
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

    --
    E Michael Brandt Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139