Ical settings does not use the calendar which I have set as standard

and when I receive invitations via mail ICal enters the event under a different calendar (which I don't use)

I got a response to this from Paulcalif in another thread: "Have you tried "rebooting" by removing the battery and putting it back in. Try setting the volume all the way up first, then reboot it."
Lil Red:  This seems to have worked although I still think there is a bug in the software.  If I set the ringer volume to a different volume level the phone does not seem to respond. Oh well, as long as it rings loud then for the most part i'm good to go.
Post relates to: Treo 800w (Sprint)

Similar Messages

  • Treo800w does not use the ringer volume I have set

    I have my 'Phone: Known Caller' ringer setting set to the standard Treo ring tone that came preinstalled on the Treo800w. I have the 'Ring type' set to Ring but NO matter how high or low I set the ringer volume it only rings at the lowest volume setting when a call comes in.  It's so low that I basicly miss every call. I have tried changing to other ring tones and the same thing happens.  The ringer seems to work correctly when the Ring type is set to 'Increasing Ring' but that starts out so low that it does not increase the ring volume enough before the call goes to voicemail.  I need my ringer to use a relatively high ring tone volume setting.Has anyone else experienced this?  If so, what did you do to resolve it? 
    Post relates to: Treo 800w (Sprint)
    This question was solved.
    View Solution.

    I got a response to this from Paulcalif in another thread: "Have you tried "rebooting" by removing the battery and putting it back in. Try setting the volume all the way up first, then reboot it."
    Lil Red:  This seems to have worked although I still think there is a bug in the software.  If I set the ringer volume to a different volume level the phone does not seem to respond. Oh well, as long as it rings loud then for the most part i'm good to go.
    Post relates to: Treo 800w (Sprint)

  • My table of contents does not use the entry style I select for words in the paragraph that have character styles applied to them in the chapter, so some of the letters are showing up as green, which is fine in the chapter but not in the TOC.

    My table of contents does not use the entry style I select for words in the paragraph that have character styles applied to them in the chapter, so some of the letters, specifically parameters, are showing up green, which is fine in the chapter but not in the TOC. I can manually fix this in the TOC by changing the character style to none after the toc  has been generated, but I don't want to do this.

    What application are you running? Please ask this in the forum of the product you're using.

  • [svn:fx-trunk] 16929: Add a [Mixin] class that will register the required class aliases in the event the mxml compiler generation   [RemoteClass(alias="")] code is not called because an application does not use the Flex UI framework .

    Revision: 16929
    Revision: 16929
    Author:   [email protected]
    Date:     2010-07-15 07:38:44 -0700 (Thu, 15 Jul 2010)
    Log Message:
    Add a class that will register the required class aliases in the event the mxml compiler generation  [RemoteClass(alias="")] code is not called because an application does not use the Flex UI framework.
    Add a reference to this class in the RPCClasses file so it always gets loaded.
    QE notes: Need a remoting and messaging regression test that doesn't use Flex UI.
    Bugs: Watson bug 2638788
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/RPCClasses.as
    Added Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/utils/RpcClassAliasInitializer.as

    Great exercise to document the problem like this.  It got me thinking about how an app with modules would be different from an app that does not use modules.  Solution: I moved the dummy reference of PersonPhotoView out to the main application file (as opposed to being inside the module) and it worked.  I've probably been lucky not to have experienced this problem earlier, because for most other entities I have an instance attached to my model which is linked / compiled with the main application.

  • Why itunes does not sync the calendar?

    why itunes does not sync the calendar?

    Hey ThierryWillame,
    Thanks for the question. Were these songs purchased from the iTunes Store? If so, see the following resource. If not, follow the same steps for the content, based on how you acquired it (delete and re-add).
    Songs in iTunes may not play back completely
    http://support.apple.com/kb/TS4357
    Symptoms
    Occasionally, if a song purchased from the iTunes Store on a Mac or PC was not downloaded completely, the song may not play back fully. The song may abruptly stop during playback, and iTunes may start playing the next song in your library or playlist.
    Resolution
    If iTunes in the Cloud is available in your country, try the following steps to resolve the issue:
    1. Delete the purchased song that is exhibiting the problem from your iTunes library.
    2. Click on the Purchased link in the iTunes Store to view your previously purchased music.
    3. Download your previously purchased song from this list.
    Note: iTunes in the Cloud, which allows you to download previously purchased songs from the iTunes Store, is not available in every country. Learn if iTunes in the Cloud is offered in your country.
    Additional Information:
    iTunes 11 for Mac: Delete songs, playlists, or other items
    http://support.apple.com/kb/PH12159
    Download past purchases
    http://support.apple.com/kb/HT2519
    Thanks,
    Matt M.

  • The application does not use the  screen and run in the background

    Hi
    I have downloaded a package of j2me Midlet
    from [link] here [link]
    and try to reuse the code
    but I get the following error when running the code:-
    The application does not use the screen and run in the background
    I think the error into one of these two classes
    package main;
    import javax.microedition.midlet.*;
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.media.Manager;
    import javax.microedition.media.MediaException;
    import javax.microedition.media.Player;
    import java.io.IOException;
    import java.io.InputStream;
    public class MainMidlet extends MIDlet implements CommandListener {
        private SSGameCanvas gameCanvas ;
        private Command exitCommand ;
        private Player player = null;
        public void startApp() {
      try {
           //   create new game thread
              gameCanvas = new SSGameCanvas();
              gameCanvas.start(); // start game thread
              exitCommand = new Command("Exit",Command.EXIT,1);
              gameCanvas.addCommand(exitCommand);
              gameCanvas.setCommandListener(this);
                Display.getDisplay(this).setCurrent(gameCanvas);
       catch (java.io.IOException e)
                e.printStackTrace();
            try {
                // start sounds
                InputStream in = getClass().getResourceAsStream("/resource/startfly.wav");
                player = Manager.createPlayer(in,"audio/x-wav");
                player.setLoopCount(1);
                player.start();
            catch (MediaException ex)
                ex.printStackTrace();
             catch (IOException ex)
                ex.printStackTrace();
        public void pauseApp() {
        public void destroyApp(boolean unconditional) {
            if (player != null) {
                player.close();
            System.gc();
      public void commandAction(Command command, Displayable displayable) {
           if (command == exitCommand)
                 destroyApp(true);
                 notifyDestroyed();
    package main;
    import java.io.IOException;
    import javax.microedition.lcdui.*;
    import javax.microedition.lcdui.game.*;
    public class SSGameCanvas extends GameCanvas implements Runnable {
        protected GameManager gameManager;
        protected boolean running;
        private int tick=0;
        private static int WIDTH;
        private static int HEIGHT;
        private int mDelay = 20;
        Form mainForm;
        Display display;
        //private int MaxTime;
        public SSGameCanvas() throws IOException{
            super(true);
            gameManager = new GameManager(5,5,getHeight()-10,getWidth()-10,this);
        public void start() {
                this.running = true;
                Thread t = new Thread(this);
                t.start();
        public void stop() {
            running = false;
        public void render(Graphics g) {
            WIDTH = getWidth();
            HEIGHT = getHeight();
            // Clear the Canvas.
            g.setColor(0, 0, 50);
            g.fillRect(0,0,WIDTH-1,HEIGHT-1);
            // draw border
            g.setColor(200,0,0);
            g.drawRect(0,0,WIDTH-1,HEIGHT-1);
            // draw game canvas
            gameManager.paint(g);
        public void run() {
            while (running) {
                // draw graphics
                render(getGraphics());
                // advance to next graphics
                advance(tick++);
                // display
                flushGraphics();
                try { Thread.sleep(mDelay); }
                catch (InterruptedException ie) {}
        public void advance(int ticks) {
            // advance to next game canvas
            gameManager.advance(ticks);
            this.paint(getGraphics());
    }Edited by: VANPERSIE on Jul 10, 2012 12:26 PM

    Hi Andi,
    Thanks for your reply.
    Yes, I have waited for a while and the result doesn't change.
    The Porblem here is the application is seen started in visual administrator.Only restart brings up the page back.
    Can you please suggest anything.
    Thanks and regards
    Nagaraj

  • HT1296 How do I back up the calendar and contacts from my iPhone5 to my new macbook pro(10.8.3)? I have backed up the phone, but it does not transfer the calendar or the contacts. If I check them in the sync area and the back up the phone again...

    How do I back up the calendar and contacts from my iPhone5 to my new macbook pro(10.8.3)? I have backed up the phone, but it does not transfer the calendar or the contacts. If I check them in the sync area and then back up the phone again will they transfer or be erased? I am a bit gun shy since my previous macbook pro committed suicide and I lost a ton of info there.

    Copy everything from your backup copy of your old computer.

  • I am trying to use the brightness adjustment on a grayscale photoshop CS6 file.  The preview shows the adjustment working and changes the brightness, but when you click to apply the change, it does not apply the adjustment.  I have run into this problem b

    I am trying to use the brightness adjustment on a grayscale photoshop CS6 file.  The preview shows the adjustment working and changes the brightness, but when you click to apply the change, it does not apply the adjustment.  I have run into this problem before, although rarely, with some other files over the years and with earlier versions of CS.  I would like to know how to overcome this problem?

    Make sure you are viewing your image at 100%. At smaller views, pixels and layers and the way they interact are approximate interpolations and won't show you the actual pixel-for-pixel changes.

  • After i bought mac os x lion from web then download , after that to install but when they ask me to choose disk to install i can not choose, it say this disk does not use the GUID partiton table scheme. use disk utility to change the partition scheme. but

    after i bought mac os x lion from web then download , after that to install but when they ask me to choose disk to install i can not choose, it say this disk does not use the GUID partiton table scheme. use disk utility to change the partition scheme. but

    after i bought mac os x lion from web then download , after that to install but when they ask me to choose disk to install i can not choose, it say this disk does not use the GUID partiton table scheme. use disk utility to change the partition scheme. but

  • HT5225 "This disc does not use the GUID Partition Table Scheme...". I keep getting this message when I try to install OSXLion. It has something to do with a repair Apple performed last year. I use a 17" MacBookPro. Any suggestions?

    "This disc does not use the GUID Partition Table Scheme. Use Disc Utility to change the partition scheme". I keep getting this message when I try to install OSX Lion so that I can upgrade my 17" MacBookPro to move to iCloud. My harddrive was replaced last year by Apple because of a fault by the manufacturer and I think this is the cause of the problem. What can I do so that I don't lose my content.

    When you click the partion tab. There is option on the bottom of the window. Click on that there there are these options.

  • I have redeemed my iTunes giftcard (which was accepted without verification) however when I tried to make a purchase, I am required to verify my identity, and thus I cannot use the giftcard which I HAVE REDEEMED. Is there any way I can un-redeem it?

    I have redeemed my iTunes giftcard (which was accepted without verification; it only needed my password)
    However when I tried to make a purchase, I am required to verify my identity, and thus I cannot use the giftcard which I HAVE REDEEMED. Is there any way I can un-redeem it? I am currently trying to enter all of the possibilities for my questions, and my iPad is new, so the serial number is not registered with my account. According to support, no purchases have been made in my account, so I can't verify my identity through credit card. Please help!~

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    If you just want to have the card un-redeemed, use the form.
    (123638)

  • HT4356 My iPad does not find the printer. I have tried the HP app and it works, but in any other app the printer is not seen. How do I get this printer visible to the iPad. All my other network computers find and print with out a problem.

    My iPad does not find the printer. I have tried the HP app and it works, but in any other app the printer is not seen. How do I get this printer visible to the iPad. All my other network computers find and print with out a problem.

    hi
    could you tell us what the other app is please

  • Is there a way to purchase an app from the App store but not use the money I currently have in my iTunes account from a gift card?

    Is there a way to purchase an app from the App store but not use the money I currently have in my iTunes account from a gift card?

    The only way I know is to purchase it as a gift.

  • HT201304 I have been trying for two weeks to log into iTunes using my Bank of America Visa Debit card but no progress. Is it that iTunes does not use debit card, I only have a debit card and  Not credit card, so does it mean I can't use iTunes .?

    I have been trying for two weeks to log into iTunes using my Bank of America Visa Debit card but no progress. Is it that iTunes does not use debit card, I only have a debit card and  Not credit card, so does it mean I can't use iTunes .?

    I believe if you haven't already setup an itunes account, if you have access to computer with iTunes installed , you can create an iTunes account on that computer with no credit/debit card and then just buy iTunes cards at your local retailer to get credits.

  • New MySites does not use the specified permissions

    I've changed the MySite Settings in Central Admin so that only my AD group called "DOMAIN\All employees" is added to the Read Permission Level setting. I've removed "All" and "All Windows".
    Now users create MySites, and at first the permissions seems right. When I check top level permission on new mysite, only the user and the group "DOMAIN\All employees" is present in the list.
    The problem is that the folder "Shared with everyone" and the lists "Social" and "Microfeed" does not get the correct permissions. When I check the permissions (since they have unique permissions) I can see that it is the claim
    "All" that has access, not my "DOMAIN\All employees" group.
    This means that the documents added to the "Shared with everyone" is available for all users, not only my employees. The same is for content in the social lists, the elements are visible in search results for all users.
    Does anyone know how I can change the default permissions of the folder and the two lists that does not inherit permissions from the root web of the mysite?
    Regards ElinK
    ElinK

    Hi
    ElinK,
    There is no out of the box way to accomplish this with SharePoint
    As you had said, one way is that we can use the code to change the MySite list permission for the existed MySite.
    Another way is that we can create MySite programmatically, break inheritance and add unique permission to List.
    There are some articles for your reference.
    http://social.technet.microsoft.com/wiki/contents/articles/18788.sharepoint-2013-programmatically-create-mysites-for-all-users-of-a-group.aspx
    http://blog.sharepointclick.com/2013/04/programatically-breaking-inheritance.html
    http://www.thespgeek.com/2011/08/assigning-sharepoint-list-item-level.html
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

Maybe you are looking for

  • Header Images not all the time in APEX 3.1.1.06

    Hi I'm running APEX on a Oracle 11gR1 server and a Oracle 10gR2 XE Server. Both these servers don't load the images in my application all the time, refreshing the page either loads the images or not and its random which ones load or not. The images a

  • Help!  Trying to access a share disk with file sharing- problems

    I have limited knowledge of file sharing, keychain access, and Macs in general. My school uses the Mac OS 9's for our schoolwide "Accerated Reader" program (a common program for schools accross the US). I am unable to get the 4th grade class room's M

  • HT204053 Why is my Apple ID not verifing on icloud

    I am trying to set up iCloud on my iPad and iPhone but it says my apple ID cannot be verified? Why am I doing something wrong, I am using my normal apple ID that I use to go onto iTunes, etc.

  • How to add a simple hyperlink field in Apex

    Version : 4.1.0 Hi There, I have a simple requirement and was trying to find the best option. I was drawing a blank. I need to show one single field "Overview" on an Apex page at the top which when clicked opens a new page and goes to the underlying

  • Leopard Hard crash and airport disconnect

    Hello alll I have done a erase and install with leopard on my macbook pro 2 twice now thinking it was a installation issue. My internet connects through a netgear router that worked 100% perfect when on Tiger, but now after random intervals i lose co