Help with a appointment calendar

Hello all,
First let me start by saying I'm sorry if I'm posting this in
the wrong place.
I have what I believe is a small problem that can be easily
fixed, I hope.
I'm new to Dreamweaver cs3 and I really don't know how to use
the code design, I just use it the easy way design view.
I am making my first website and have purchased a app. from
the DW exchange called "TDE_AppCalendar" here is the link:
http://www.topdreamweaverextensions.com/appointment-calendar
Anyway, I have the calendar in my web page and have entered
information on some of the dates, the problem is that when I scroll
over any of the days with appointments in them, a window should pop
open with more information on that days events, and it does....
However, it opens under the calendar not on top of the calendar .
Here's a link to the page for a visual reference:
http://www.keylightfilms.net/calender.html
. Can anyone please help to correct this so it shows on top like it
is supposed to work?
Thank you for any help.

No you are not missing it. You switch to Day view and scroll sideway to the day. I too feel you should be able to go direct.

Similar Messages

  • Help with iOS 7 Calendar

    I'm really struggling with the new calendar in iOS 7 on my iPad Retina. How do you move from month view directly into the view of a day. Say I pull up December 2013 in month view and I quickly want to access December 25th, 2013, how would I do that? It seems like I should be able to click on the day and it would take me directly to it, but that doesn't work.
    Am I missing something?

    No you are not missing it. You switch to Day view and scroll sideway to the day. I too feel you should be able to go direct.

  • Need some help with method for calendar

    Hi all,
    I've got to design a claendar for college but I'm not allowed use any one the Java calendar classes so I've but up a number of methods to get the start days of months etc.
    At the moment I'm trying to get a method working tha will loop around 12 times and assign the days in the month to a string array for printing later in another function but to test I'm printing to screen.
    At the moment when I get the days to print on screen It shows me the days for Janurary similar to below 12 times and I've been looking at it so long I can't see the wood for the trees and I was just wondering if someone can point out when I'm going wrong here.
    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
    The data for the start days and total number of days in a month are held in arrays in seperate methods as well.
    With the following code I'm just getting the days for Jan to print out 12 times.
    I thnik the the problem is with the first part of the while loop It does not appear to be looping throught the DaysIn and TopLeft arrays as if I manually change the value of the variable l = 1; I get the days for Feb to print out.
               static int [] DaysIn (int y) //  return correct day in month
             int [] LDays = {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; // leap year.
             int [] Days = {31, 28, 31, 30, 31, 31, 31, 30, 30, 31, 30, 31};
         if (y%4==0 && (y%100!=0 || y%400==0)) // test if y is a leap year. y is gotten from print cal.
             return LDays;
         else               
            return Days;
    static int [] TopLeft (int y) // find the starting position of the days in a month for printing
            int [] k = StartDay(y);
            int [] TopLeft = new int [12];
            int t = 0;
           while (t!=12)
         TopLeft[t] = 1- k[t];
         t++;
           return TopLeft;
    static String [] DispMonthDays(int y) // Method to supply the days of a month in grid form needs work.
         int k = 0; // int to take the topleft value for each month
         int DIM = 0; // int to take the total days in each month
        String MonthD=""; // empty string
         String [] MonthDay = new String [6];
         int l= 0;
                   While(l!=12)
              k = TopLeft(y)[l]; // Believe problem lies at these two lines
              DIM = DaysIn(y)[l];  //
                while (k != 42)
                 if (k < 1){MonthD = MonthD + " "+" "+" ";}
                                      else if (k >=1 && k <=9){MonthD = MonthD + " "+ k +" ";}
                    else if (k >= 10 && k <= DIM){MonthD = MonthD + k + " ";}
                    else if(k > DIM){MonthD = MonthD +" ";}
                    k++;     
              MonthDay[0] = MonthD.substring(0,20);
              MonthDay[1] = MonthD.substring(21,41);
              MonthDay[2] = MonthD.substring(42,62);
              MonthDay[3] = MonthD.substring(63,83);
              MonthDay[4] = MonthD.substring(84,104);
              MonthDay[5] = MonthD.substring(105,106);
         l++;}
         return MonthDay;
    static void PrintCal(int y) // function to hand off year and print cal
         int upstep=0;
        int count=0;
        while (count !=12)
              while (upstep!=6)
                 System.out.print(DispMonthDays(y)[upstep]);System.out.println();
                   upstep++;
              upstep=0;
              count++;
    }Any help greatly appreciated

    Given the previous valid comment here is my code again.
    I'm running the code on the console
       // Months of year          
                    static final String [] MNames  = {"January ", "February ", "March ", 
                        "April ",   "May ",      "June ",
                        "July ",    "August ",   "September ",
                         "October ", "November ", "December "};
         static int [] daysIn (int y) // see if y is a leap year and return correct day in month
               int [] LDays = {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; // leap year.
               int [] Days = {31, 28, 31, 30, 31, 31, 31, 30, 30, 31, 30, 31};
              if (y%4==0 && (y%100!=0 || y%400==0)) // test if y is a leap year. y is gotten from printCal.
              return LDays;
              else               
              return Days;
                    static int [] startDay(int y) // Find First Day of a month
              int [] z = daysIn(y);
              int firstDay =((y-1900)*365 +(y-1901)/4)%7;
              int x = 0;
             int [] startDay = new int [12];
             while (x!=12)
              if (x==0)
                 {startDay[0] = firstDay; firstDay = (firstDay+z[0])%7;}
              else
                 {startDay[x] = firstDay; firstDay = (firstDay+z[x])%7;}
              x++;
              return startDay;
           static int [] topLeft (int y) // find the starting position of the days in a month for printing
              int [] k = startDay(y);
              int [] topLeft = new int [12];
              int t = 0;
                                         while (t!=12)
                       topLeft[t] = 1- k[t];
                                              t++;
              return topLeft;
           static String [] dispMonthDays(int y) // Method to supply the days of a month in grid form needs work.
                 int k = 0; // int to take the topleft value for each month
                 int dim = 0; // int to take the total days in each month               
                            String monthD=""; // empty string
                 String [] monthDay = new String [6]; // String Array to take the results of MonthD  and be returned 12 tmes
              int loopThrough= 0; // int variable to progress through the topLeft and daysIn arrays
              while(loopThrough !=12)
                     k = topLeft(y)[loopThrought]; // Not being moved through as far as I can see
                    dim = daysIn(y)[loopThrough];
                          while (k != 42)
                     if (k < 1){monthD = monthD + " "+" "+" ";}
                        else if (k >=1 && k <=9){monthD = monthD + " "+ k +" ";}
                       else if (k >= 10 && k <= dim){monthD = monthD + k + " ";}
                       else if(k > dim){monthD = monthD +" ";}
                       k++;}
                     monthDay[0] = monthD.substring(0,20);
                     monthDay[1] = monthD.substring(21,41);
                     monthDay[2] = monthD.substring(42,62);
                     monthDay[3] = monthD.substring(63,83);
                     monthDay[4] = monthD.substring(84,104);
                     monthDay[5] = monthD.substring(105,106);
                   l++;
              return monthDay;
       static void printCal(int y) // function to hand off year and print cal amended for testing to see if dispMonthDays is working
         int count=0;
         int upstep=0; // int variable to return the monthDay
                          while (count !=12)
              while (upstep!=6)
                      System.out.print(dispMonthDays(y)[upstep]);
                       upstep++;
               upstep=0;
              count++;
      public static void main (String [] args)
         Scanner input = new Scanner (System.in);
         System.out.print("Enter a year: "); int year = input.nextInt();
             printCal(year);
                  I still think the problem is with the first loop in dispMonthDays

  • Help with Vista Email/Calendar with iTunes

    I got a new laptop from Dell and it is running Vista 32bit. Problem is I loaded itunes latest version 7.6.2.9. When I plug in my iPhone I don't see the vista email programe nor do I see the calendar. I have a PC and if I use that which is also running vista I see both. Can someone please help me. I have set the email and calenda to default and that has not worked.

    I am having the same issue. However, I am also trying to add a folder that has all my music and as soon as I start my computer crashes and restarts. Working with Windows Vista is a new pain.

  • Help with Microsoft Exchange Calendar Share

    I use a mac and my new company runs on Microsoft Exchange Server.  How do I view their calendars either in ical or on the web browser?  Also, should I use Entourage and if so how do I sync the calendars with Entourage?

    Microsoft folks have offered this solution, which I will be trying.
    1. On the Tools menu, click Accounts.
    2. Click the Exchange account that you will use to access the delegated items, click Advanced, and then click the Delegates tab..
    3. Under People I am a delegate for, click Add .
    4. Type the name of the person who has added you as a delegate, and then click Find.
    5. Click the delegate's name, and then click OK.
    However, as Diane mentioned, Outlook for Mac will not support accessing a secondary calendar. You also have to be a delegate for calendars before it will appear in Outlook for Mac. This is a limitation of EWS (the protocol Outlook for Mac uses to connect to Exchange) and is considered by design. The person sharing the calendar needs to provide you delegate access to their calendar before the non-default shared calendar will appear.
    This link provides a video that explains how to add a delegate in Outlook for Windows:
    http://www.brainstorminc.com/microsoft-office-com-help.aspx?file=outlook14_20
    And this link explains how to add a delegate in Outlook for Mac:
    http://mac2.microsoft.com/help/office/14/en-us/outlook/item/58df163a-fbd1-40ed-8 01f-e044d61fed58

  • I need help with sync: Entourage calendar to iphone...

    I presently have google contacts and calendars synced with the iphone, and I love it. I just got entourage 2004, and I love that too.
    I basically want to use google as my backup online
    I want to keep the settings as is for the contacts. I imported the contacts from google to address book, which syncs with entourage. I will just import contact from entourage to google, as needed.
    I'm stumped with the calendar. I want to input info from entourage, and the iphone and have them sync together. I would like for it to back up to google, but I can live without, as long as the iphone and entourage will update each other.
    How to do this without paying out for a service?
    if I do have to pay, then what is an inexpensive option
    thanks in advance

    Events should behave the same way as the contacts--sync them to iCal and then the iPhone will pick them up.
    http://support.apple.com/kb/HT1670
    But for more detail, probably best to ask in the Entourage forum here:
    http://www.officeformac.com/ProductForums/Entourage/
    I don't know if there is a way to sync the Entourage calendar to the Google calendar--ask either on the Entourage forum or somewhere there are specialists in google calendar.

  • Help with creating a calendar?

    I am trying to make a calendar, but when I push the create button nothing happens!! I have tried 2 ways, one making a album of the pics I want then creating the calendar, but I only get as far as selecting the type of calendar nothing else. Then creating the calendar without pics and the same thing happens. Any susggestions would be great!!

    Heads up Jacobe10,  I spent some time creating a calendar in iphoto.  Clicked on the buy button.  Now the whole program is stuck.  Can't shut down the computer or iphoto.  I'm thinking there might be problem with the program.

  • HELP !! My ipad mini and iphone 5 just stopped syncing calendar with outlook 2007 calendar.

    All apple devices are at current OS levels and no changes have been made except to calendar entries.  I recently added a bunch of new appointments to outlook and then used my ipad to insert an appointment that was sent to me by email from american airlines. I have done a hard boot (held done the off button till dark) on both devices. I have checked my sync settings in itunes - set to sync all calendars.  I have tried both iphone 5 and ipad mini using the automatic sync when device is attached and also by hitting the sync button in itunes.  I do not use the icloud, but both devices backup to my windows 7 computer.  Calendar is my most important app, as I use it to keep my day organized and to make it to appointments.  Not being able to sync is a disaster. Need help, can't think of what else to try.

    More - Information - Also tried the advanced setting to replace the ipad calendar with the outlook calendar - did not work and ran the Diagnostic test for sync and no errors found - says it works.  Extremely frustrated.

  • My iphone 4s is not synchronizing with my Outlook Calendar on my laptop. It appears that when I set up an appointment on my laptop the info is transmitted to the phone but the reverse is not occurring.

    Sometime during the past months my calendar on my iphone 4s is not synchronizing with my Outlook Calendar on my laptop. It appears that when I set up an appointment on my laptop the info is transmitted to the phone but the reverse is not occurring.

    I did put it in DFU mode but its still not working, although everytime it shows your iphone needs to be restored. Kindly help.

  • I need help with Sunbird Calendar, how can I transfer it from one computer to the other and to my iphone?

    I installed Sunbird in one computer and my calendar has all my infos, events, and task that i would like to see on another computer that i just downloaded Sunbird into. Also, is it possible I can access Sunbird on my iphone?
    Thank you in advance,

    Try the forum here - http://forums.mozillazine.org/viewforum.php?f=46 - for help with Sunbird, this forum is for Firefox support.

  • Hoping for some help with a very frustrating issue!   I have been syncing my iPhone 5s and Outlook 2007 calendar and contacts with iCloud on my PC running Vista. All was well until the events I entered on the phone were showing up in Outlook, but not

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

  • My calendar will no longer let me add new event or delete them, it comes up with an error saying "cannot save event, no end date set" or "event does not belong to that event store". can anyone help with this?

    my calendar will no longer let me add new event or delete them, it comes up with an error saying "cannot save event, no end date set" or "event does not belong to that event store". can anyone help with this?

    Hi,
    To configure your ODBC DataSource, go to Control Panel ---> DataSources(ODBC) (If you are in a Windows environment).
    Select the tab System DSN. If you have not added your data source, then do so by clicking on the Add button. If you have added the datasource, click on the Configure button to configure it.
    Give the datasource name, then the database name.
    You have to give the hostname, service name and server name. I guess, in most cases, the datasource name and host name will be the same, service name and server name will be the same. If you are using TCP/IP, the protocol will be onsoctcp.
    There will be a file named Services under C:\WINNT\system32\drivers\etc where you have to give the port number for accessing this server.
    It will be like this <service name> <portnumber>/tcp
    Hope this helps...
    best wishes,
    Nish

  • I cannot sync Ical on my iMac with my professional calendar (outlook web access). and I don't understand why it doesn't work since I have already made it with my iPhone. Help

    Hello,
    I bought an iMac few days ago. I would like to sync ical on my iMac with my professional calendar I use in my company (from outlook web access).
    I was easy to manage it on my iPhone (I just add a new "exchange" mail account and ask for a calendar sync only) and it worked very quickly.
    But I cannot do it with the iMac, and I don't undersatnd why?
    the domain is is used for my iPhone is the following :
    owa.companyname.com
    I tried all the solutions I found in this forum but it doesn't work.
    Many thanks in advancefor your help.
    Matt

    Does it have to be an applet?
    If you want the same behaviour as in the code with traffic lights, change
    class MortgageApplet extends JApplet implements ActionListener {
    to
    class MortgageApplet extends JFrame implements ActionListener {
    and change
    public void init() {
    to
    public MortgageApplet() {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • New to Blackberry and need help with calendar

    Hi all,
    Just got my very first BB and could do with some help with my laptop and calendar (don't know if what I want is possible or available, so sorry it its not )
    I got my BB for my personel use and want to be able to sync it with a calendar on my laptop.  I don't have microsoft outlook, so I was wondering if anyone knew of a application or download I can get that will give me a calendar on my Laptop that I can sync with my BB.
    Many thanks
    Abi
    Solved!
    Go to Solution.

    Abi, welcome to the Forums.
    Google Calendar sync is a perfect option.
    http://www.google.com/mobile/blackberry/sync.html
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I downloaded the icloud software on my computer in order to sync calendars and contacts using Windows 2007, but I keep getting an error message when trying to sync my icloud and Outlook calenders - can anyone help with this?

    I downloaded the icloud software on my computer in order to sync calenders and contacts using Windows 2007, but I keep getting an error message when trying to sync my icloud and Outlook calendars.  I downloaded it for the first time a month ago and  had it working but it stopped syncing, so I deinstalled the iCloud software and reinstalled, but keep getting the error message "Your setup couldn't be started because of an unexpected error.  What do I do now?  Can anyone help with this?

    Hello easbda,
    Thank you for providing the details of the calendar issue you are experiencing with your iPhone.  I recommend following the steps in the section titled "Troubleshooting on Microsoft Windows (Microsoft Outlook)" in the following article to assist with syncing your calendar events between your devices:
    iCloud: Troubleshooting iCloud Calendar
    http://support.apple.com/kb/ts3999
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

Maybe you are looking for

  • "A USB device is currently drawing too much power"

    I know it's a long post, but I just want to describe everything I've tried to do to solve the problem, so we can cut right to the chase Yesterday I got this message when I plugged in my external harddrive (which is working properly btw): "A USB devic

  • TS1398 imessage randomly stopped working.  Any ideas?

    iPhone 4 appears to be connect to the WiFi, but is not accessing web pages (i.e., YouTube, iMessage, FaceTime).  We reset the network, turned phone on and off, no luck.  Any ideas?

  • Using unloading point in MB1A mvt type 291

    Hi, How can I make the unloading point available for entry during goods issuance (MB1A) mvt type 291? I can't find the unloading point in the screen layout design in the Goods Issue folder in SPRO and I can't add the unloading point field in the move

  • How to set Camera Calibration as default??

    I've calibrated my D300 with a Macbeth color chart, and got the altered values from the CS3 Calibration Script. I've entered these values in LR Develop Camera Calibration, then used Option->Set Default->Update to Current Settings. I didn't change any

  • Servlet.jar

    can anyone tell me what this error message means. Ive installed a .war file that should work. but i get this error. Is it something to do with not being able to find servlet.jar ? if it is where do i need to put it? Thanks exception org.apache.jasper