How to remove and prevent multiple repetitions

How can I remove and prevent existing ans future repetions of emails in my IPad contacts

Rebuild LaunchServices Database
Open the Terminal application in your Utilities folder.  At the prompt paste in the following command in its entirety:
     find /System/Library/Frameworks -type f -name "lsregister" -exec {} -kill -seed -r \;
Press RETURN.  Wait for the Terminal prompt to return after which you can quit the Terminal.

Similar Messages

  • How to clear and prevent multiple identical apps on "Open With"?

    I understand why "Open With" includes both old and new versions of updated apps. Fine.
    But how do I CLEAR the list and prevent this from continuing? (I'd expect it to offer a "Clear List" option at the bottom. It doesn't.)
    Thank you.

    Rebuild LaunchServices Database
    Open the Terminal application in your Utilities folder.  At the prompt paste in the following command in its entirety:
         find /System/Library/Frameworks -type f -name "lsregister" -exec {} -kill -seed -r \;
    Press RETURN.  Wait for the Terminal prompt to return after which you can quit the Terminal.

  • How to Handle and show multiple pushpin imgaes on the map based on the requirement at different coordintes?

    How to Handle and show multiple pushpin imgaes on the map based on the requirement at different coordintes?
    I have multiple images in  my App folder. I want to use and show those images dynamically  in windows phone 8 map application

    There are a lot of different ways to do this. One simple method is to use a switch statement when creating your pushpins and based on some property in your data, select the icon you want to use and create your pushpin accordingly.
    http://rbrundritt.wordpress.com

  • How to remove and replace keyboard on HP Touchsmart Notebook 15-D020NR

    I spilled a drink on my keyboard and now I cannot get the Caps Lock to turn off and a number of keys do not work. I need the instructions on how to remove and replace this no frame keyboard. Thank you.    

    On your Support page- look for Maintenance and Service Guide under Manuals. http://support.hp.com/us-en/product/HP-15-d000-TouchSmart-Notebook-PC-series/6627588/model/6761859/manuals

  • How to remove and change the color of Java cup and border

    Hi to all,
    How to remove and change the color of Java cup and border.
    Thanks in advance
    khiz_eng

    This is just an Image. You would need to create your own image and call setIconImage(Image) on your JFrame.

  • How to manage and prevent database lock for database admin and development

    how to manage and prevent database lock for database admin and development
    [email protected]

    Hi,
    can someone advise me some good book or even better a PDF or a white paper on the Web where it's explained well how to design and manage a relational database (that is normal forms, tuning, design, implemantation...)?
    I've been working on Oracle databases for a few years as pl sql programmer, but I'd like to read something describing well the relational database theory, because I've been asked to work as database designer.There are many books available in the market, please go through this link -- http://www.amazon.com/gp/bestsellers/books/549646/ref=pd_ts_b_nav
    I've been told to read "Fundamentals of Database Systems" by Ramez Elmasri, but I ask here for some more advices.I would strongly recommend reading this book, it was my best reference during my college study and even after starting my DBA career.
    Thanks,
    Hussein

  • Satellite A30-921: How to remove and replace the memory?

    hi, can anyone help me how to remove and replace the memory of sat A30-921. and also, please give a detailed instruction.
    thank you in advance.

    Hi
    There is no much to explain. At the bottom side in the middle there is placed memory cover (fixed with two screws). Remove the cover and you will see 2 slots there. I dont know how much memory has you there but as Stefan said you can use max 2 GB of RAM (2x PC2700 1024MB - PA3313U-1M1G). How to remove memory modules you can see on http://www.hardwaresecrets.com/article/189/5
    Bye

  • I want to change my apple id primary e-mail from a .msn address to a .gmail address. The problem is that currently my .gmail address is my cover address and I cannot figure out how to remove and replace my gmail recovery address.

    I want to change my apple id primary e-mail from a .msn address to a .gmail address. The problem is that currently my .gmail address is my recovery address; I cannot figure out how to remove and replace my gmail recovery address with a new e-mail address.  I want to do this because I no longer use my .msn address.

    You should be able to change your rescue address by going to My Apple ID, signing in to manage your ID, then selecting the the Password and Security section, and answering the two security questions.  If you have trouble with this, contact the Apple account security team for your country to verify your identity and ask for assistance: Apple ID: Contacting Apple for help with Apple ID account security.  If your country isn't listed, contact iTunes store support by filling out this form: https://www.apple.com/emea/support/itunes/contact.html.

  • How to find and replace multiple cells at a time

    I am doing repetitive work re find text in numbers but then replace following cells with text. How can I find and replace multiple cells at a time?
    i.e. doing my own budget spreadsheet and coding all transactions with description and code

    Did you try the "Find/Replace" dialog box?:
    Then click the "Replace All" button in the bottom left.

  • How to load and unload Multiple External SWF

    hello there,
    i need help to figuring out how to load and also unload(removing) multiple external SWF.
    so here is what i;m trying to do,
    i want to load multiple external SWF and play it on my main SWF now i hove no problem with just loading multiple SWF and placing it in the display list .The problem came up when i tried removing those loaded SWF from the display list ,The problem exist because i have no way to refer to what i have loaded and placed on the display list,
    i used a single loader instance to load all that external swf,
    i do know that we have to remove all the event listener related to the external SWF that we want to remove and for this purpose i have crated a function called destroy which the main objective for this function is to remove all event listener inside the swf and also isolating all variable so it would be eligible for garbage collecting, here is what the code look like:
    // Create this in every object you use
    public function destroy():void
         // Remove event listeners
         // Remove anything in the display list
         // Clear the references to other objects, so it gets totally isolated
    sorry it just a kind of pseudocode cause this function will customize with it's own property i did this just for the purpose of simplicity and easy understanding..,
    so now back to main problem how should i solve this problem??
    i tried used an arraf to save all the loaded swf
         the array is just used to save the what the loader is loading but the adding to display method is using
    movieClipActAsContainer.addChild(e.target.content); //the event is from the Event.COMPLETE
    but i have a hard time using that arrya back and matching it to the one i got from the display list.
    please do help me,
    any suggestion would be greatly appreciated,
    and if can pleas show me a source code or pseudocode of what you're suggesting to me cause my english is not so fluent yet,
    thanks before.

    Hey EI,
    I had done this kind of project recently and for loading and unloading different swfs. I had used loaders specific to that filename and for removing I had used a single movieclip instance name and on clicking that specific loader request name that needs to be removed will be requested from the specific function. As mentioned below
    Loading SWF:
    ===============================
    swfLoaderIndia.load(swfRequestIndia);//This will load the request
    If you are inside a movieclip while requesting use below code
    MovieClip(this.root).addChild(swfLoaderIndia);//This will load swf on stage
    or else
    Stage.addChild(swfLoaderIndia);
    Unloading SWF
    =====================================
    If you are inside a movieclip while requesting use below code
    MovieClip(this.root).removeChild(swfLoaderIndia);//This will unload swf on stage
    or else
    Stage.removeChild(swfLoaderIndia);
    Above code will be in specific function which will be requested when the loading and unloading is required.
    I hope this helps you in your project.
    With Regards,
    Sagar S. Ranpise

  • How to cut and paste multiple items

    How can you cut and paste multiple items on the clipboard?

    Just go to Security & Privacy, unlock it with your admin password...
    ...and under the "General" tab allow applications... tick "Anywhere". After the install, I'd change it back. You can also just control-click the app/installer and select "Open" - you'll get a warning that the app is from an unidentified developer, but it will open.
    Good luck,
    Clinton

  • How to download and keep multiple maps using Mac/E...

    I use my mac and this site
    http://nokiamaps.site666.info/
    to download maps via my mac to my E71. It works fine. I can install any map, however, only one map at a time.
    I would be happy if anyone knows and could tell me how to download and keep several maps active using my mac and E71. For example, I would like to have US, Japan and some countries in Europe loaded to my E71.
    I can of course keep several maps on my mac but I want to have them loaded to the E71.
    Can I have several maps loaded in the E7? Where to put the maps (which directory)?

    I do not know if anyone is interested but I have figured out one way to do it. Not the nicest perhaps but it works.
    On my mac I create a directory named MyMaps and then I download the maps I want and put them into directories (one directory per map). I copy using the -r flag, which merges/adds on files.
    For example if MyMaps is empty and I use:
    cp -r Sweden/* MyMaps/
    I will get the Swedish map in MyMaps.
    To add the map of Netherlands I simply do:
    cp -r Netherlands* MyMaps/
    I have now merged the map of Netherlands with the map of Sweden and all maps are in MyMaps. And I can add more maps by running cp -r again. And when I am done, I transfer the directory structure in MyMaps to my E71.
    I had some troubles with the diskcache structure. It worked fine for me to remove everything (all files) in the diskcache. They will be created when I move MyMaps.

  • How to remove and reinstall PSE 10?

    I am unable to edit PSE 10 to completion.  The editing works fine until I try to close it.   It doesn't finish and I get an error message "failed to import" (to Organizer) with a bar chart showing 95% completion.  In effect, I can't edit.  One other oddity that surfaced and may(?) be related is that when I try to open PSE, it opens the Editor.  I can then open the Organizer from the Editor, but that's not the way things should work.   I've had wonderful Adobe community help, but the problem persists.  I'm well past my knowlege, and I suspect (but am not certain) I need to remove and replace my current PSE 10.  I do not have a disc as I downloaded the original.  How do I proceed?  Thanks in advance ... Phillip Young.  

    Hi Phillip,
    Please download Photoshop Elements 10 from the below mentioned link
    http://prodesigntools.com/photoshop-elements-10-direct-download-links- pse-premiere-pre.html
    Please ensure to follow the (Very Important Instructions) carefully.
    Regards,
    Abhijit

  • How to remove and assign the subclsss in Migration.

    Hi All,
    I am migrating the form 6i appliaction form 6i to 10g with database as 9i.
    I am trying to migrate the form 6i files to 10g.
    I have get the referenced emb file (subclass file) from the database and made the Object library from this file. I have put the olb file in the registery path of the forms.After this I have open the form in the migration tool and migrate the form. I have done the changes according to the LOG file. But when I am opening the form it is not getting the subclass files so that it is asking the database connection.
    Can any body please advice me how to remove the subclss information at the time of migration from database to file so that after migration it will take the subclss refrence from the olb file.
    Can any body just advice how to migrate the forms 6i to 10g in steps OR any document, URL (Specially removing the referencce and taking the new reference from OLB)
    Thanks in advance.
    SUN
    Edited by: User SUN@ on May 13, 2010 4:31 PM

    Hi,
    Not eactly the same but there was a set of Forms that reference another Form for subclasses rather than the OLB. I've managed to sort that out using JDAPI and here is a sample bit of code. Basically , going through property classes and removing then and then adding the property classes object group from the OLB. It seemed to do the trick didn't upset the properties of the items using the class. It may be of help to you.
    There was no migration in this : just a fix on a Forms 10g module. I'd yes you could do the same, migrate to 10g and then use JDAPI to fix the form.
    HTH
    Steve
          for (JdapiIterator mods = Jdapi.getModules(); mods.hasNext(); ) {
             FormModule mod = (FormModule)(JdapiModule)mods.next();
             u.logger.info(mod.getAbsolutePath() + " " + mod.getTitle());
             for (JdapiIterator classes = mod.getPropertyClasses(); classes.hasNext(); ) {
                PropertyClass cls = (PropertyClass)classes.next();
                classes.remove();
             ObjectLibrary objLib = ObjectLibrary.open(p.getProperty(systemName + "pll.directory")+"/myapp.olb");
             for (JdapiIterator oTabs = objLib.getObjectLibraryTabs(); oTabs.hasNext(); ) {
                ObjectLibraryTab oTab = (ObjectLibraryTab)oTabs.next();
                if (oTab.getLabel().equals("Object Groups (Sub-Class these)")) {
                   for (JdapiIterator tabObj = oTab.getTabObjects(); tabObj.hasNext(); ) {
                      ObjectGroup objGrp = (ObjectGroup)tabObj.next();
                      if (objGrp.getName().equals("APP_PROPERTY_CLASSES")) {
                         ObjectGroup newObj = new ObjectGroup(mod, "APP_PROPERTY_CLASSES", objGrp);
                         u.logger.info(mod.getName() + " APP.OLB added in");
             objLib.destroy();

  • How to REMOVE AND DELETE saved customizations applied to different accounts

    Hi Experts
    I have created and saved a customization called *'Hidden Graph'* through the front end (under page options)
    I saved this customization against different application roles (BI Consumer / BI Author)
    Now I No longer need to apply customiaztiion *'Hidden Graph'*
    Can someone tell me where these customizations are saved so I can REMOVE AND DELETE it ?
    Thanks
    Hiten

    To find the location and deleting from catalog, try to use catalog manager and use search xml for text 'Hidden Graph'
    You can find them in sub folders of _selections folder in catalog
    ex:
    \users\weblogic\_selections
    Just in case if you want to delete then you can do finding files like
    Hidden+Graph
    Hidden+Graph.atr
    Nowhere mentioned deleting other than clearing check this doc once
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10544/dashboards.htm#sthref357
    If helps pls mark
    Edited by: Veeravalli on Nov 30, 2012 10:09 AM

Maybe you are looking for

  • Why I can't use javac? and why my program doesn't pop up cmd window?

    I have 2 questions here: 1) I try to compile my HelloWorld.java using command prompt, javac HelloWorld.java But it won't work; by right it should create a HelloWorld.class. When I go to Configure/Options/JDK Profile, it is already showing JDK version

  • Can't import some video's

    Ik can't import all video's in my itunes library. I can import some of them. Can somsone tell me what kind of format, numer of bits, and so on what the video should have to import it? Greetz

  • HTTP/1.0 500 error

    Hi, Scenario : Slap and Ship Outbound scenario using SAP AII 5.1 Issue: Currently I am setting Up RFC Connections for the Auto-ID Test Tool. When I test the NOTIFY_TAGS_OUT RFC Destination, I am getting the below error HTTP/1.0 500 SRT: Unexpected fa

  • XY position help

    Hi everyone, I am working on a xy stage movement vi based of the XY Grid Inspector template. I am having problems doing a couple of things, I posted the code below, it is stripped of the motor vis it just plots the path of a 'virtual stage'.  Here ar

  • Downloading Messenger for Mac

    This message may not belong in this forum...but I have been trying to download Messenger for Mac from the Apple website for months and it always sends me to an error page. Has anyone successfully downloaded this?