I set up my email account with ntlworld can somebody please help me why it keeps downloading emails i have deleted from about 4 years ago amounting to thousands of emails. thanks

i set up my email account with ntlworld can somebody please help me why it keeps downloading emails i have deleted from about 4 years ago amounting to thousands of emails. thanks

Hi, is this POP or IMAP?
In Mail Preferences>Accounts>Mailbox Behaviors, what are settings for remove from server & such?

Similar Messages

  • I need some help with my java game using applets, CAN SOMEBODY PLEASE HELP

    Hi,
    I am in the process of creating a RPG program using Java. I am not very experienced with java, however the problem i am currently facing is something i can't seem to figure out. I would like to draw a simple grid where a character (indicated by a filled circle) moves around this grid collecting items (indicated by a red rectangle). When the character moves on top of the grid with the item, i would like it to disappear. Right now i am not worrying about the fact that the item will reappear after the character moves away again, because sometimes, when the character moves over the item, nothing happens/another item disappears. i have been at this for 4 days and still cannot figure out what is goign on. can somebody please help me? it would be most appreciated.
    Thanks
    PS if i needed to send you my code, how do i do it?

    Thank you for replying.
    The thing is, I am taking java as a course, and it is necessary for me to start off this way (this is for my summative evaluation). i agree with you on the fact, however, that i should go in small steps. i have been doing that until this point, and my frustration caused me to jump around randomly for an answer. I also think that it may just be a bug, but i have no clue as to how to fix it, as i need to show my teacher at least a part of what i was doing by sometime next week. Here is my code for anybody willing to go through it:
    // The "Keys3" class.
    import java.applet.*;
    import java.awt.*;
    import java.awt.Event;
    import java.awt.Font;
    import java.awt.Color;
    import java.applet.AudioClip;
    public class Keys3 extends java.applet.Applet
        char currkey;
        int currx, curry, yint, xint;
        int itmval [] = new int [5],
            locval [] = new int [5],
            tempx [] = new int [5], tempy [] = new int [5],
            tot = 0, score = 0;
        boolean check = true;
        AudioClip bgSound, bgSound2;
        AudioClip hit;
        private Image offscreenImage;
        private Graphics offscreen;     //initializing variables for double buffering
        public void init ()  //DONE
            bgSound = getAudioClip (getCodeBase (), "sound2_works.au");
            hit = getAudioClip (getCodeBase (), "ah_works.au");
            if (bgSound != null)
                bgSound.loop ();
            currx = 162;
            curry = 68;
            setBackground (Color.white);
            for (int count = 0 ; count < 5 ; count++)
                itmval [count] = (int) (Math.random () * 5) + 1;
                locval [count] = (int) (Math.random () * 25) + 1;
            requestFocus ();
        public void paint (Graphics g)  //DONE
            resize (350, 270);
            drawgrid (g);
            if (check = true)
                pickitems (g);
                drawitems (g);
            g.setColor (Color.darkGray);
            g.fillOval (currx, curry, 25, 25);
            if (currkey != 0)
                g.setColor (Color.darkGray);
                g.fillOval (currx, curry, 25, 25);
            if (collcheck () != true)
                collision (g);
            else
                drawitems (g);
        } // paint method
        public void update (Graphics g)  //uses the double buffering method to overwrite the original
                                         //screen with another copy to reduce flickering
            if (offscreenImage == null)
                offscreenImage = createImage (this.getSize ().width, this.getSize ().height);
                offscreen = offscreenImage.getGraphics ();
            } //what to do if there is no offscreenImage copy of the original screen
            //draws the backgroudn colour of the offscreen
            offscreen.setColor (getBackground ());
            offscreen.fillRect (0, 0, this.getSize ().width, this.getSize ().height);
            //draws the foreground colour of the offscreen
            offscreen.setColor (getForeground ());
            paint (offscreen);
            //draws the offscreen image onto the main screen
            g.drawImage (offscreenImage, 0, 0, this);
        public boolean keyDown (Event evt, int key)  //DONE
            switch (key)
                case Event.DOWN:
                    curry += 46;
                    if (curry >= 252)
                        curry -= 46;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.UP:
                    curry -= 46;
                    if (curry <= 0)
                        curry += 46;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.LEFT:
                    currx -= 66;
                    if (currx <= 0)
                        currx += 66;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.RIGHT:
                    currx += 66;
                    if (currx >= 360)
                        currx -= 66;
                        if (hit != null)
                            hit.play ();
                    break;
                default:
                    currkey = (char) key;
            repaint ();
            return true;
        public boolean collcheck ()  //DONE
            if (((currx == tempx [0]) && (curry == tempy [0])) || ((currx == tempx [1]) && (curry == tempy [1])) || ((currx == tempx [2]) && (curry == tempy [2])) || ((currx == tempx [3]) && (curry == tempy [3])) || ((currx == tempx [4]) && (curry == tempy [4])))
                return false;
            else
                return true;
        public void collision (Graphics g)
            drawgrid (g);
            for (int count = 0 ; count < 5 ; count++)
                if ((currx == tempx [count]) && (curry == tempy [count]))
                    g.setColor (Color.darkGray);
                    g.fillOval (currx, curry, 25, 25);
                else if ((currx != tempx [count]) && (curry != tempy [count]))
                    g.setColor (Color.red);
                    g.fillRect (tempx [count], tempy [count], 25, 25);
        public void drawitems (Graphics g)
            for (int count = 0 ; count < 5 ; count++)
                g.setColor (Color.red);
                g.fillRect (tempx [count], tempy [count], 25, 25);
        public void pickitems (Graphics g)
            check = false;
            for (int count = 0 ; count < 5 ; count++)
                if (locval [count] <= 5)
                    tempy [count] = 22;
                else if (locval [count] <= 10)
                    tempy [count] = 68;
                else if (locval [count] <= 15)
                    tempy [count] = 114;
                else if (locval [count] <= 20)
                    tempy [count] = 160;
                else if (locval [count] <= 25)
                    tempy [count] = 206; //this determines the y-position of the item to be placed
                if (locval [count] % 5 == 0)
                    tempx [count] = 294;
                else if ((locval [count] == 1) || (locval [count] == 6) || (locval [count] == 11) || (locval [count] == 16) || (locval [count] == 21))
                    tempx [count] = 30;
                else if ((locval [count] == 2) || (locval [count] == 7) || (locval [count] == 12) || (locval [count] == 17) || (locval [count] == 22))
                    tempx [count] = 96;
                else if ((locval [count] == 3) || (locval [count] == 8) || (locval [count] == 13) || (locval [count] == 18) || (locval [count] == 23))
                    tempx [count] = 162;
                else if ((locval [count] == 4) || (locval [count] == 9) || (locval [count] == 14) || (locval [count] == 19) || (locval [count] == 24))
                    tempx [count] = 228;
        public void drawgrid (Graphics g)  //DONE
            g.drawRect (10, 10, 330, 230); //draws the outer rectangular border
            int wi = 10; //width of one square on the board
            int hi = 10; //height of one square on the board
            for (int height = 1 ; height <= 5 ; height++)
                for (int row = 1 ; row <= 5 ; row++)
                    if (((height % 2 == 1) && (row % 2 == 1)) || ((height % 2 == 0) && (row % 2 == 0)))
                        g.setColor (Color.gray);
                        g.fillRect (wi, hi, 66, 46);
                    else /*if (((height % 2 == 0) && (row % 2 == 1)) || ((height % 2 == 0) && (row % 2 == 0)))*/
                        g.setColor (Color.lightGray);
                        g.drawRect (wi, hi, 66, 46);
                        g.setColor (Color.lightGray);
                        g.drawRect (wi, hi, 66, 46); //drawn twice to make a shadow effect
                    wi += 66;
                wi = 10;
                hi += 46;
            } //this draws the basic outline of the game screen
    } // Keys3 class

  • HT5282 I my safari automatically wiped when i took update. I am using Mac 10.6.8. Can you please send me how to reinstall it. Due to this my mail email system also effected. can you please help me soon

    I my safari automatically wiped when i took update. I am using Mac 10.6.8. Can you please send me how to reinstall it. Due to this my mail email system also effected. can you please help me soon

    The reason Safari "wiped" is unknown, but try reapplying the OS X 10.6.8 Combo update here:
    Mac OS X 10.6.8 Update Combo v1.1
    Your email problems may or may not be related. A more complete explanation of the problem would help.

  • HT204053 Need A Solution With An iCloud Problem So Can Somebody Please Help Me?

    Can somebody please help me find a solution to my problem? 
    When I enter my username and password and hit enter I get this message, "The Apple ID is valid but is not an iCloud account" is the error message I receive implying that I do not have an iCloud account. I have searched and looked at the troubleshooting contents and I haven't found anything even close to this issue so I have come here for help. I appreciate any tips or tricks to fix my problem.    Thank you for reading and look forward to hearing your answers. 
    Thank You,
    Lisa W. 

    Hey Lisa_AW!
    If you want to make this Apple ID an iCloud account, try referencing the information here:
    Creating an iCloud account: Frequently Asked Questions
    http://support.apple.com/kb/ht4436
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • I am still waiting for my student approval to set up the Adobe creative suite. Can you please help?

    I am still waiting for my student approval to set up the Adobe creative suite. Can you please help?
    Jasper

    Why are you asking this in the Adobe Reader forum?
    Best contact Adobe Customer Support.

  • I'm having trouble with my macbook pro, I have only had it for three months, when I plugged a camera sd card into the sd slot it isn't appearing anywhere on the computer and i can not access my photographs. can somebody please help me?

    I'm having trouble with my macbook pro, I have only had it for three months, when I plugged a camera sd card into the sd slot it isn't appearing anywhere on the computer and i can not access my photographs. can somebody please help me?

    Shootist007 wrote:
    Clifton I must disagree with you on the above statement. It is my opinion and experience that you should never connect the camera directly to any computer, Mac Windows Whatever.
    It is always best to Remove the memory card from the camera and put it in a card reader, whether an external reader or one built into the computer, to copy images from the card.
    Hi Shootist. I would be interested in hearing some reasoning on this. I almost always use a USB cable to connect my camera to the MBP for transferring pictures, and have moved about 30,000 this way over the last 6 years since my photography went digital. Recently, on the rare occassions when I have only a few to transfer and I was too lazy to go for the cable, I have used the card reader; about half those times I have difficulty getting the MBP to recognise the card. I find I have to press the card very hard into the slot for it to be recognised.
    My rationale is quite possibly wrong, but I feel that the USB connectors are more robust and hard-wearing than the flimsy connectors on an SD card. Also, I haven't measured it, but I think the data transfer is faster with the cable. (I just came across this test, which reports noticeably faster transfer for cable than built-in card reader, but the computer was a PC)
    Chiara, sorry for hijacking your thread.

  • I am having trouble trying to get my address book from my mac (just downloaded Lion for this purpose) to my 3G ipad. Set up an icloud account but still confused! Please help !

    I updated my mac with  os x Lion so that I could accomplish moving my address book from the mac to my new IPad 3G. I also set up an icloud account for this purpose, but I *still* cannot figure out how to move my address book from one computer to the other. When I'm on my mac and try to use bluetooth to export the address book, I'm able to find my ipad but I soon get a message that it does not support the necessary services. I have no idea what's going on and would appreciate any advice. tks in advance, Sarah

    blacksheepfibers wrote:
    I updated my mac with  os x Lion so that I could accomplish moving my address book from the mac to my new IPad 3G. I also set up an icloud account for this purpose, but I *still* cannot figure out how to move my address book from one computer to the other. When I'm on my mac and try to use bluetooth to export the address book, I'm able to find my ipad but I soon get a message that it does not support the necessary services. I have no idea what's going on and would appreciate any advice. tks in advance, Sarah
    The address book syncs via iCloud, not Bluetooth or iTunes.
    You upgraded to Lion so you could use iCoud.
    On the computer. go to Apple menu > System prefs > iCloud.
    Sign into your iCloud account.
    Tick everything.
    This enalbes the se items syncing to iCloud.
    On the iPad, Settings > Mail, Contacts, Calendars.
    Create a new iCloud account.
    Sign in with the same AppleID as your computer.
    Settings > iCloud and turn everything on.
    BAM!
    That is all you need to do.
    Your contacts (and all other checked items checked) will sync between computer and iPad.
    No need to use iTunes

  • Can somebody please help me and tell me how i can delete apps permnently with an iphone 4S with an updated IOS 8.1.2

    WIth the updated IOS 8.1.2 on my iphone 4S i can't seem to delete apps permanently. Can somebody tall me how i can delete apps please.

    Are you syncing with iTunes?
    If so, then you must mark the Apps that you have deleted in iTunes to not reload. If this isn't done they will return after a sync.

  • I have been trying to open itunes that has already been installed. But, the thing is it never opens and when i do right click and trouble shoot also, it doesnt open. I dont whats wrong with itunes and my comp is 64 bit windows 7. Can somebody please help

    I have been trying to open itunes that has already been installed. But, the thing is it never opens and when i do right click and trouble shoot also, it doesnt open. I dont whats wrong with itunes and my comp is 64 bit windows 7. Can somebody please help

    no its 64 bit version of itunes. Can you please help me. I am not able to sync my iphone.

  • HOW DO I SET UP AN EMAIL ACCOUNT WITH NTLWORLD

    I am trying to set up an exchange account for email. iPad does not appear to recognise my "ntlworld" user account. Can anyone advise. I seem to recall that you are supposed to enter a different name than NTLworld but can't recall where I saw it!
    Tony D

    Hello:
    Open the Mail application.  You will see step by step instructions.
    Barry

  • I have changed settings on my email account with my provider, but in order to activate the address they instructed me to delete my account and add a new account with the same email address. Will this delete my all my email history? Any advise please?

    I have an OS X 10.6.8 and have had problems with my mail. I have changed my account settings with my mail provider, but they suggest I now delete my account and add a new account with the same email address. Will this delete my email history? Can anyone please advise?

    I have the same problem as the emails go to my iCloud account that I cannot access!!! I cannot answer the security questions as someone else must have set up my iCloud account. Nothing seems to work. It would be great if someone has some ideas as what can be done to recover the situation?

  • HT1386 i have an extensive music library on my itunes from 100 years ago.  since then, my email address, etc. have changed at least 3 times.  i am not able to sync my iphone with my itunes - shows no music on my phone.  don't want to have to re-purchase m

    I have a current (extensive) itunes library established years ago with an ipod classic.  My email address, etc. has changed many times since then and I am not able to sync my music from my itunes to my iphone 5c.  I'm sure it's due to a different email address/apple ID.  How can I get them to sync so as not to have to re-purchase all of my music and podcasts?

    The extensive itunes libary that was on an ipod classic likely as not came from an itunes library. The music that is on the itunes library will sync to an iphone once the iphone has been authorized through the itunes store. If it is as you say that all this music came from an 'itunes library' then there should not be an issue syncing this music to an alternate device.
    If on the other hand this music came from multiple itunes libraries. It will then be a matter of logging in with each apple id login which was used when purchasing the songs to then re-downloading the songs to that specific apple id login. Once you have purchase music from the itunes store using an apple id login the music then follows the apple id virtually indefinately.

  • Can somebody please help with Javascript. 2 small problems.

    Hi. I have created a dynamic PDF form with fields. I have 2 problems that i am sure someone can help me with. (I can email anyone this PDF upon request).
    PROBLEM 1. In this form I have a table (actually i think its a sub form) which has 3 buttons associated with it ('Add Row', 'Delete Row' and (Clear Row'). One button adds a new row. It works but it effectively duplicates the row (and all text fields/cells contained in the row) and places this new row at the bottom of any existing rows. What i require is for this button (the button gets duplicated along with the row) to place the new row immediately below the row from where it is clicked. ie, imagine you open the document, fill out the row (at this stage there is only one) and hit the 'Add Row' button. You now have 2 Rows (great), so you fill out the second Row. Now here is my problem, if you hit the 'Add Row' button on the first Row, a new 3rd Row is added to the bottom and not in between Row 1 and Row 2.
    Effectively if you have dozens of Rows filled out and you need to insert a Row for an amendment, currently it cannot be done without deleting all Rows up to the point where you want to make the addition/insertion.
    PROBLEM 2. Within this Row of text/numeric fields are two fields (called 'Rate' and 'Loading') where dollar amounts are entered. As the form is filled out (the Rows can be dynamically generated and it's fields manually filled out by the user) there can potentially be dozens of Rows in a completed form and, as each Row has many text/numeric fields, one can imagine Columns forming once there is more than 1 Row. At the end of the form, totals are automatically calculated. I have created a button to reset (erase) all amounts entered into these two specific fields (Columns) but in every Row. Unfortunately there is something wrong with my script syntax as this button does not do this. ( i want this facility as when the form, which is a budget proposal, is completed i need to send two copies - one to accountants with figures and logistics and a second copy to another department whom i do not want to give the figures, so i need the button to erase figures without having to clear each cell individually).
    Any help that someone can give would be much appreciated.
    Please email me at
    [email protected] if you would like me to send you the file.
    Cheers
    Bradd

    Send the form to
    [email protected] and I will give it a go ....include a reference back to this forum posting.
    Paul

  • Names of downloaded files appear in Downloads Window only if that window is open during download. I run Firefox 4 on windows xp 32 bit sp3. I didn't have such problem with Firefox 3. Can somebody please help me?

    When I download a file with firefox 4 Downloads Window opens but downloading file name doesn't appear there. If I keep Downloads Window open further downloads appear in it but if i close it and reopen it again it appears blank, all downloaded file names are disappeared. I tried everything, unchecked "Remember download history" box and checked it again, deleted downloads.sqlite file, even created new profile but nothing helped.

    It is easy for me to explain things badly, and I can not see what you are actually doing, I will therfore try to list as steps to take.
    Please confirm that you have used firefox safe mode and still see the problem, by doing the following:
    # open firefox - use any profile
    # use '''Firefoxbutton -> Help -> Restart with add-ons disabled'''
    # you should now see an options dialogue with a list of check box options,
    #*you may get a confirmation option, if so accept it
    #* do you now see the listing of check boxes, with a continue button at the bottom
    #without making any changes, click the continue with safemode
    # firefox should now restart in safe-mode
    Now try the downloading, whilst we know you are in safe mode.
    # once a download has completed, use the option to open the containing folder that you see in your download manager
    ## does that option work ok,
    ## does it open a folder with downloads in it, make a note of the folders path/location/name
    ## do you see the downloaded file you just downloaded
    ## if so regardless of what the downloads folder says you have found the downloads
    ## close firefox and the folders with the downloads
    ## are you now able to reopen the 'containing' folder and find the downloads <br />( use Windows Explorer, not clicking on firefox, - firefox is closed)
    ## close the folder again
    ## open firefox, this time no need to be in safe mode
    ## look again for the containing folder whose name you noted down, does it still contain the downloads
    #'''IF''' you are getting problems now that you are in safe mode read the article about [[Unable to download or save files]]
    ## the article has several steps it suggests you try,
    ## please try all the steps in turn and report what happens with each step

  • I want BBM on my ipad, if anyone has it on an ipad mini with wifi, can you please help me?x

    Well, I have been excited by the idea that BBM is available for me on an apple product. So as I pressed install in the App Store, it said I am not compatible to get BBM. If anyone does have it on their ipad mini with wifi ( model number A1432 ) Can you please respond on how I can? Thanks :) x

    While the Instagram App doesn't show when searching for iPad specific Apps, it does show as being compatible with the iPad when searching.
    https://itunes.apple.com/ca/app/instagram/id389801252?mt=8

Maybe you are looking for