TreeCellRendere updating icons

I have a TreeCellRederer which changes the icons of JTREE when openen/closing items (linked to start/stop applications)
When an item (application) is open and i switch to another item, the icon does not change (correct because app is still running). When i select an item and close the application, the icon is changed correctly (from closed to open and vise versa).
When an item (app3) is open and i switch to another application (app2) and then close the app2, my cursus jumps to item 0 (top level) and the icon of the app2 is closed. Then i close app3 (without selecting it first). Now it is goes wrong, the icon is not changed. This is because the line is not rendered.
I can force closing of the item by jumping to the last item in the list and then to the first item in the list "removeFromActiveApplicationList(String application)" method, but this is a bit of overkill.
The problem is that the item-row is not rendered when application is closed without the item be-ing active. Any idea how to solve this?
I will include all coding but icon-iconimages.
MenuApplication:
package myMenu;
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Toolkit;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.beans.PropertyVetoException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Collections;
import java.util.StringTokenizer;
import java.util.logging.Handler;
import java.util.logging.Logger;
import javax.swing.ImageIcon;
import javax.swing.JDesktopPane;
import javax.swing.JFrame;
import javax.swing.JInternalFrame;
import javax.swing.JPanel;
import javax.swing.JSplitPane;
import javax.swing.JTree;
import javax.swing.event.TreeSelectionEvent;
import javax.swing.event.TreeSelectionListener;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.DefaultTreeCellRenderer;
import testje.testApp;
import testje.testInternalFrame;
public class MenuTest extends JFrame implements TreeSelectionListener{
    // System Properties
    public static Logger myLogger = Logger.getLogger(MenuTest.class.getName());
    public Handler myHandler = null;
    private static String appName;
    // Variables
    public ArrayList activeApplicationList;
    private Object[] [] data;
    private ArrayList sflData;
    public String selectedApplication;
    // Swing objects and varialbles
    public JDesktopPane myDeskTop;
    private JPanel jContentPane = null;
    private JSplitPane jSplitPane = null;
    private JTree jTree = null;
    private javax.swing.JMenuBar jJMenuBar = null;
    private javax.swing.JMenu fileMenu = null;
    private javax.swing.JMenuItem exitMenuItem = null;
    private boolean packFrame = false;
    private PropertyChangeEvent currentEvent;
    // Applications
    private testApp myPanelTestje;
    private testInternalFrame myFrameTestje;
     * This is the default constructor
    public MenuTest() {
        super();
        initialize();
        setAppName("Test Menu");
     * Launches this application
    public static void main(String[] args) {
         MenuTest myMenu = new MenuTest();
         myMenu.setVisible(true);
     * This method initializes this
     * @return void
    private void initialize() {
        setContentPane(getJContentPane());
        setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
        setJMenuBar(getJJMenuBar());
        setSize(800, 600);
        setTitle("MyMenu");
        setVisible(true);
        //Validate frames that have preset sizes
        //Pack frames that have useful preferred size info, e.g. from their layout
        if (packFrame) {
          this.pack();
        else {
          this.validate();
        //Center the window
        Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
        Dimension frameSize = this.getSize();
        if (frameSize.height > screenSize.height) {
          frameSize.height = screenSize.height;
        if (frameSize.width > screenSize.width) {
          frameSize.width = screenSize.width;
        setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
     * This method initializes jJMenuBar   
     * @return javax.swing.JMenuBar
    private javax.swing.JMenuBar getJJMenuBar() {
        if (jJMenuBar == null) {
            jJMenuBar = new javax.swing.JMenuBar();
            jJMenuBar.add(getFileMenu());
        return jJMenuBar;
     * This method initializes jMenu   
     * @return javax.swing.JMenu   
    private javax.swing.JMenu getFileMenu() {
        if (fileMenu == null) {
            fileMenu = new javax.swing.JMenu();
            fileMenu.setText("File");
            fileMenu.add(getExitMenuItem());
        return fileMenu;
     * This method initializes jMenuItem   
     * @return javax.swing.JMenuItem   
    private javax.swing.JMenuItem getExitMenuItem() {
        if (exitMenuItem == null) {
            exitMenuItem = new javax.swing.JMenuItem();
            exitMenuItem.setText("Exit");
            exitMenuItem.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent e) {   
                    System.exit(0);
        return exitMenuItem;
     * This method initializes jContentPane
     * @return javax.swing.JPanel  
    private JPanel getJContentPane() {
        if (jContentPane == null) {
            jContentPane = new JPanel();
            jContentPane.setLayout(new BorderLayout());
            jContentPane.add(getJSplitPane(), java.awt.BorderLayout.CENTER);
        return jContentPane;
     * This method initializes jSplitPane  
     * @return javax.swing.JSplitPane  
    private JSplitPane getJSplitPane() {
        if (jSplitPane == null) {
            jSplitPane = new JSplitPane();
            jSplitPane.setLeftComponent(getJTree());
            myDeskTop = new JDesktopPane();
            jSplitPane.setRightComponent(myDeskTop);
            jSplitPane.setDividerLocation(150);
        return jSplitPane;
    private JTree getJTree() {
        if (jTree == null) {
            // Create Root
            DefaultMutableTreeNode root = new DefaultMutableTreeNode("Conti7");
            setActiveApplicationList(new ArrayList());
            // Create ApplicationsList
            // Get Applicationlist
            getApplicationList();
            // Process MenuArray to create Menu
            String previousFolder = "";
            DefaultMutableTreeNode newNode = new DefaultMutableTreeNode();
            for (int i = 0; i < sflData.size(); i++){
                myLogger.fine(
                        "Dataline "+i +" =" + data[0] + " | "
+ data[i][1] + " | "
+ data[i][2] + " | "
+ data[i][3] + " | "
+ data[i][4] + " | "
+ data[i][5]);
if (!(((String)data[i][2]).equals(previousFolder))) {
if (!(previousFolder.equals(""))){
root.add(newNode);
previousFolder = (String)data[i][2];
newNode = new DefaultMutableTreeNode(previousFolder);
newNode.add(new DefaultMutableTreeNode(data[i][3]));
if (!previousFolder.equals("")){
root.add(newNode);
// Add Full menu to tree
jTree = new JTree(root);
jTree.setCellRenderer(new TreeExRenderer());
jTree.addTreeSelectionListener(this);
return jTree;
public void valueChanged(TreeSelectionEvent event) {
String selectedApplication = jTree.getLastSelectedPathComponent().toString();
myLogger.info(
"Current Item Selection = " + selectedApplication);
setSelectedApplication(selectedApplication);
activateApplication(selectedApplication);
private void activateApplication(String selectedApplication) {
if (getSelectedApplication().equals("PanelTestje")){
if (myPanelTestje==null){
myPanelTestje = new testje.testApp();
addInternalFrame(myPanelTestje);
activateInternalFrame(myPanelTestje);
if (getSelectedApplication().equals("FrameTestje")){
if (myFrameTestje==null){
myFrameTestje = new testje.testInternalFrame();
addInternalFrame(myFrameTestje);
activateInternalFrame(myFrameTestje);
public void addInternalFrame(JInternalFrame myFrame) {
myDeskTop.add(myFrame);
myFrame.pack();
myFrame.setClosable(true);
try {
myFrame.setMaximum(true);
} catch (PropertyVetoException e){}
myFrame.addPropertyChangeListener(new PropertyChangeHandler());
activeApplicationList.add(getSelectedApplication());
Collections.sort(activeApplicationList);
public void activateInternalFrame(JInternalFrame myFrame) {
myFrame.setVisible(true);
myFrame.toFront();
class PropertyChangeHandler implements PropertyChangeListener {
public void propertyChange(PropertyChangeEvent e) {
if (((String)e.getPropertyName()).equals("closed")){
setCurrentEvent(e);
deActivateApplication(e);
private void deActivateApplication(PropertyChangeEvent currentEvent){
if ((getCurrentEvent().getSource() instanceof testje.testApp)){
myPanelTestje = null;
removeFromActiveApplicationList("PanelTestje");
if ((getCurrentEvent().getSource() instanceof testje.testInternalFrame)){
myFrameTestje = null;
removeFromActiveApplicationList("FrameTestje");
* Deze methode wordt gebruikt om de applicatienaam op
* te vragen.
* <p>
* @return appName : appName Objectvalue.
public static String getAppName() {
return appName;
* Deze methode wordt gebruikt om de applicatie af te sluiten
* nadat eerst connectieObject wordt afgesloten.
* <p>
public static void exitApplication() {
myLogger.info("End application.");
System.exit(0);
private static void setAppName(String appName)
MenuTest.appName = appName;
public class TreeExRenderer extends DefaultTreeCellRenderer {
public Component getTreeCellRendererComponent(JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) {
super.getTreeCellRendererComponent(tree, value, sel, expanded, leaf,
row, hasFocus);
String nodeName = value.toString();
ImageIcon main_leaf = createImageIcon("/images/jTreeRoot.gif");
ImageIcon main_open = createImageIcon("/images/jTreeRoot.gif");
ImageIcon main_close = createImageIcon("/images/jTreeRoot.gif");
ImageIcon leafIcon = createImageIcon("/images/jTreeFolderClosed.gif");
ImageIcon leafOpen = createImageIcon("/images/jTreeFolderOpen.gif");
ImageIcon leafClosed = createImageIcon("/images/jTreeFolderClosed.gif");
ImageIcon leafSelected = createImageIcon("/images/jTreeItemSelected.gif");
ImageIcon leafActivated = createImageIcon("/images/jTreeItemSelected.gif");
if (row==0){
setIcon(main_leaf);
} else {
if(sel){
setIcon(leafSelected);
} else {
if (!expanded) {
if (isApplicationInActiveList(nodeName)){
setIcon(leafActivated);
} else {
setIcon(leafClosed);
}else{
setIcon(leafOpen);
return this;
public ImageIcon createImageIcon(String path) {
URL imgURL = MenuTest.class.getResource(path);
URL imgURL1 = MenuTest.class.getResource(path);
if ((imgURL != null)) {
return new ImageIcon(imgURL);
} else if ((imgURL == null)) {
return new ImageIcon(imgURL1);
} else {
System.out.println("Hello ");
System.err.println("Couldn't find file: " + path);
return null;
private ArrayList getActiveApplicationList()
return activeApplicationList;
private void setActiveApplicationList(ArrayList activeApplicationList)
this.activeApplicationList = activeApplicationList;
private boolean isApplicationInActiveList(String nodeName)
if (activeApplicationList.indexOf(nodeName)>-1) {
return true;
} else {
return false;
public void removeFromActiveApplicationList(String application)
activeApplicationList.remove(activeApplicationList.indexOf(application));
// jTree.setSelectionRow((jTree.getRowCount())-1);
jTree.setSelectionRow(0);
public String getSelectedApplication()
return selectedApplication;
private void setSelectedApplication(String selectedApplication)
this.selectedApplication = selectedApplication;
public PropertyChangeEvent getCurrentEvent()
return currentEvent;
private void setCurrentEvent(PropertyChangeEvent currentEvent)
this.currentEvent = currentEvent;
private void getApplicationList() {
sflData = new ArrayList();
// Get Applicationlist
sflData.add("PGO;50;General;App1;pack.myApp1;Application 1");
sflData.add("PGO;55;Operational;App2;pack.myApp2;Application 2");
sflData.add("PGO;60;Operational;App3;pack.myApp3;Application 3");
sflData.add("PGO;65;Expeditie;PanelTestje;testje.Paneltestje;Expeditie Paneltestje");
sflData.add("PGO;70;Desktop;App4;pack.myApp4;Application 4");
sflData.add("PGO;75;Manifest;FrameTestje;testje.FrameTestje;Maritiem FrameTestje");
sflData.add("PGO;80;Desktop;App5;pack.myApp5;Application 5");
// Convert applicationlist to MenuArray
data = new Object[sflData.size()][6];
for (int i = 0; i < sflData.size(); i++){
int count = 0;
String str;
str = (String)sflData.get(i);
StringTokenizer token = new StringTokenizer(str,";");
while (token.hasMoreTokens()){
data [i] [count] = token.nextToken();
count++;
*testapp1*package testje;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
* @author pgo
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
public class testApp
extends JInternalFrame {
     testPanel p;
Container c;
boolean packFrame = false;
     public testApp() {
          super("Swing-Toepassing PanelTestje");
          c = getContentPane();
c.setLayout(new BorderLayout());
          p = new testPanel();
          c.add(p);
//setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
setVisible(true);
//Validate frames that have preset sizes
//Pack frames that have useful preferred size info, e.g. from their layout
if (packFrame) {
this.pack();
else {
this.validate();
// addWindowListener(new WindowAdapter() {
// public void windowClosed(WindowEvent e) {
// System.exit(0);
     public static void main(String[] args) {
          // final JFrame f = new testApp();
// new testApp();
*testInternalFrame*/*
* Created on 19-apr-2007
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
package testje;
import javax.swing.*;
import java.awt.*;
* @author pgo
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
public class testInternalFrame extends JInternalFrame {
     public void testInternalFrame(){
          setBackground(Color.white);
          Container contentPane = getContentPane();
          setLocation(20,20);
          setTitle("Internal Frame");
          setClosable(true);
          setResizable(true);
          setMaximizable(true);
          setIconifiable(true);
          setVisible(true);
          contentPane.setLayout(new FlowLayout());
          contentPane.add(new JTextArea(5,15), "Center");
          pack();
*testPanel*/*
* Created on 19-apr-2007
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
package testje;
import javax.swing.*;
import java.awt.*;
* @author pgo
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
public class testPanel extends JPanel {
     public void testPanel(){
          setBackground(Color.blue);
     public void paintComponent (Graphics g){
          super.paintComponent(g);
          g.drawString("Groeten van Patrick", 0, 60);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

When you say "the JLabel changes" I'm guessing you mean that the JLabel variable named "imageLabel" was the thing that changed? That won't change the GUI's reference to the original JLabel object.
Which is what you have to change. You have a reference to that object in the form of the "imageLabel" variable; to change the object you call one of its methods, like maybe setIcon() or something... whatever your ImageManager class is doing to create the label in the first place.

Similar Messages

  • My iPad mini shows 10 updates in the App Store-on the updates icon, but when I click it-the screen is blank. Help!!

    My iPad mini shows 10 updates in the App Store-on the updates icon, but when I click it-the screen is blank. Help!!

    It's a long running glitch, as the hundreds of threads on this topic demonstrate.
    You  can wait it out and wait for Apple to fix the servers or you can go  into your purchased tab and manually download each update (you'll find  the app icons with little update banners on them.
    Alternatively,  if you sync with a computer, you can use the iTunes on your computer to  download the updates then sync them onto your device.

  • System update icon gone

    After updating app's I notices that the"system update icon" is gone, how do I get it back, I've tried restarting, but no app
    Solved!
    Go to Solution.

    The icon appears only when an app or system requires an update. If it's gone you are up to date.
    Check
    Settings/about device/software updates.

  • HT1766 Hello I am trying to update my viber, as i pressed update icon the message appeared "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or camcelled" what does it mean

    Hello I am trying to update my viber, as i pressed update icon the message appeared "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or camcelled" what does it mean?

    iTunes issue ,Apple are working on it
    solutions in thids thread seem to resolve for some
    https://discussions.apple.com/message/25722716#25722716
    Appears to be linked to having changed iTunes Store Country at some time in past

  • So I updated to OS X Maverick(s) and backuped my harddrive and got a new one installed, everything seems okay but some things are missing in my settings like the software update icon. Does anyone know how I can get it back?

    So I updated to OS X Maverick(s) and backuped my harddrive and got a new one installed, everything seems okay but some things are missing in my settings like the software update icon. Does anyone know how I can get it back?

    Okay so I asked someone from apple and they said that the software update icon is gone but its functions have been merged with the app store icon on the settings menu. Crisis averted haha!

  • The update icon!!!

    when I first use Nokia PC Suite program,I had an update icon in my toolbar.
    I remove the PC Suite, Nokia Conectivity and modem drivers from add/remove program, I restart my computer and then I reinstall it from nokia.com. The new version start but the update icon didn't appear in toolbar. I ask for help!How can I recover it?

    Hi carmen
    If you are running the latest version of PCSuite, you should not see anything apart form normal icon until a future version becomes available.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • How do I remove the Adobe updater icon from the menu bar?

    How can I remove the Adobe Updater icon from the menu bar? It's pixelated and looks broken. Any help is appreciated.
    I found this thread, but it doesn't work. When I click on the Updater icon, then click "Open updater," it opens the Creative Cloud instead. I haven't found a way to remove the updater icon from within Creative cloud.
    Remove Adobe Updater from OS X menu bar?
    ^^ Doesn't work
    Anyone know how to remove it?
    Thanks!

    Found it, thanks to later posts in that thread I mentioned in the OP. Here is what they suggest (you have to use Photoshop):
    1. In Photoshop, go to Help >Updates:
    2. Click "Preferences" at the bottom right.
    3. Uncheck the box labeled "Notify me of new updates on the menu bar." Then click "Ok."
    Hope that helps anyone!

  • Why does the update icon always on my desktop photoshop elements 10 icon

    why does the update icon always stay on the photoshop 10 icon on my desktop?

    ski80+mary wrote:
    why does the update icon always stay on the photoshop 10 icon on my desktop?
    We don't know because update function is hidden so deep in the Menu bar's help item that many people don't even know about it.  Now you are telling us that an icon is on your desktop so this is completely unusual.
    Are you sure it is not the icon for the PSE10 to make it easy for you to launch it?  Can you post a screenshot of what is on your desktop.
    We look forward to hearing from you soon.

  • HT4623 I don't have an update icon

    I need to update my iPad but when I go to the settings menu and touch general there isn't an update icon.

    That is only a feature of iOS 5 or later...
    If you have iOS 4... See Here...
    http://support.apple.com/kb/HT4972
    OR...
    Connect to iTunes on the computer you usually Sync with and “ Check for Updates “...
    See the Using iTunes Section Here...
    How to update your iPhone, iPad, or iPod touch

  • Got several adobe updater icons in my menu bar how do I remove them?

    Installing adobe photoshop elements 10 I ended up with several updater icons in my menu bar. Tried command dragging them out, but that didn't work. Any ideas?

    As far as I know the only way to get rid of them is to 1) install the updates and then 2) turn off automatic updates for PS Elements (in PSE Preferences).

  • Removing Shockwave Updater icon from taskbar

    How do I get rid of the Shockwave Updater icon in the System Tray? I tried right/left/middle & double clicking on it and nothing happens!?!

    Have you tried just to run the update?  The updater icon should disappear after that.
    Or if you don't want to update at all, disable auto-update: http://helpx.adobe.com/shockwave/kb/disable-auto-update-setting-shockwave.html

  • Update Icons Missing

    All,
    When I create one read/write report the update icons are missing. When I create a different read/write report the update icons are present. The insert incons are present in both.
    Any idea what is going on here. Is there a work around for this?
    Thanks

    Dennie,
    You can only create a report & form as "read/write" when you are using the create application wizard. Any report which you create after that will have to be configured to call a corresponding form.
    Please have a look at this How To for some more details: http://www.oracle.com/technology/products/database/htmldb/howtos/howto_drill_down_reports.html
    Keep in mind that this How To is based on Release 1.5 - steps for Release 1.6 will vary slightly.
    Thanks,
    - Scott -

  • /usr/bin/gtk-update-icon-cache exists in filesystem?

    heres what i get when i try yo update GTK or install a program like gnome-do. 
    [kazuki@archbang ~]$ sudo pacman -S gtk3
    resolving dependencies...
    looking for inter-conflicts...
    Targets (2): gtk-update-icon-cache-2.24.4-1 [0.01 MB]  gtk3-3.0.9-1 [4.69 MB]
    Total Download Size:    0.00 MB
    Total Installed Size:   31.78 MB
    Proceed with installation? [Y/n] y
    (2/2) checking package integrity                   [---------------------] 100%
    (2/2) checking for file conflicts                  [---------------------] 100%
    error: failed to commit transaction (conflicting files)
    gtk-update-icon-cache: /usr/bin/gtk-update-icon-cache exists in filesystem
    Errors occurred, no packages were upgraded.
    [kazuki@archbang ~]$
    Last edited by kazuki454 (2011-05-04 22:43:38)

    ok but stiil not work? [kazuki@archbang ~]$ sudo pacman -Syu gtk3
    Password:
    :: Synchronizing package databases...
    core is up to date
    extra                   472.6K  581.6K/s 00:00:01 [---------------------] 100%
    community               433.9K  570.9K/s 00:00:01 [---------------------] 100%
    multilib is up to date
    :: Starting full system upgrade...
    :: Replace lib32-util-linux-ng with multilib/lib32-util-linux? [Y/n] y
    :: Replace libjpeg with extra/libjpeg-turbo? [Y/n] y
    :: Replace mailx with core/heirloom-mailx? [Y/n] y
    :: Replace util-linux-ng with core/util-linux? [Y/n] y
    resolving dependencies...
    looking for inter-conflicts...
    Remove (4): libjpeg-8.3.0-1 [0.83 MB]  util-linux-ng-2.18-3 [6.83 MB]
                lib32-util-linux-ng-2.18-3 [0.58 MB]  mailx-8.1.1-7 [0.16 MB]
    Total Removed Size:   8.40 MB
    Targets (330): glib2-2.28.6-1 [1.57 MB]  atk-2.0.0-1 [0.25 MB]
                   linux-api-headers-2.6.38.1-1 [0.54 MB]
                   tzdata-2011g-1 [0.17 MB]  glibc-2.13-5 [7.19 MB]
                   ncurses-5.9-1 [0.92 MB]  readline-6.2.001-1 [0.29 MB]
                   bash-4.2.008-1 [0.77 MB]  cairo-1.10.2-2 [0.46 MB]
                   libjpeg-turbo-1.1.0-1 [0.20 MB]  libtiff-3.9.5-1 [0.75 MB]
                   libxcb-1.7-2 [0.26 MB]  xproto-7.0.21-1 [0.13 MB]
                   libx11-1.4.3-2 [1.49 MB]  gdk-pixbuf2-2.23.3-1 [0.56 MB]
                   gtk-update-icon-cache-2.24.4-1 [0.01 MB]
                   gcc-libs-4.6.0-4 [0.73 MB]  libtasn1-2.9-1 [0.10 MB]
                   libgpg-error-1.9-3 [0.05 MB]  libgcrypt-1.4.6-3 [0.29 MB]
                   gnutls-2.12.3-1 [1.48 MB]  libxi-1.4.2-1 [0.14 MB]
                   libthai-0.1.15-1 [0.14 MB]  pango-1.28.4-2 [0.48 MB]
                   shared-mime-info-0.90-1 [0.35 MB]  gtk3-3.0.9-1 [4.69 MB]
                   a52dec-0.7.4-5 [0.04 MB]  aalib-1.4rc5-8 [0.14 MB]
                   alsa-firmware-1.0.24.1-1 [2.58 MB]
                   alsa-lib-1.0.24.1-1 [0.37 MB]  dialog-1.1_20110302-1 [0.15 MB]
                   pciutils-3.1.7-4 [0.21 MB]  alsa-utils-1.0.24.2-1 [0.90 MB]
                   db-5.1.25-1 [1.06 MB]  shadow-4.1.4.3-1 [0.94 MB]
                   coreutils-8.12-1 [2.00 MB]  perl-5.12.3-1 [12.55 MB]
                   openssl-1.0.0.d-1 [3.62 MB]  sqlite3-3.7.6.1-1 [0.36 MB]
                   python2-2.7.1-9 [8.18 MB]  python2-cairo-1.10.0-1 [0.02 MB]
                   gobject-introspection-0.10.8-1 [0.77 MB]
                   pygobject-devel-2.28.4-1 [0.17 MB]
                   pygobject-2.28.4-1 [0.27 MB]  pygtk-2.24.0-1 [1.61 MB]
                   xorg-xrandr-1.3.4-2 [0.03 MB]  arandr-0.1.4-2 [0.05 MB]
                   libdrm-2.4.25-1 [0.09 MB]  libgl-7.10.2-2 [0.93 MB]
                   ati-dri-7.10.2-2 [1.67 MB]  libsigc++-2.2.9-1 [0.06 MB]
                   glibmm-2.28.0-2 [0.52 MB]  atkmm-2.22.4-1 [0.08 MB]
                   attr-2.4.44-3 [0.06 MB]  linux-firmware-20110227-1 [8.23 MB]
                   mkinitcpio-busybox-1.18.2-1 [0.16 MB]
                   filesystem-2011.04-1 [0.00 MB]  util-linux-2.19-4 [1.38 MB]
                   udev-167-2 [0.22 MB]  file-5.06-1 [0.19 MB]
                   mkinitcpio-0.6.11-1 [0.02 MB]  kernel26-2.6.38.5-1 [34.85 MB]
                   aufs2-2.6.38_20110314-5 [0.10 MB]
                   aufs2-util-20110314-1 [0.39 MB]  avahi-0.6.30-2 [0.40 MB]
                   binutils-2.21-7 [3.24 MB]  run-parts-3.4.4-1 [0.01 MB]
                   ca-certificates-20110421-3 [0.13 MB]  cairomm-1.9.8-1 [0.26 MB]
                   cdparanoia-10.2-3 [0.08 MB]  gtk2-2.24.4-1 [4.92 MB]
                   nss-3.12.9-1 [1.37 MB]  xorg-xset-1.2.1-2 [0.02 MB]
                   xdg-utils-1.1.0rc1-2 [0.04 MB]  libevent-2.0.10-1 [0.25 MB]
                   desktop-file-utils-0.18-1 [0.03 MB]
                   chromium-11.0.696.57-1 [18.64 MB]  conky-1.8.1-3 [0.15 MB]
                   polkit-0.101-2 [0.35 MB]  consolekit-0.4.4-1 [0.08 MB]
                   dconf-0.7.3-2 [0.08 MB]  dcron-4.5-2 [0.02 MB]
                   device-mapper-2.02.84-1 [0.12 MB]  linux-atm-2.5.1-2 [0.25 MB]
                   iproute2-2.6.37-1 [0.37 MB]  dhclient-4.2.1.1-1 [0.56 MB]
                   dhcpcd-5.2.12-1 [0.06 MB]  idnkit-1.0-1 [0.12 MB]
                   dnsutils-9.8.0-1 [0.93 MB]  dosfstools-3.0.11-1 [0.05 MB]
                   eject-2.1.5-5 [0.02 MB]  elfutils-0.152-1 [0.55 MB]
                   ethtool-1:2.6.38-1 [0.06 MB]  eventlog-0.2.12-2 [0.01 MB]
                   exiv2-0.21.1-1 [1.25 MB]  faad2-2.7-2 [0.18 MB]
                   xvidcore-1.3.1-1 [0.25 MB]  x264-20110327-1 [0.36 MB]
                   libvdpau-0.4.1-1 [0.05 MB]  xextproto-7.2.0-1 [0.12 MB]
                   fixesproto-5.0-1 [0.01 MB]  libxfixes-5.0-1 [0.01 MB]
                   libvpx-0.9.6-2 [0.33 MB]  libva-1.0.12-1 [0.14 MB]
                   ffmpeg-20110330-1 [5.24 MB]  fftw-3.2.2-2 [1.52 MB]
                   libexif-0.6.20-1 [0.33 MB]
                   gsettings-desktop-schemas-3.0.1-2 [0.04 MB]
                   startup-notification-0.10-2 [0.02 MB]
                   gnome-desktop-3.0.1-1 [0.47 MB]  libproxy-0.4.6-6 [0.07 MB]
                   glib-networking-2.28.6.1-2 [0.04 MB]
                   libsoup-2.34.1-1 [0.30 MB]  libgnome-keyring-3.0.1-1 [0.09 MB]
                   libsoup-gnome-2.34.1-1 [0.01 MB]  libunique3-3.0.0-1 [0.04 MB]
                   sg3_utils-1.30-1 [0.46 MB]  lsof-4.84-3 [0.27 MB]
                   lvm2-2.02.84-1 [0.54 MB]  udisks-1.0.3-2 [0.15 MB]
                   libnotify-0.7.2-1 [0.03 MB]
                   gnome-disk-utility-3.0.0-1 [1.65 MB]  gvfs-1.8.1-1 [0.80 MB]
                   nautilus-3.0.1.1-1 [2.19 MB]  file-roller-3.0.1-2 [1.03 MB]
                   gcalctool-6.0.1-1 [0.49 MB]  libldap-2.4.24-1 [0.36 MB]
                   gconf-2.32.3-1 [0.88 MB]  geeqie-1.0-5 [0.84 MB]
                   gegl-0.1.6-1 [0.34 MB]  gettext-0.18.1.1-3 [5.35 MB]
                   giflib-4.1.6-4 [0.08 MB]  librsvg-2.34.0-1 [0.10 MB]
                   gimp-2.6.11-5 [9.40 MB]  xorg-xauth-1.0.5-2 [0.02 MB]
                   gksu-2.0.2-3 [0.02 MB]  gnome-menus-3.0.1-1 [0.14 MB]
                   libmad-0.15.1b-5 [0.06 MB]  keyutils-1.4-1 [0.04 MB]
                   cifs-utils-4.9-2 [0.03 MB]  tdb-1.2.9-1 [0.05 MB]
                   talloc-2.0.5-1 [0.04 MB]  smbclient-3.5.8-2 [8.51 MB]
                   jack-0.120.1-1 [0.28 MB]  libirman-0.4.5-2 [0.01 MB]
                   lirc-utils-1:0.9.0-2 [0.26 MB]  mplayer-33159-1 [8.85 MB]
                   gnome-mplayer-1.0.3-1 [0.30 MB]  libgsf-1.14.20-1 [0.18 MB]
                   goffice-0.8.14-1 [1.29 MB]  gnumeric-1.10.14-1 [9.27 MB]
                   gstreamer0.10-0.10.32-1 [1.28 MB]  orc-0.4.14-1 [0.18 MB]
                   gstreamer0.10-base-0.10.32-4 [1.14 MB]
                   gstreamer0.10-bad-0.10.21-3 [0.84 MB]
                   libraw1394-2.0.7-1 [0.05 MB]  libdc1394-2.1.3-1 [0.13 MB]
                   raptor1-1.4.21-3 [0.17 MB]  liblrdf-0.4.0-7 [0.02 MB]
                   libofa-0.9.3-3 [0.05 MB]  libsndfile-1.0.24-1 [0.28 MB]
                   gstreamer0.10-bad-plugins-0.10.21-3 [0.39 MB]
                   gstreamer0.10-base-plugins-0.10.32-4 [0.15 MB]
                   gstreamer0.10-good-0.10.28-1 [0.85 MB]  taglib-1.7-1 [0.23 MB]
                   sysfsutils-2.1.0-6 [0.03 MB]  v4l-utils-0.8.3-1 [0.23 MB]
                   gstreamer0.10-good-plugins-0.10.28-1 [0.31 MB]
                   gstreamer0.10-ugly-0.10.17-2 [0.15 MB]
                   gstreamer0.10-ugly-plugins-0.10.17-2 [0.08 MB]
                   pangomm-2.28.1-1 [0.07 MB]  gtkmm-2.24.0-1 [1.00 MB]
                   initscripts-2011.04.1-2 [0.01 MB]  intel-dri-7.10.2-2 [1.33 MB]
                   leafpad-0.8.18.1-2 [0.07 MB]  less-443-1 [0.09 MB]
                   lib32-glibc-2.13-5 [2.54 MB]  lib32-pixman-0.20.2-1 [0.15 MB]
                   lib32-gcc-libs-4.6.0-4 [0.71 MB]  lib32-pcre-8.12-1 [0.14 MB]
                   lib32-glib2-2.28.6-1 [1.39 MB]  lib32-cairo-1.10.2-2 [0.31 MB]
                   lib32-util-linux-2.19-1 [0.18 MB]
                   lib32-e2fsprogs-1.41.14-2 [0.15 MB]
                   lib32-libx11-1.4.3-1 [0.50 MB]
                   lib32-gdk-pixbuf2-2.23.3-1 [0.13 MB]
                   lib32-gnutls-2.12.2-1 [0.28 MB]  lib32-libxi-1.4.1-1 [0.02 MB]
                   lib32-gtk2-2.24.4-1 [1.69 MB]
                   lib32-openssl-1.0.0.d-1 [1.00 MB]
                   libburn-1.0.6.pl00-1 [0.19 MB]  libfetch-2.33-3 [0.07 MB]
                   libgtop-2.28.3-1 [0.15 MB]  libisofs-1.0.6-1 [0.16 MB]
                   mpfr-3.0.1-1 [0.31 MB]  libmpc-0.9-1 [0.06 MB]
                   libpciaccess-0.12.1-1 [0.02 MB]  libunique-1.1.6-4 [0.02 MB]
                   libwnck-2.30.6-2 [0.32 MB]  libxfcegui4-4.8.1-2 [0.20 MB]
                   libxt-1.1.1-1 [0.39 MB]  licenses-2.8-1 [0.06 MB]
                   mach64-dri-7.10.2-2 [0.83 MB]  heirloom-mailx-12.5-1 [0.20 MB]
                   libpipeline-1.2.0-1 [0.03 MB]  man-db-2.6.0.2-1 [0.38 MB]
                   mdadm-3.2.1-3 [0.30 MB]  mesa-7.10.2-2 [0.27 MB]
                   mga-dri-7.10.2-2 [0.83 MB]  nitrogen-1.5.2-1 [0.13 MB]
                   libcanberra-0.28-1 [0.07 MB]
                   notification-daemon-0.7.1-1 [0.03 MB]
                   nouveau-dri-7.10.2-2 [1.28 MB]  ntfs-3g-2011.4.12-1 [0.23 MB]
                   ntfsprogs-2011.4.12-1 [0.13 MB]  p7zip-9.20.1-1 [1.14 MB]
                   pacman-mirrorlist-20110324-1 [0.00 MB]
                   parcellite-1.0.1-1 [0.21 MB]  pcmciautils-017-2 [0.02 MB]
                   pm-utils-1.4.1-3 [0.04 MB]  poppler-0.16.4-1 [0.71 MB]
                   poppler-glib-0.16.4-1 [0.17 MB]  ppl-0.11.2-1 [2.74 MB]
                   ppp-2.4.5-2 [0.27 MB]  python-3.2-2 [8.98 MB]
                   python-imaging-1.1.7-3 [0.34 MB]  qt-4.7.3-1 [24.12 MB]
                   r128-dri-7.10.2-2 [0.81 MB]  raptor-2.0.2-1 [0.23 MB]
                   rp-pppoe-3.10-6 [0.08 MB]  savage-dri-7.10.2-2 [0.83 MB]
                   sis-dri-7.10.2-2 [0.82 MB]  slim-1.3.2-5 [0.21 MB]
                   xz-5.0.2-1 [0.30 MB]  squashfs-tools-4.2-1 [0.07 MB]
                   sudo-1.8.1.p1-1 [0.37 MB]  syslinux-4.03-4 [0.68 MB]
                   syslog-ng-3.2.2-2 [0.23 MB]  tar-1.26-1 [0.55 MB]
                   tdfx-dri-7.10.2-2 [0.82 MB]  thunar-1.2.1-2 [2.67 MB]
                   transmission-gtk-2.22-3 [0.54 MB]  tumbler-0.1.21-3 [0.09 MB]
                   unrar-4.0.7-1 [0.08 MB]  usbutils-002-2 [0.16 MB]
                   vi-050325-4 [0.14 MB]  vte-common-0.28.0-1 [0.00 MB]
                   vte-0.28.0-1 [0.34 MB]  wget-1.12-5 [0.39 MB]
                   wpa_supplicant-0.7.3-3 [0.24 MB]  wicd-1.7.0-9 [0.25 MB]
                   xf86-input-evdev-2.6.0-3 [0.02 MB]
                   xf86-input-synaptics-1.4.0-2 [0.04 MB]
                   xf86-video-apm-1.2.3-3 [0.05 MB]
                   xf86-video-ark-0.7.3-3 [0.01 MB]
                   xf86-video-ast-0.91.10-3 [0.02 MB]
                   xf86-video-ati-6.14.1-1 [0.33 MB]
                   xf86-video-chips-1.2.4-2 [0.06 MB]
                   xf86-video-cirrus-1.3.2-6 [0.03 MB]
                   xf86-video-dummy-0.3.4-4 [0.01 MB]
                   xf86-video-fbdev-0.4.2-4 [0.01 MB]
                   xf86-video-glint-1.2.5-2 [0.07 MB]
                   xf86-video-i128-1.3.4-3 [0.02 MB]
                   xf86-video-i740-1.3.2-6 [0.02 MB]
                   xf86-video-intel-2.15.0-1 [0.16 MB]
                   xf86-video-mach64-6.8.2-6 [0.07 MB]
                   xf86-video-mga-1.4.13-3 [0.07 MB]
                   xf86-video-neomagic-1.2.5-4 [0.03 MB]
                   xf86-video-nouveau-0.0.16_git20110316-2 [0.08 MB]
                   xf86-video-nv-2.1.18-3 [0.07 MB]
                   xf86-video-r128-6.8.1-6 [0.04 MB]
                   xf86-video-rendition-4.2.4-4 [0.03 MB]
                   xf86-video-s3-0.6.3-5 [0.03 MB]
                   xf86-video-s3virge-1.10.4-5 [0.03 MB]
                   xf86-video-savage-2.3.2-2 [0.06 MB]
                   xf86-video-siliconmotion-1.7.5-2 [0.05 MB]
                   xf86-video-sis-0.10.3-4 [0.22 MB]
                   xf86-video-sisusb-0.9.4-4 [0.03 MB]
                   xf86-video-tdfx-1.4.3-6 [0.03 MB]
                   xf86-video-trident-1.3.4-4 [0.06 MB]
                   xf86-video-tseng-1.2.4-4 [0.02 MB]
                   xf86-video-v4l-0.2.0-8 [0.02 MB]
                   xf86-video-vesa-2.3.0-5 [0.01 MB]
                   xf86-video-vmware-11.0.3-3 [0.02 MB]
                   xf86-video-voodoo-1.2.4-4 [0.01 MB]
                   xf86-video-xgi-1.6.0-3 [0.11 MB]
                   xf86-video-xgixp-1.8.0-3 [0.05 MB]  xfburn-0.4.3-4 [0.26 MB]
                   xfsprogs-3.1.5-1 [0.58 MB]  xorg-xkbcomp-1.2.1-2 [0.08 MB]
                   xkeyboard-config-2.2.1-1 [0.46 MB]
                   xorg-fonts-encodings-1.0.4-1 [0.54 MB]
                   xorg-bdftopcf-1.0.3-1 [0.01 MB]
                   xorg-mkfontscale-1.0.8-1 [0.02 MB]
                   xorg-mkfontdir-1.0.6-2 [0.00 MB]
                   xorg-font-util-1.2.0-1 [0.02 MB]
                   xorg-font-utils-7.6-2 [0.00 MB]  xorg-iceauth-1.0.4-2 [0.01 MB]
                   xorg-luit-1.1.0-2 [0.02 MB]  xorg-setxkbmap-1.2.0-2 [0.01 MB]
                   xorg-server-common-1.10.1-1 [0.02 MB]
                   xorg-server-1.10.1-1 [1.24 MB]  xorg-sessreg-1.0.6-2 [0.01 MB]
                   xorg-xcmsdb-1.0.3-2 [0.01 MB]
                   xorg-xbacklight-1.1.2-2 [0.01 MB]
                   xorg-xgamma-1.0.4-2 [0.01 MB]  xorg-xhost-1.0.4-2 [0.01 MB]
                   xorg-xinput-1.5.3-2 [0.02 MB]  xorg-xmodmap-1.0.5-2 [0.02 MB]
                   xorg-xrdb-1.0.9-1 [0.02 MB]  xorg-xrefresh-1.0.4-2 [0.01 MB]
                   xorg-xsetroot-1.1.0-2 [0.01 MB]
                   xorg-server-utils-7.6-2 [0.00 MB]  xorg-twm-1.0.6-2 [0.09 MB]
                   xorg-xdpyinfo-1.2.0-2 [0.01 MB]
                   xorg-xdriinfo-1.0.4-2 [0.00 MB]  xorg-xev-1.1.0-2 [0.01 MB]
                   xorg-xlsatoms-1.1.0-2 [0.01 MB]
                   xorg-xlsclients-1.1.1-2 [0.01 MB]  xorg-xprop-1.2.0-2 [0.02 MB]
                   xorg-xvinfo-1.1.1-2 [0.01 MB]  xorg-xwininfo-1.1.1-2 [0.02 MB]
                   xorg-utils-7.6-7 [0.00 MB]  xorg-xinit-1.3.0-3 [0.01 MB]
                   xorg-xkbutils-1.0.3-2 [0.02 MB]  xorg-xkbevd-1.1.2-2 [0.02 MB]
                   xorg-xkb-utils-7.6-1 [0.00 MB]  xorg-xkill-1.0.3-2 [0.01 MB]
                   xterm-269-1 [0.22 MB]  zip-3.0-2 [0.15 MB]
    Total Download Size:    1.13 MB
    Total Installed Size:   1398.30 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from core...
    pciutils-3.1.7-4-x...   219.5K  484.9K/s 00:00:00 [---------------------]  18%
    udev-167-2-x86_64       444.4K  255.7K/s 00:00:02 [---------------------]  38%
    run-parts-3.4.4-1-...   452.2K  173.5K/s 00:00:03 [---------------------]  39%
    ca-certificates-20...   580.8K  155.1K/s 00:00:04 [---------------------]  50%
    sudo-1.8.1.p1-1-x86_64  964.4K  184.3K/s 00:00:05 [---------------------]  83%
    usbutils-002-2-x86_64  1133.0K  176.3K/s 00:00:06 [---------------------]  97%
    :: Retrieving packages from extra...
    dcron-4.5-2-x86_64     1158.1K  149.2K/s 00:00:08 [---------------------] 100%
    (330/330) checking package integrity               [---------------------] 100%
    (330/330) checking for file conflicts              [---------------------] 100%
    error: failed to commit transaction (conflicting files)
    wicd: /usr/lib/python2.7/site-packages/wicd/__init__.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/backend.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/configmanager.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/dbusmanager.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/logfile.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/misc.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/networking.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/wnettools.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/wpath.pyo exists in filesystem
    Errors occurred, no packages were upgraded.
    [kazuki@archbang ~]$

  • HT4623 I've updated my phone it still show that I'm running on 3G when it should say 4g and my update icon still appears next to my battery life I restored my phone and still nothing ...did I do something wrong

    Can someone help me I've updated the phone and it still shows the update icon and says 3G when it should say 4g

    It will not say 4g on an iphone 4.
    The 4g status is only available on iphone 4s.

  • I know Apple has pulled the iOS 8.01 update but how can I clear the update icon that is on my settings icon?

    How do I clear the update icon that is appearing on my settings icon now that the iOS 8.01 update has been pulled?

    You're saying you don't back up your phone regularly? You should ALWAYS back up before updating your phone. That said, try resetting first: hold down the home button and the power button for at least 10-20 seconds until you see the Apple. Hopefully you can then try to perform the update again. Start doing backups if your data is important to you.

Maybe you are looking for

  • Where is the batch process command in Bridge CS6?

    Where is the batch process command in Bridge CS6?  I want to convert to Tiffs.

  • Ios7 ipad mini coverflow replacement

    Hi, various sites discussing ios7 show a replacement for cover flow where, when in music and landscape mode, a grid of album covers show.  Doesn't do this on my iPad so is it just on iPhone?

  • ADF: use of view link Accessor in Entity Object = always null?

    Hi, JClient 9.0.5.2, adf model. I would like to use the view link accessor method in the master EO to retrieve detail EO values and the view link accessor method in the detail EO to retrieve master EO values. Detail Rule: In the detail EO an attribut

  • How to Update the APC values in another Depreciation Area

    Hi We have an issue that: Due to our configuration mistakes the past values have not posted to our depreciation area 15 (Tax depreciation) and our Group Assets are not updated with these values. Now we have rectified the configuration but we want to

  • Cannot save presentation urent help needed please

    Hello everyone, I hope that someone will come to my rescue tonight. I opened a ppt in keynote made some changes of background texte formating when I tried to save I got a little sound that said not now. I noticed that in the left area of the navigato