Mini-Calendar not passing proper ID's

Hello;
I have posted about this little calendar before. But then, I didn't have anything really working, now, I actually have it passing the proper dates from the db and making links in the day an event falls on.... BUT it passes the same ID to all the days in the month instead of the ID or the record it is pulling from.Can anyone help me figure out what I need to add to this to make it separate out the proper ID to link to another dynamic page? I believe it is either my query, or I need to make a cfset that makes the day eq ID or something. I'm not sure and not sure how to write that.
Here is my code:
<cfoutput>
<table border="1" width="100%" cellpadding="0" cellspacing="0">
  <tr>
  <cfloop index="x" from="1" to="7">
        <!--- Change the days of the week to be shorter--->
            <td><FONT face="Arial, Helvetica, sans-serif" color="##000000" size="2">#DateFormat(x, "ddd")#</FONT></td>
        </cfloop>
        </tr>
</cfoutput>
<cfset firstOfTheMonth = createDate(year(now()), month(now()), 1)>
<!--- Add new variable for the end of the month--->
<cfset endOfTheMonth = createdatetime(year(now()), month(now()), #daysinmonth(firstOfTheMonth)#, 23, 59, 59)>
<!--- Query the database and search between the start and end--->
<CFQUERY datasource="#APPLICATION.dataSource#" Name="get_dates">
    Select ID, eventDate, Day(eventDate) AS dd
    From events
Where eventDate Between #firstOfTheMonth# and #endOfTheMonth#
</CFQUERY>
<!--- set the day from the list in the db--->
<cfset day = ValueList(get_dates.dd)>
<!---<cfoutput>#day#</cfoutput>--->
<cfset dow = dayofWeek(firstOfTheMonth)>
<cfset pad = dow - 1>
<cfoutput>
    <tr>
</cfoutput>
<cfif pad gt 0>
    <cfoutput>
        <td colspan="#pad#"> </td>
    </cfoutput>
</cfif>
<cfset days = daysInMonth(now())>
<cfset counter = pad + 1>
<cfloop index="x" from="1" to="#days#">
    <cfif x is day(now())>
        <cfoutput><td bgcolor="##f1f09c"></cfoutput>
    <cfelse>
        <cfoutput><td></cfoutput>
    </cfif>
    <cfoutput>
    <!--- Here we compare the day list to the days being outputed if there is a match we link it.--->
    <cfif x is day(now())>
        <cfif listFind(day,x)>
            <a href="/detail.cfm?dd=#get_dates.ID#" class="dateNav"><b>[#x#]</b></a>
  <cfelse>
   <FONT face="Arial, Helvetica, sans-serif" color="##000000" size="2"><b>#x#</b></FONT>
  </cfif>
    <cfelse>
        <cfif listFind(day,x)>
            <a href="/detail.cfm?dd=#get_dates.ID#" class="dateNav"><b>[#x#]</b></a>
        <cfelse>
            <FONT face="Arial, Helvetica, sans-serif" color="##000000" size="2">#x#</FONT>
        </cfif>
    </cfif>
    </td>
</cfoutput>
<cfset counter = counter + 1>
<cfif counter is 8>
    <cfoutput></tr></cfoutput>
    <cfif x lt days>
        <cfset counter = 1>
        <cfoutput>
            <tr>
        </cfoutput>
    </cfif>
</cfif>
</cfloop>
<cfif counter is not 8>
    <cfset endPad = 8 - counter>
    <cfoutput>
        <td colspan="#endPad#"> </td>
    </cfoutput>
</cfif>
<cfoutput>
</table>
</cfoutput>
I know this is a lot of code. The problem is from my query down. Really everything before that is working, it is just not passing proper ID's to the proper records. They all have the same ID.
Can anyone help me?
Thank you
CFmonger

This is the code doing the wrong thing:
<cfset firstOfTheMonth = createDate(year(now()), month(now()), 1)>
<!--- Add new variable for the end of the month--->
<cfset endOfTheMonth = createdatetime(year(now()), month(now()), #daysinmonth(firstOfTheMonth)#, 23, 59, 59)>
<!--- Query the database and search between the start and end--->
<CFQUERY datasource="#APPLICATION.dataSource#" Name="get_dates">
    Select ID, eventDate, Day(eventDate) AS dd
    From events
Where eventDate Between #firstOfTheMonth# and #endOfTheMonth#
</CFQUERY>
<!--- set the day from the list in the db--->
<cfset day = ValueList(get_dates.dd)>
<cfoutput>
    <!--- Here we compare the day list to the days being outputed if there is a match we link it.--->
    <cfif x is day(now())>
        <cfif listFind(day,x)>
            <a href="/detail.cfm?ID=#get_dates.ID#" class="dateNav"><b>[#x#]</b></a>
  <cfelse>
   <FONT face="Arial, Helvetica, sans-serif" color="##000000" size="2"><b>#x#</b></FONT>
  </cfif>
    <cfelse>
        <cfif listFind(day,x)>
            <a href="/detail.cfm?ID=#get_dates.ID#" class="dateNav"><b>[#x#]</b></a>
        <cfelse>
            <FONT face="Arial, Helvetica, sans-serif" color="##000000" size="2">#x#</FONT>
        </cfif>
    </cfif>
    </td>
</cfoutput>
Like I said, it is passing the proper day of the month, because it makes a link on the proper date, it is not passing the proper id to go with the record for the respective date.
CFmonger

Similar Messages

  • IPad Mini - Calendar Notes

    Why notes, inside an event on iPad Mini Calendar App, can only be seen on dayview meanwhile in other are shown as edit mode? Is this a bug? Nothing to do with iPhone or Macbook.
    I've found that when I try to check my notes inside an event on Calendar, and I click "more", an edit window appears, instead of a windows with only my information about notes.
    This not happens on iPhone or my Macbook.
    I think this is a bug that should be fixed in the next update.
    Any comment will be welcome.
    Thank you,
    Jose

    If you want an app using your iPad calendar for a professional use :
    http://www.beesapps.com/beesy-ipad-to-do/
    I may receive some form of compensation, financial or otherwise, from my recommendation or link <Edited by Host>

  • Not passing proper ID after login

    Hi,
    I have a site set up which requires users to login based on
    user name, password and level. I have been testing it and I am able
    to log in as different users with different access levels.
    The issue is that regardless of who I login as the only ID
    that gets passed is the very first one. Any ideas?

    I tried the solution from this article
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_19204
    which unfortunately did not do the trick.
    It still only see the first user after I login regardless of
    who I login as. I have included the login page and the index page
    codes hoping someone can see something. Also included a list page
    which is really the master page that displays all of the records.
    The funny thing is when I click on "Details" from the list page it
    passes the correct "ID" just fine.

  • In order to properly play my music on my DAC with a headless mac mini, I had to "check" the tunes in iTunes. When I did that, the songs in each album were put in not their proper order. How do I restore them to their original sequence in each album?

    In order to properly play my music on my DAC using a headless Mac Mini, I had to make sure that all of the songs in "Music" were checked. To so so, I pressed the "check box." When I did that, all of the songs in each album were resequenced in not their proper order.
    How do I restore the proper order of songs for each album?

    In list view, select the album column. To choose which columns appear, select an item on the left side of the window (a playlist, for example), choose View > View Options, and select the information you want to see. You can also Control-click a column heading to select columns to display.
    The column selected determines how tracks are displayed.  For example, clicking the "Name" column displays all tracks in alphabetical order; clicking the "Album" column displays the tracks in album order; clicking the "Date Added" column displays the tracks in the order that they were imported into your library.  Columns also have a disclosure arrow at the right of the column (when selected) that you can click to reverse the order.

  • Mini Calendar does not show the correct date

    Hi there ,
    in iCal on the bottom left side of the window is the mini Calendar, when I switch between months in this mini Cal,it does not show the correct month anymore and even the button "Today" can not revert the day back ( for example we are now in September, when I open iCal it shows it correctly but after going to next or previous months using the triangles on this mini Cal, the problem comes up ! )

    Maybe it wasn't receiving the correct info from your carrier. You're supposed to turn your phone off once in a while so the carrier can update stuff. I had originally heard that you should do it once a day but I never did that.

  • Have set up icloud on my pc but the events form my ipad mini are not showing on the calendar

    have set up icloud on my pc but the events form my ipad mini are not showing on the calendar. How do I do this?

    Hi ailsafromgbr,
    Thanks for using Apple Support Communities.  This article has steps you can take to troubleshoot issues with iCloud calendars:
    iCloud: Troubleshooting iCloud Calendar
    http://support.apple.com/kb/ts3999
    Cheers,
    - Ari

  • Install PT8.53 with Linux Issue: Jolt client (ip address 192.168.196.102) does not have proper application password

    Folks,
    Hello.
    I am installing PeopleTools 8.53 with Oracle Database Server 11gR1 and OS Oracle Linux 5.10.
    Data Mover Bootstrap and Application Designer can log into Database instance successfully. My procedure to run PIA is below:
    Step 1: start Oracle Database Server and LISTENR is listening.
    Step 2: start Application Server ./psadmin and 8 processes are started.
    Step 3: start WebLogic Server PIA /opt/PT8.53/webserv/PT853/bin/startPIA.sh
    In Browser, http://192.168.196.102:8000/ps/signon.html comes up successfully. But when sign in using UserID PSADMIN and password "myname", I get the error message in Browser as below:
    The application server is down at this time.
    CHECK APPSERVER LOGS. THE SITE BOOTED WITH INTERNAL DEFAULT SETTINGS, BECAUSE OF: bea.jolt.ServiceException: Invalid Session
    We've detected that your operating system is not supported by this website. For best results, use one of the following operating systems:
    Mac OS X 10.6(Snow Leopard)
    Mac OS X 10.5(Leopard)
    iPad
    Oracle Linux Enterprise
    Mac OS X 10.4(Tiger)
    Windows 8
    Windows 7
    Mac OS X 10.7(Lion)
    Regarding Application Designer, both Database Type "Oracle" and Connection Type "Application Server", UserID "PSADMIN" and password "myname" login successfully. I view TUXLOG (current Tuxedo log file) and its last screen is below:
    191723.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191723.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191723.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191724.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191724.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191724.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191724.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191724.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191725.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191725.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191725.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191726.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191726.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191726.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191726.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191726.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191727.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191727.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191727.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191727.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    I View APPSRV_1023.LOG (current server log file) and its content is below:
    PSADMIN.32259 (0) [2013-10-23T18:55:12.134](0) Begin boot attempt on domain PT853
    PSAPPSRV.32290 (0) [2013-10-23T18:55:35.701](0) PeopleTools Release 8.53 (Linux) starting. Tuxedo server is APPSRV(99)/1
    PSAPPSRV.32290 (0) [2013-10-23T18:55:35.923](0) Cache Directory being used: /home/user/psft/pt/8.53/appserv/PT853/CACHE/PSAPPSRV_1/
    PSAPPSRV.32290 (0) [2013-10-23T18:56:19.256](2) App server host time skew is DB+00:00:00 (ORACLE PT853)
    PSAPPSRV.32290 (0) [2013-10-23T18:56:23.504](0) Server started
    PSAPPSRV.32290 (0) [2013-10-23T18:56:23.507](3) Detected time zone is EDT
    PSAPPSRV.32338 (0) [2013-10-23T18:56:25.793](0) PeopleTools Release 8.53 (Linux) starting. Tuxedo server is APPSRV(99)/2
    PSAPPSRV.32338 (0) [2013-10-23T18:56:26.003](0) Cache Directory being used: /home/user/psft/pt/8.53/appserv/PT853/CACHE/PSAPPSRV_2/
    PSAPPSRV.32338 (0) [2013-10-23T18:57:08.871](2) App server host time skew is DB+00:00:00 (ORACLE PT853)
    PSAPPSRV.32338 (0) [2013-10-23T18:57:10.662](0) Server started
    PSAPPSRV.32338 (0) [2013-10-23T18:57:10.663](3) Detected time zone is EDT
    PSSAMSRV.32388 (0) [2013-10-23T18:57:12.159](2) Min instance is set to 1. To avoid loss of service, configure Min instance to atleast 2.
    PSSAMSRV.32388 (0) [2013-10-23T18:57:12.168](0) PeopleTools Release 8.53 (Li nux) starting. Tuxedo server is APPSRV(99)/100
    PSSAMSRV.32388 (0) [2013-10-23T18:57:12.265](0) Cache Directory being used: /home/user/psft/pt/8.53/appserv/PT853/CACHE/PSSAMSRV_100/
    PSSAMSRV.32388 (0) [2013-10-23T18:57:59.414](0) Server started
    PSSAMSRV.32388 (0) [2013-10-23T18:57:59.416](3) Detected time zone is EDT
    PSADMIN.32259 (0) [2013-10-23T18:58:48.149](0) End boot attempt on domain PT853
    PSAPPSRV.32290 (1) [2013-10-23T18:59:06.144 GetCertificate](3) Returning context. ID=PSADMIN, Lang=ENG, UStreamId=185906140_32290.1, Token=PT_LOCAL/2013-10-23-11.59.26.248432/PSADMIN/ENG/vSz0ix+wq8d+zPRwQ0Wa4hcek0Q=
    ~                                                                                                                                                        
    I think the error is indicated in TUXLOG file "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password". The application password "myname" in Browser http://192.168.196.102:8000/ps/signon.html page is not working. I use the same password "myname" to login Data Mover Bootstrap mode, Application Designer, and Application Server psadmin configuration successfully. I have tried a few other passwords in Browser http://192.168.196.102:8000/ps/signon.html page but not working.
    My question is:
    How to solve Sign In issue on http://192.168.196.102:8000/ps/signon.html that is "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password" ?
    Thanks.             

    Dear Nicolas,
    Hello. I have used the same password for "DomainConnectPswd" in the file Configuration.properties with that for Application Server setting. Eventually, UserID PSADMIN sign in http://192.168.196.102:8000/ps/signon.html successfully. PeopleTools 8.53 runs correctly in Browser.
    It seems that whether upgrade Oracle Linux 5.0 to the latest 5.10 does not have effect !
    I am very grateful to your great help for this installation of PT8.53 with Linux and Oracle Database !

  • ICal's Mini-Calendar Confused as to Month -- creates "offsets"

    This is the second time in a week I've run into this problem. A cursory look at recent threads doesn't seem to show anyone else with the problem, although I easily could have missed it.
    Occasionally, when I open iCal, it is "confused" as to the month. That is, even though right now it is 12/29, opening iCal and viewing the mini calendar in the lower left hand corner shows that it is the 29th -- but on the *November 2009* calendar. This persists if you advance the calendar ahead or back months. For example, in January, the 19th is supposed to be a Tuesday, but the mini calendar does not reflect it as such.
    I've found that a way to fix the problem is to have the main calendar go to the "monthly" view, and then advance it. That seems to reset the mini-calendar.
    Weird, right? Anyone else seeing this?
    FWIW, I do use an iPhone.

    Brian,
    Welcome to Apple Discussions.
    Often iCal display problems can be corrected by refreshing the the com.apple.iCal.plist file. You will find the com.apple.iCal.plist file in your Macintosh HD/Users/yourusername/Library/Preferences Folder. Quit iCal, drag the com.apple.iCal.plist file to your Desktop, log out/in or restart and check iCal for normal behavior.
    ;~)

  • Ical mini calendar loss

    I am really annoyed with Apple over the loss of the mini calendar view in Lion. This is (amongst other issues) a huge step backward in terms of functionality. Please reeinstate this as a matter of urgency as it makes planning a nightmare. I am now being pushed to the dreaded Microsoft solution or at the very least another calendar app.

    I just switched to Lion today (because of the loss of sync options with the closing of MobileMe), and I really miss the mini calendars and the sidebar. I just sent the feedback form to Apple also asking for the option to see mini calendars and the sidebar again. I am so disappointed that it's been almost a year of people asking for such a basic thing. I also dislike the "leather" look, and would like an option to make it a plain window like before, but the mini calendar loss afects my daiy use of it so much. I do switch to the year view to see the months but it's a pain because when you are in the edit window of an event then switch view to yearly then back to weekly the edit window closes an you have to start over again. I just like to see it all at once so I can plan things out. I don't want to lose something so basic to the use of any calendar. I am posting this in the hope that Apple will see it and change iCal, but also so that others might be inspired to submit a feedback form about this issue if it affects them. It's hard to believe though that after a year of people complaining about it and nothing changing, that we have any hope of getting mini calendars again. People keep saying "Just use BusyCal", and it looks like a nifty product, but paying an additional $50 to fix what we lost in Lion is so disappointing. Why is iCal not improved in Lion, made more like BusyCal or something amazing? Instead it's cut in half and looks so lame now.

  • How do I retrieve data from the cloud to put back on my iPad after it was restarted, I.e. my calendar, notes, reminders?

    I took my 1st gen iPad to an Apple store because of some glitches in the operating system, and I had forgotten my restrictions pass code. They backed up my data on the cloud, then took everything off of my iPad to basically "start over" with a new iPad. Now I don't know how to retrieve my calendar, notes, reminders. Somehow my contacts are there. I went to general settings and made sure the cloud was turned on, but I don't know how to pull from the cloud what we had previously backed up. Thanks for ANY suggestions:)

    When you have forgotten a restrictions password, you can no long restore from a backup that had the restrictions turned on.  You can only start over with a full reset.
    But you can sign back into icloud (Setting>icloud) and turn on the services you have used before (calendars, reminders, etc...).  That will sync down the data to your ipad.

  • SAP fails to find uninstaller or uninstaller parameters are not passed

    We have a custom add-on , and we intend to deploy the add-on with professional quality. However I have a issue with the uninstaller area.
    Scenario 1;
    Installer name = AddOnInstaller.exe
    Uninstaller name = AddOnUnInstaller.exe
    I have created a proper uninstaller and have created the ARD file with the uninstaller listed there. The proper parameters were given, However when registering the add-on ( with SAP) , SAP throws a message saying that uninstaller could not be found. However the uninstaller is present in the given path. I have checked the path in the ard file too. SAP however installs the add-on properly.
    Also During the install SAP copies the Installer.exe to the local profile temp folder, and runs from there. Does this have something to do with SAP not finding the uninstaller?
    Scenario2:
    This time I tried creating the Install and Uninstall function within the same program. So I have one exe now called AddOnInstaller.exe
    I have set the installer in the ard file to the AddOnInstaller.exe  and given the proper parameters. And I have set the Uninstaller in the ard file to another parameter such as “/u|uninstall;”.
    When registering the add-on within SAP, SAP now dose NOT give an error ( could not find uninstaller ). And also the add-on installs properly.
    Within my AddOnInstaller.exe, I check the command line to see if the command line is for an Install, or an Uninstall.
    However when the add-on is removed and deregistered, when I log back in to SAP, and when SAP runs the uninstaller, it passes Install parameters to the AddOnInstaller.exe. I have checked this with message boxes. Should it not pass Uninstall parameters as given in the ard file?
    I need a fix for this or a workaround please. all help is appreciated.
    regards,
    Indika.
    Message was edited by: changed the header title
            Indika Dekumpitiya

    yes the fixing the parameter helped, now SAP passes the correct parameter. I pass /u ( no | hwoever ).
        vCommand = Split(Trim(Command), "|")
        mInstallPath = Trim(vCommand(0))
        If UBound(vCommand) > 0 Then '---means Install paramaters
            mInstallerPath = Trim(vCommand(1))
        Else
            bUninstall = True
        End If
        If bUninstall Then
            Call UninstallAddOn
        Else
            Call Install
        End If
    this code above worked, thanks.

  • Mini calendar in mail missing after Lion installation

    mini calendar in mail missing after Lion installation

    >After installing Lion (intel I-Mac 2g ram). My Microsoft Office 2004 no longer runs.
    Upgrade to a Universal compatible version of Office or equivalent.  http://www.neooffice.org/ is the least expensive alternative, though importing Entourage into iCal, Mac OS X Mail, and Addressbook works best if the data was exported from Entourage while still in Snow Leopard.
    >Also, when I select "printer friendly" pages in Safari or Firefox, I get a "missing plugin" message.
    When you upgraded, did you make sure that Safari was installed in the Applications folder?  If not, you may have to redownload Safari from http://www.apple.com/safari/ as it happens to be the same version.  Firefox double check is already Lion compatible.  For more on upgrading to Lion, see my FAQ*:
    http://www.macmaps.com/upgradefaq.html#LION

  • After a ram upgrade to 8 GB mini does not start, control led is blinking and interval tut....tut is hearing..???, After a ram upgrade to 8 GB mini does not start, control led is blinking and interval tut....tut is hearing..???

    Hello,
    i tried to change the RAM on my Mac mini 2011 up to 8 GB RAM.
    After installing the modules the mini does not start, led blinking and tut......tut....tut.
    changhing back to the old modules, same problem.
    Who can haelp? THANKS

    Hello,
    The following table lists the new tones and their meaning:
    Tone(s)    Description
    1 tone, a 5-second pause, repeat    No RAM installed
    3 successive tones, a 5-second pause, 3 successive tones    RAM does not pass data integrity check
    1 long tone when holding down the power button    Firmware upgrade in process. See About firmware updates for Intel-based Macs for more details.
    3 long tones, 3 short tones, 3 long tones    Firmware restoration from CD in process. See About the Firmware Restoration CD (Intel-based Macs) for more details.
    http://support.apple.com/kb/HT2538
    Try reseating the RAM, or try the old RAM, the new one(s) may be bad or not Mac compatible.

  • HT4113 When I go for restrictions my iPad mini want my pass code I fill it's recurarment it's say wrong please help me what I do....?

    When I go for restrictions my iPad mini want my pass code I fill it's recurarment it's say wrong please help me what I do....?

    Hey there Ajjusingh,
    It sounds like the passcode you are entering for your Restrictions is not working for you. According to the following article you will need to perform a factory restore to reset that passcode:
    iOS: Understanding Restrictions (parental controls)
    http://support.apple.com/kb/ht4213
    Note: If you lose or forget a restriction passcode, you will need to perform a factory restore to remove it.
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Outlook Mail, Calendar, Notes and more?

    Hi!
    I am a Windows Mobile person but I recently feel in love with Bold, thinking of getting one right away but after going through the forums, I am slightly lost.
    I am currently able to synch my HTC phone with my company's outlook mail, calendar, notes and contacts. My company has Microsoft exchange but no BES, so I am thinking of signing up for the BIS with my operator. Question is will I still be able to synch mail, calendar, notes and contacts with BIS? I only see references to mail only. Not sure about the rest.
    Thanks a lot to anyone who is willing to help a potential newbie! 

    andyta wrote:
    Hi JSanders,
    Thank you for your reply. So just to confirm, there is synching of calendar, address book, tasks and memos. How about contacts? It that the same as the address book you mentioned?
    How is the performance of the synching? Is that a significant delay or just a matter of seconds?
    Thank you.
    Yes, Contacts = Address Book.
     The sync on Desktop Manager 4.5 and 4.6 is somewhat slow, it appears to give the data an extra couple of read passes for some reason. On DM 4,2, the sync was lightening fast.
    Expect 7-8 minutes for a sync on DM 4.6 with 1,000 contacts.
    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

Maybe you are looking for

  • How to transfer video from macbook to ipad2

    How to transfer video from macbook to ipad2

  • ADF looses contact with BackingBean - 11G

    I've a table component. For each row - i have 4 buttons -all binded to a backingbean. If I do an update/refresh in IE - All the buttons stop working. It's like the ADF form loose the contact to the backingbean. I've tried different bean settings sess

  • How can add a progress bar into script?

    Hi, I got a script for gen pdf I want put a progress bar, and make it working but I don't know where I can put the progress bar and how //===================================================================== var doc = app.documents;  app.findTextPref

  • What type of files can JAVA read?

    Hi, I'm asking whether Java can read the font format files ( files with .afr & afm extensions from adobe)? I'm trying to do so but it cause an exception? Can you help please?

  • MSS Content only seeable over "Open in New Window" Function

    Hello, we have established EP 7.0 with SP10 and MSS. First we saw all the content in the Webdynpros-iView in Portal. Now we can see this content only if we click onto upper right corner and select "Open in New Window". This works with all users activ