How remove (or change) children inside a JTree

hi,
I did a program where there are informations with a structure of dependence that should be showed inside JTree components.
I realized this purpose in my program .
But I am findind very difficult (after having put the information inside the JTre in the start) to show them again inside the JTrees when they are changed.
I don't know how to remove or change the informations after they are put on the children of the JTree using the methods that I found in the documentation to reach this purpose...
I need some help ...
To explain well my problem, and facilitate the helpers, I post some code that show my problem..
The program show a GUI with some JTrees.
The informations are contained in two strings, and in the GUI are also two buttons that can load the informations inside the JTree when they are clicked.
Thank you in advance
regards
tonyMrsangelo
public class JTree_TryToUseIt_ChangingNodes extends javax.swing.JFrame {
    private PanelFulViewConteiner jPanelFulViewConteiner;
    Dimension dimPrefArcPanels = new Dimension(910, 150);
    Dimension dimMinArcPanels = new Dimension(700, 100);
    Dimension dimPrefSemiArcPanels = new Dimension(850, 140);
    Dimension dimMinSemiArcPanels = new Dimension(550, 90);
    Dimension dimPrefBodyXpicPanels = new Dimension(900, 150);
    Dimension dimMinBodyXpicPanels = new Dimension(700, 150);
    Dimension treePrefDim = new Dimension(90, 110); //
    Dimension treeMinDim = new Dimension(60, 110);
    PanelToShowTrees panel_trees;
    public JTree_TryToUseIt_ChangingNodes() {
        getContentPane().setLayout(new GridBagLayout());
        GridBagConstraints gBC = new GridBagConstraints();
        jPanelFulViewConteiner = new PanelFulViewConteiner();
        gBC.gridx = 0;
        gBC.gridy = 0;
        gBC.gridwidth = 10;
        add(jPanelFulViewConteiner, new GridBagConstraints());
        gBC.gridx = 0;
        gBC.gridy = 1;
        gBC.gridwidth = 10;
        pack();
        panel_trees = this.jPanelFulViewConteiner.jPanelFulContainerTop.panelToShowTrees;
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setLocation(50, 50);
        setVisible(true);
    private void fillTrees(String[] strings) {
        collapseTrees();
        removeNodes();
        for (int index = 0; index < strings.length; index++) {
            DefaultMutableTreeNode dmt = new DefaultMutableTreeNode(strings[index]);
            String knotStr = strings[index].substring(0, 1);
            int knot = -1;
            try {
                knot = Integer.parseInt(knotStr);
            } catch (NumberFormatException e) {
            panel_trees.root_Node[knot].add(dmt);
            panel_trees.validate();
            panel_trees.repaint();
        collapseTrees();
    void collapseTrees() {
        for (int i = 0; i < 8; i++) {
            panel_trees.jTree.collapseRow(0);
panel_trees.jTree[i].expandRow(0);
panel_trees.validate();
panel_trees.repaint();
void removeNodes() {
for (int i = 0; i < 8; i++) {
panel_trees.jTree[i].removeAll();
panel_trees.validate();
panel_trees.repaint();
public static void main(String args[]) {
JTree_TryToUseIt_ChangingNodes xx = new JTree_TryToUseIt_ChangingNodes();
class PanelFulViewConteiner extends JPanel {
PanelFulContainerTop jPanelFulContainerTop;
PanelFulContainerBottom jPanelFulContainerBottom;
public PanelFulViewConteiner() {
GridBagLayout gbl = new GridBagLayout();
this.setLayout(gbl);
GridBagConstraints gBC = new GridBagConstraints();
jPanelFulContainerTop = new PanelFulContainerTop();
gBC.gridx = 0;
gBC.gridy = 0;
add(jPanelFulContainerTop, gBC);
jPanelFulContainerBottom = new PanelFulContainerBottom();
gBC.gridx = 0;
gBC.gridy = 2;
add(jPanelFulContainerBottom, gBC);
class PanelFulContainerTop extends JPanel {
PanelToShowTrees panelToShowTrees;
public PanelFulContainerTop() { // costruttore
this.setMinimumSize(dimMinArcPanels);
this.setPreferredSize(dimPrefArcPanels);
setLayout(new FlowLayout());
panelToShowTrees = new PanelToShowTrees();
add(panelToShowTrees);
}// costruttore
class PanelFulContainerBottom extends JPanel {
JButton but1 = new JButton("load string1");
JButton but2 = new JButton("load string2");
String[] str1 = {"0-AAA", "0-BBBBBB", "2-CCCCC", "2-DDDDDD", "2-EEEEEEE", "5-FFFFFF", "5-GGGGGG", "5-HHHHHH", "7-IIIIII", "7-KKKKKKK", "7-LLLLLL", "7-MMMMMM"};
String[] str2 = {"0-aaaaa", "0-bbbbb", "0-cccc", "2-ddddd", "2-eeee", "3-ffffff", "3-gggggg", "3-hhhhh", "4-iiiiii", "4-kkkkk", "7-lllllll", "7-mmmmm", "7-nnnnn"};
public PanelFulContainerBottom() {// costruttore
this.setMinimumSize(dimMinArcPanels);
this.setPreferredSize(dimPrefArcPanels);
add(but1);
but1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
fillTrees(str1);
add(but2);
but2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
fillTrees(str2);
class PanelToShowTrees extends JPanel {
JScrollPane jScrollPane[];
JTree jTree[];
DefaultMutableTreeNode[] root_Node;
public PanelToShowTrees() {
this.setMinimumSize(dimMinSemiArcPanels);
this.setPreferredSize(dimPrefSemiArcPanels);
setLayout(new FlowLayout());
jScrollPane = new JScrollPane[8];
jTree = new JTree[8];
root_Node = new DefaultMutableTreeNode[8];
for (int i = 0; i < 8; i++) {
root_Node[i] = new DefaultMutableTreeNode(" " + (8 - i));
jTree[i] = new JTree(root_Node[i]);
jScrollPane[i] = new JScrollPane();
jScrollPane[i].setViewportView(jTree[i]);
add(jScrollPane[i]);
jScrollPane[i].setPreferredSize(treePrefDim);
jScrollPane[i].setMinimumSize(treeMinDim);
jTree[i].addTreeSelectionListener(new TreeSelectionListener() {
public void valueChanged(TreeSelectionEvent e) {
showContentOfTheTree(e);
private void showContentOfTheTree(TreeSelectionEvent e) {
String stringaGotFromEvent = e.getPath().toString();
JOptionPane.showMessageDialog(rootPane, "found =---> " + stringaGotFromEvent);

hi Andre,
thank you for answering me.
I have not much practice with JTrees so I find some difficulty to use it...
After I got your advice, I made changed a little the design of my program..
This it is a program for management of a dentist office, and I would show in 8 JTrees (every jTree root represents the teeth in a dental arch) the treatments that each tooth got.
How I said, the 8 JTree roots are representing the teeth, and in this architecture the problem is:
- to add a node to a tree root to indicate a treatment for that tooth;
- to delete all the children from a jTree root before beginning to add new child, before writing again treatments, when the informations are changed.
Following your help, I made this two functions to reach this purpose:
private void assingTreatmentToTooth(int toothNmbr, String strTreatment) {
        DefaultMutableTreeNode newChild = new DefaultMutableTreeNode(strTreatment); // new treatment to add
        DefaultTreeModel model = (DefaultTreeModel) panel_trees.jTreeXdentalRoots[toothNmbr].getModel(); // get model for the root Tree
        DefaultMutableTreeNode parentNode = (DefaultMutableTreeNode) model.getRoot();
        model.insertNodeInto(newChild, parentNode, 0); // always assign 0 as first node
    } // assingTreatmentToTooth()
private void removeTreatmentFromAtooth(int toothNmbr, int childNmbr) {
        DefaultTreeModel model = (DefaultTreeModel) panel_trees.jTreeXdentalRoots[toothNmbr].getModel();  // get model for the root Tree
        DefaultMutableTreeNode child = (DefaultMutableTreeNode) model.getChild(model, childNmbr);
        model.removeNodeFromParent(child);
    } // removeTreatmentToTooth()when the second function is executed, I get this error:
Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: javax.swing.tree.DefaultTreeModel cannot be cast to javax.swing.tree.TreeNode
at the line : DefaultMutableTreeNode child = (DefaultMutableTreeNode) model.getChild(model, childNmbr);
DefaultMutableTreeNode child = (DefaultMutableTreeNode) model.getChild(model, childNmbr);
could you tell me what is wrong ?
regards
TonyMrsangelo

Similar Messages

  • How do I change font inside the Form's text fields

    I went through tutorials on lynda.com and succesfuly layed out my form.
    However I can not figure out how to make a change from a default Times Roman in the forms fields to a different typeface.
    I assigned object styles, followed by paragraph styles but nothing happens. I also can not change font color inside the text fields.
    Anyone knows how to change these attributes?

    There are literally hundreds and thousands of improvements or changes that could be made to InDesign.
    Your comments here won't get to the product manager who decides which of those to implement in the next version. This is a forum of users like you, but if you post at the link below and make a good case, you'll have a better chance of getting what you want:
    Adobe - Feature Request/Bug Report Form

  • When I plug my ipod in I am able to add song to it but the tab that says "on this ipod" no longer shows up so I cannot remove things from my ipod or anything like that. How do I change this weird setting?

    When I plug my ipod in I am able to add song to it but the tab that says "on this ipod" no longer shows up so I cannot remove things from my ipod or anything like that. How do I change this weird setting? On other computers this shows up fine so it is clearly a problem with itunes and not my ipod.

  • How to remove all changes made to an image in Camera Raw -

    In CS4 with latest ver. of Camera Raw, I think there is a way to remove all changes previously made to an image while using Camera Raw.
    In other words after doing this the little icon in the upper right hand corner of an image in Bridge that indicates changes have been applied to an image, should be gone. Another way of asking this would be to say, how can I start all over again with the original image in Camera Raw by removing all changes prefiously made to it in Camera Raw?
    TIA

    Sorry, I don't know the answer to that for sure*.  As a certified old geezer who avoids cluttering his mind with stuff that can easily be looked up in a menu, I stay away from keyboard shortcuts as much as I can, using only those applicable system wide, the most obvious ones in Photoshop like deselect, etc.
    * However, since no such shortcut appears next to the menu command, I doubt there is one.
    You could create an action and assign it a key command, though.  Doh!
    Never mind.  That was a total brain short circuit.  You can't create actions in Bridge.  You'll need a script.  Ask in the Bridge Scripting forum.
    Message was edited by: Ramón G Castañeda

  • How to remove or change layers in Dreamweaver CS5 made in 2004

    Can somebody please explain to me how we can change the layers and remove the pictures from a website that was made with Dreamweaver 2004.
    Now we have CS5 and we don't know where we can find the tools to do this. I cannot find the layer ID.
    Please help!

    We had an old version of Dreamweaver (DW-MX) in which I have found the layer. It apears to be an image made in Photoshop.
    The way I solved the problem now is that I deleted the layer in DW-MX and made a new background image. I am no pro, just an amateur
    Anyway, thank you very much for your fast reply and the offer to help me out this problem.

  • How do I hange my new tab from being yahoo searh to google search? I have this changed in IE 8 and works fine. I have removed Yahoo as a search engine in firefox but a new tab is still yahoo. How do I change this?

    How do I change my new tab from being yahoo search to google search? I have this changed in IE 8 and works fine. I have removed Yahoo as a search engine in firefox but a new tab is still yahoo. How do I change this using firefox 8

    Open Firefox -> Go to View -> Toolbars -> Chechmark on "Navigation Toolbar"
    this will bring back your address bar (where you type links to go to websites :P )

  • How do you remove or change red border in Livecycle required

    How do you remove or change red border in Livecycle required field?
    When I make a field required, it makes the pdf show a thick ugly red border. How can I change that?

    Now you see me, now you don’t.
    Interactive forms highlight where you should enter data. To turn this highlighting on, click the Highlight Existing Fields button.
    The fillable fields within the form (see example below) are highlighted in a light blue color. This lets you enter information into these fields. By default, Adobe® Reader® displays a red border around required fields:
    Pretty dang ugly, huh?
    Fortunately, it can be turned off.  This script (placed on a form:ready event) will do the trick:
        if (xfa.host.name == "Acrobat")
    app.runtimeHighlight = false;
    Here’s how we achieve this:
    Part 1:
    In the Object palette, click the Value tab. Under Type, choose User Entered – Required.
    First, we need to define which fields are mandantory/required. Click within the desired field to select it.
    You can assign as many mandatory fields as the form requires. When you are finished doing this, enter the Script Editor.
              Note:   To show or hide the Script Editor window as you need it, click the toggle.
    Select the form:ready event. Be sure JavaScript is the chosen scripting language to run on the Client.
    Type the following script into the window:
        if (xfa.host.name == "Acrobat")
           app.runtimeHighlight = false;
    Save your work.
    Part 2:
    From the File menu, choose Form Properties.
    Click the Form Validation tab.
                   Click Color Failed Fields.
                   Check the box next to Color fields and fail their validations.
    To turn borders off, click the arrow next to Border Color, then click the box.
    To define a background color, click the arrow next to Background Color, the choose More Colors.
    Select the first available empty box, then click Define Custom Colors.
    Define a custom color per your visual identity guidelines.
    When you are finished, click on Add to Custom Colors, then click OK.
    Click OK on the Form Properties window.
    Save your work.
    The result? When the user tries to submit a form without first entering data into the required fields, an alert message is displayed.
    When the user clicks OK to clear the error message, form submission is cancelled.
    Failed fields are highlighted in an attractive way—without red borders.

  • How can i change the particular node color in Jtree?

    I have constructed the tree.i dont know how to set the color for the particular node then how can i change the particular node icon depends on some conditions like if we will give the input whether it is available in jtree that node icon only changed.Anyone please help me as soon as possible.

    hi,
    i saw that tutorial.from that book i dont get the particular node cell renderer.i got a cell renderer for tree only.i attached my code in this mail.pls see and help me if u will do
    mport pack.Prop;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.Font;
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.util.Properties;
    import java.util.Set;
    import java.util.StringTokenizer;
    import java.util.Vector;
    import javax.swing.Icon;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JScrollPane;
    import javax.swing.JTree;
    import javax.swing.UIManager;
    import javax.swing.text.Position;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.DefaultTreeCellRenderer;
    import javax.swing.tree.DefaultTreeModel;
    import javax.swing.tree.MutableTreeNode;
    import javax.swing.tree.TreeCellRenderer;
    import javax.swing.tree.TreePath;
    public class ReadProperty3 extends JFrame{
    String str,key;
    static JTree tree;
    static Vector v;
    StringTokenizer st;
    static DefaultMutableTreeNode root;
    DefaultMutableTreeNode t;     
    public Object[] o;
    public static void main(String[] args) throws IOException {
    ReadProperty3 r = new ReadProperty3();
    Prop p=new Prop();
    JFrame f=new JFrame();
    p.show();
    Object[] o=v.toArray();
    int startRow = 0;
    String prefix =p.s;
    TreePath path = tree.getNextMatch(prefix, startRow, Position.Bias.Forward);
    //if(prefix.equals(root.getChildAt(0).toString()))
    if(prefix.equals("2000"))
         System.out.println("Node 2000 found");
         else if(prefix.equals("3000"))
              System.out.println("Node 3000 found");
         else if(prefix.equals("4000"))
              System.out.println("Node 4000 found");
         else
              System.out.println("Node not found");
         for(int i=0;i<v.size();i++)
              //((DefaultTreeModel)tree.getModel()).reload();
              DefaultTreeCellRenderer ren=(DefaultTreeCellRenderer)tree.getCellRenderer();
              Icon openIcon = new ImageIcon("C:/apache-tomcat-5.5.12/webapps/jsp-examples/images/execute.gif");
              Icon closedIcon = new ImageIcon("C:/apache-tomcat-5.5.12/webapps/jsp-examples/images/execute.gif");
              Icon leafIcon = new ImageIcon("C:/apache-tomcat-5.5.12/webapps/jsp-examples/images/read.gif");
              if(o[0].equals(p.s))
                   ren.setBackgroundSelectionColor(Color.MAGENTA);
                   ren.setBackgroundNonSelectionColor(Color.YELLOW);
                   //ren.setTextSelectionColor(Color.YELLOW);
                   //ren.setTextNonSelectionColor(Color.BLUE);
                   ren.setClosedIcon(closedIcon);
                   ren.setFont(new Font("Impact",Font.ITALIC,14));
              else if(o[1].equals(p.s))
                   ren.setLeafIcon(leafIcon);
                   ren.setFont(new Font("Impact",Font.ITALIC,10));
                   UIManager.put("Tree.leafIcon", leafIcon);
              else if(o[2].equals(p.s))
                   ren.setOpenIcon(openIcon);
                   ren.setFont(new Font("Dialog",Font.BOLD,9));
    public ReadProperty3(){
         super("JTree With Properties");
         try{
    int c = 0;
    while(c == 0){
    c = 1;
    BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
    System.out.print("Enter file name which has properties extension :");
    str = bf.readLine();
    File f = new File(str + ".properties");
    if(f.exists()){
    Properties pro = new Properties();
    FileInputStream in = new FileInputStream(f);
    pro.load(in);
    System.out.println("Key: " + pro.keySet());
    System.out.print("Enter Key : ");
    key = bf.readLine();
    String p = pro.getProperty(key);
    st = new StringTokenizer(p,"=,");
    root=new DefaultMutableTreeNode(key);
    v=new Vector();
    while(st.hasMoreTokens())
         String val=st.nextToken();
         v.add(val);
         o=v.toArray();
         System.out.println(val);
         t=new DefaultMutableTreeNode(val);
         root.add(t);
         tree=new JTree(root);
         tree.setEditable(true);
         JScrollPane jp=new JScrollPane(tree);
         // tree.setCellRenderer(new CellRenderer());
         Container content=getContentPane();
         content.add(jp,BorderLayout.CENTER);
    setSize(250,275);
    setVisible(true);
    addWindowListener(new ExitListener());
    else{
    c = 0;
    System.out.println("File not found!");
    catch(IOException e){
    System.out.println(e.getMessage());
    }

  • How do I create a duplicate image inside the same page? Then how do I change the color of that image

    how do I create a duplicate image inside the same page? Then how do I change the color of that image from black to red?

    Hello there!
    Here is one way to create a duplicate image and colorize it. As you can see below, I have one image right now, that I want to duplicate.
    My layers panel looks like below.
    To duplicate your image, click the downward arrow on the right side of your Layer Panel.
    Select Duplicate Layer. This will duplicate the layer that the image is on.
    Select "OK" to approve the duplication.
    As you can now see in the Layers panel, the image is duplicated. The new layer is now at the top of the Layer panel.
    Now to colorize your image, go to Window > Adjustments.
    The Adjustments panel will now be opened. Select the Hue and Saturation icon as seen circled in red.
    The Hue and Saturation propertied panel will be opened. I selected "Colorize", and adjusted the hue and saturation bar to achieve the level red in my photo.
    As you can see below, the image is now red.
    Now i want to make sure only ONE of my image layers is red. I moved the Hue and Saturation layer to only be on top of the bottom layer. The image on the top layer now will not be affected by the red.
    Select the move tool, so I can now move the image layers so we can see both of them.
    With each image layer selected, you can take the move tool and move the images. I moved mine on top of eachother and you can see my red layer (bottom) and the non red layer (top).
    I hope that helps. i have also included helpful links.
    Please post back with any questions,
    Janelle

  • How do I change the style of a subset of rows inside a Datagrid?

    How do I change the style of a subset of rows inside a
    Datagrid? I have tried dgExample.selectedItem.fontWeight="bold" but
    that does not work. What should I do?
    Please help.

    I see where you mean but I'm not familiar with the 'language'
    of CSS. Currently, the background of the body (or probably the div
    container) is set to none on this page. So visually, I have a white
    background with black letters. I want to place a gradient image in
    this container instead of the 'none'. The coding with "none isn't
    even the CSS code because I vaguely remember deleted it because I
    thought I would never need it. So can you tell the CSS code I need
    to place this image in the #container (I think that's where it
    should go) and where? Thanks. I've included the little piece of
    code where I think it should go in somewhere. Thanks for the help.
    <link href="../CSS/twoColFixLtHdr.css" rel="stylesheet"
    type="text/css" /><!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for IE 5* in this conditional
    comment */
    .twoColFixLtHdr #sidebar1 { width: 230px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional
    comment */
    .twoColFixLtHdr #sidebar1 { padding-top: 30px; }
    .twoColFixLtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout
    it needs to avoid several bugs */
    </style>
    <![endif]-->
    <style type="text/css">
    <!--
    -->
    </style>
    <link href="../css/global.css" rel="stylesheet"
    type="text/css" />
    <script src="../SpryAssets/SpryMenuBar.js"
    type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css"
    rel="stylesheet" type="text/css" />
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    </head>
    Lou
    quote:
    Originally posted by:
    Newsgroup User
    Redefine the CSS for ".twoColFixLTHDR #container" in the page
    itself,
    below the link to the external style sheet.
    JMS

  • How do you change the card language in iPhoto '11 card, cover in english inside in spanish?

    How do you change the card language in iPhoto '11 card, cover in english - inside in spanish?

    You can't.  You can change the  language of the entire card to Spanish but can't mix and match. To easily change the language without changing the system's language try using  Language Switcher  .
        OT

  • Hi I want to change my Apple ID email as I can no longer access my old email account. I try to change it to my new email but it says I'm already using it as my 'rescue email' so how do I remove or change my rescue email so that I can use it as my primary?

    Hi I want to change my Apple ID email as I can no longer access my old email account. I try to change it to my new email but it says I'm already using it as my 'rescue email' so how do I remove or change my rescue email so that I can use it as my primary email?

    Hey RachaelAnderson,
    Thanks for using Apple Support Communities.
    Looks like you want to change the email address you are using as your resuce email address. This article shows you how to change the addresses.
    Manage your Apple ID primary, rescue, alternate, and notification email addresses
    http://support.apple.com/kb/HT5620
    Have a nice day,
    Mario

  • HT6170 i forgot answers to my security question how do i remove or change these Q?

    i forgot answers to my security question how do i remove or change these Q?

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • How do i remove or change my primary apple id set on my imac

    How do i remove or change my primary apple id set on my imac.  My primary iCloud set on my imac shows the apple id i not longer use.

    Hey sqboulevard,
    If you want to change the Apple ID signed in to iCloud on your iMac, you would do so in System Preference:
    Mac Basics: Set your preferences
    http://support.apple.com/kb/HT2490
    Sincerely,
    Delgadoh

  • How to remove or change the color of hair in a beard? [was:does anyone know]

    how to remove or change the color of hair in a beard

    There are many ways to do that and there are many free tutorials on the web for doing that in Photoshop.

Maybe you are looking for

  • Transaction FKKORDM started taking long to complete the execution.

    Transaction FKKORDM started taking long to complete the execution. I faced the this issue before so i re-generated the interval then this issue got resolved.  Now i am again start facing same issue and it is not being resolved by re-generating the in

  • Cannot open pdf files from websites with Adobe Acrobat X

    Since purchasing and having my IT technician install Adobe Acrobat X, I can no longer open pdf documents that are hosted on websites.  We have many pdf documents on our business network and MS SharePoint sites.  Since the upgrade these will not open

  • Java initialization error on a vps, centos 5

    ok, i recently tried to install the newest jdk since my vps provider gave me 1.4.2. i did a rm /var/lib/alternatives/java through the counsel of another forum, but that did nothing. right now, when i try to java --version, this is what shows up.  is

  • Can not read authorization object in execute Query

    hello:    Now I create a authorization object ZSALR, include Activity,Sales Group,Sales Office.                     Activity = Display ,Execute; When Sales Group = S_N and Sale Office = S_SX. I execute Query restrict by Sales Group and Sale Office. W

  • Using AcfUpDownload in FPM Application  of WD4A?

    I have a Webdynpro ABAP  appliction running on FPM . I have a requirement to download the mulitiple pdf documents  to the client's pc/laptop location like  C:     emp  silently  . For this requirement I gone through Thomas Jung tutorial using cahce s