PROBLEM : SetSelectedIndex with MultiColumn JComboBox

Hello,
I've got a problem with my MultiColumn (2 Column) JComboBox.
I had use in my ListCellRenderer a panel wich contains 2 labels (One for the code and another for the description of my item).
Everything work very well, except the "SetSelectedIndex" and "SetSelectedItem", when i do that the label2 appears over the label1...and i obtains some very strang things....
Is there anybody who got the solution or who got the same problem?
Thx for the futur response.
PS: I'm sorry for my bad english and my bad explanations, I'm french...

Here is an example of a combo box with 2 columns using a JPanel implementing ListCellRenderer. Note that there are other ways to get appropriate background and foreground colors, but this is just a quick sample:
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import java.net.*;
import java.io.*;
import javax.swing.*;
import javax.swing.event.*;
public class Test extends JFrame
     public static void main(String[] args)
          new Test();
     public Test()
          Container c = getContentPane();
          c.setLayout(new BorderLayout());
          c.setBackground(Color.gray);
          Item[] items = {
                    new Item("Item 1", "Value 1"),
                    new Item("Item 2", "Value 2"),
                    new Item("Item 3", "Value 3"),
                    new Item("Item 4", "Value 4")
          JComboBox jcb = new JComboBox(items);
          jcb.setPreferredSize(new Dimension(24, 24));
          jcb.setRenderer(new ItemRenderer());
          c.add(jcb, BorderLayout.NORTH);
          setSize(200, 100);
          setLocationRelativeTo(null);
          setDefaultCloseOperation(EXIT_ON_CLOSE);
          setVisible(true);
     // The items to display in the combobox...
     class Item
          String itemName = "";
          String itemValue = "";
          public Item(String name, String value)
               itemName = name;
               itemValue = value;
     // The combobox's renderer...
     class ItemRenderer extends JPanel implements ListCellRenderer
          private JLabel          nameLabel = new JLabel(" ");
          private JLabel          valueLabel = new JLabel(" ");
          public ItemRenderer()
               setOpaque(true);
               setLayout(new GridLayout(1, 2));
               add(nameLabel);
               add(valueLabel);
          public Component getListCellRendererComponent(
                                   JList list,
                                   Object value,
                                   int index,
                                   boolean isSelected,
                                   boolean cellHasFocus )
               nameLabel.setText( ((Item)value).itemName );
               valueLabel.setText( ((Item)value).itemValue );
               if (isSelected)
                    setBackground(Color.black);
                    nameLabel.setForeground(Color.white);
                    valueLabel.setForeground(Color.white);
               else
                    setBackground(Color.white);
                    nameLabel.setForeground(Color.black);
                    valueLabel.setForeground(Color.black);
               return this;
}I'm not sure, but the key to your problem may be with the opacity of your renderer. Let us know what you come up with. Cheers,
Chris

Similar Messages

  • A strange problem found with the JCombobox???

    Hi All,
    A strange problem found with the JCombobox, its arrow button does not recognise any events (Mouse,Focus,Action ets.)
    My intention is when ever user clicks on the JCombox's arrow button load it with some values dynamically?
    I have tried it by initializing with values it still does not workl.
    I could solve this in JDK1.4 by using popupListner but I want it to work in JDK1.3.1_09.
    Any ideas on this would be great help..

    i don't really quite sure about my understanding about load dinamically...do you mean that you want to add value to combo box?and the first value will stay and never disappear?...well i haven't try that but...may be one of my suggestions work for you...
    but try these posibilities:
    1. look in the help docs...for JComboBox...find setEditable() method...try to use this method.
    2.look in the same page as 1...try to use append() method or add() method...i forgot about this...hehe...but the point is, find a method to add value to the JComboBox...
    sometimes, you have to set your combo to be editable before you're able to do something on it...but just try with or without that method...
    3.about the listener...mmm...have you add the combobox object to the listener you use?

  • Problem using an editable JComboBox as JTable cell editor

    Hi,
    i have a problem using an editable JComboBox as cell editor in a JTable.
    When i edit the combo and then I press the TAB or ENTER key then all works fine and the value in the TableModel is updated with the edited one, but if i leave the cell with the mouse then the value is not passed to the TableModel. Why ? Is there a way to solve this problem ?
    Regards
    sergio sette

    if (v1.4) [url
    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JTa
    le.html#setSurrendersFocusOnKeystroke(boolean)]go
    hereelse [url
    http://forum.java.sun.com/thread.jsp?forum=57&thread=43
    440]go here
    Thank you. I've also found this one (the first reply): http://forum.java.sun.com/thread.jsp?forum=57&thread=124361 Works fine for me.
    Regards
    sergio sette

  • Popup containing a JPanel with a JComboBox

    I like to get a Popup containing a JPanel with a JComboBox and some other stuff.
    There are two difficulties:
    - it is not possible to use a Combobox with a light weight popup. So I set combobox.LightWeightPopupEnabled(false). Otherwise the combobox popup won't be shown.
    - If the user changes the popups size (see code: this.getSize() returns a different dimension because of a new Frame size). The combobox popups won't be shown proper after a while.
    Does someone know, why it is not possible to use comboboxes with light weight popups?
    Does somebody know, how to fix the size problem?
    I am using JDK 1.4.1 for Windows Systems.
      private Popup getPopup(){
        if (popup != null) {
          hidePopup();
        Point p = this.getLocationOnScreen();
        Dimension inputSize = this.getSize();
        Dimension tableSize = tablePopup.getSize();
        if( ( p.y + tableSize.height ) < screenSize.height) {
          // will fit below input panel
          popup = factory.getPopup( this, tablePopup,
                                    p.x, p.y + (int)inputSize.height );
        } else {
          // need to fit it above input panel
          popup = factory.getPopup( this, tablePopup,
                                    p.x, p.y - (int)tableSize.height );
        return popup;

    Ok, it works proper with Windows L&F. So I replaced
    private PopupFactory factory =  PopupFactory.getSharedInstance();by
    private WindowsPopupFactory factory = new WindowsPopupFactory();

  • Multicolumn JCombobox As a JTable Cell Editor

    My problem is 2 parts.
    1. MultiColumn JCombobox - I needed a combo box that could contain items which have an ID and a NAME. The NAME is displayed but value of the selected item is the ID. This seems to be a common problem. (DONE, I have figured this out).
    2. Now I have a column in a JTable that needs to use this new JCombobox as a CellEditor. The column data contains the IDs. When the user edits a cell in this column the JCombobox should display the available NAMEs to choose from and then store the ID of the selected NAME. (PARTIALLY done).
    My problem is that the table cell displays the ID at all times except when the user is editting it. The ID is really meaningless to the user. I would like the table cell to display the NAME of the selected ID after one is selected. However the ID is needed in the data as the unique identifier.
    I am not sure if anyone has tackled something like this before. Any help is appreciated.
    -Paul

    Create a custom renderer which will do the same as
    editor.
    regards,
    StasYou are correct Stas. Before I read your post this morning I had already started down that path. Then stopped to see if anyone had responded. This post assured me I was headed in the right direction. I created a new TableCellRenderer that takes the same ComboBoxModel that is used by the TableCellEditor/ComboBox. Then I can lookup the name based on the id and display the name in the cell. This one came to me in my sleep. Funny how that always works. Thanks,
    Paul

  • Has Apple acknowledged the problem yet with itunes aborting preview of songs after about 10 seconds on windows 7 and if so is there an answer other than ipconfig?

    Has Apple acknowledged the problem yet with itunes aborting preview of songs after about 10 seconds on windows 7 and if so is there an answer other than ipconfig?  IPConfig /flushdns doesn't help at all.  Until they fix it I will be previewing and buying my songs thru Amazon.

    Doublechecking ... do you still get that if you update to iTunes 10.6.3.25 (just released today)?
    http://www.apple.com/itunes/download/

  • Internet connection dropping out throughout day; problem NOT with provider

    My computer's connection to the Airport Express base station has no problems at all. But the internet connection goes out literally dozens of times a day (at no predictable schedule); this has been happening for almost a month. I originally thought the problem was with the internet provider, but I'm now beginning to think that either my settings are wrong, or that I have a corrupt file somewhere. Here are the details:
    I connect via a cable modem (Time Warner - Road Runner). I know people have had problems with Time Warner, so I assumed that was the issue; however I've had 3 service calls and they've checked signal strength inside and out, and swapped out the modem and the cables. I don't think it is simply problems in our geographic area (i.e. greater Los Angeles) due to the fact that the Internet fails sometimes 40-50 times daily, and the problem began when I upgraded from an old Airport base station to a brand new Airport Express about a month ago.
    The airport/internet connection is shared 3 ways: two MacBook Pro computers and one iPhone. My Airport's internet settings are as follows:
    Configure IPv4 using DHCP.
    DNS Servers: 66.75.160.63 and 66.75.160.64 (note I have already tried swapping these for OpenDNS -- this did NOT solve the problem)
    Domain name: socal.rr.com
    DHCP Client ID: [blank]
    Ethernet WAN port: Default-Automatic
    Connection Sharing: Share a Public IP address
    DHCP Beginning Address: 10.0.1.2
    Ending Address: 10.0.1.200
    DHCP Lease: 4 hours
    NAT settings are all unchecked
    One of the main reasons I believe that the problem is with my computer's settings or a corrupt file is that I can fix the problem whenever the Internet "goes down" almost 100% of the time by doing the following: after loading Airport Utility, I make ANY trivial change (i.e. changing the DHCP lease from 4 hours to 5 hours) and then click UPDATE to refresh the Airport base station. This fixes the problem almost 100% of the time. But then, anywhere from 10 minutes to 3 hours later, the Internet connection goes down again. [Unplugging the power from the modem, waiting 30 seconds, and plugging it back in ALSO fixes the problem almost 100% of the time, until it goes out again a little while later.]
    Also, I have tried disconnecting Airport and connecting directly to the cable modem via Ethernet. The problem remains exactly the same -- I can connect, but then the connection fails soon after. Unplugging then replugging the modem fixes the problem temporarily. So I do not think the problem is a defective Airport base station, nor do I think it is the modem (which has been replaced), nor Time Warner.
    I can't think of what else to try -- but any advice would be greatly appreciated -- it's impossible for us to work with the Internet constantly going out throughout the day, every day.
    Thank you!

    Just in case I'm missing something obvious, I am here pasting all CONSOLE messages that appear when I do a standard RESTART:
    8/22/08 7:15:12 AM loginwindow[24] DEAD_PROCESS: 0 console
    8/22/08 7:15:12 AM shutdown[128] reboot by mark:
    8/22/08 7:15:12 AM shutdown[128] SHUTDOWN_TIME: 1219414512 407699
    8/22/08 7:15:12 AM com.apple.loginwindow[24] Shutdown NOW!
    8/22/08 7:15:12 AM com.apple.loginwindow[24] System shutdown time has arrived
    8/22/08 7:15:12 AM mDNSResponder mDNSResponder-171.4 (Apr 20 2008 11:59:52)[23] stopping
    8/22/08 7:15:12 AM com.apple.SystemStarter[17] Stopping Adobe Version Cue CS2
    8/22/08 7:15:31 AM kernel npvhash=4095
    8/22/08 7:15:31 AM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/chum.plist
    8/22/08 7:15:31 AM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    8/22/08 7:15:31 AM com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/pilotfish.plist
    8/22/08 7:15:31 AM com.apple.launchd[1] (com.adobe.versioncueCS3) Unknown key: ServiceDescription
    8/22/08 7:15:31 AM com.apple.launchd[1] (com.apple.distccdConfigd) Unknown key: SHAuthorizationRight
    8/22/08 7:15:31 AM com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    8/22/08 7:15:31 AM com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    8/22/08 7:15:31 AM kextd[10] 413 cached, 0 uncached personalities to catalog
    8/22/08 7:15:31 AM kernel hi mem tramps at 0xffe00000
    8/22/08 7:15:31 AM kernel PAE enabled
    8/22/08 7:15:31 AM kernel 64 bit mode enabled
    8/22/08 7:15:31 AM kernel Darwin Kernel Version 9.4.0: Mon Jun 9 19:30:53 PDT 2008; root:xnu-1228.5.20~1/RELEASE_I386
    8/22/08 7:15:31 AM kernel standard timeslicing quantum is 10000 us
    8/22/08 7:15:31 AM kernel vmpagebootstrap: 972190 free pages and 76386 wired pages
    8/22/08 7:15:31 AM kernel migtable_maxdispl = 79
    8/22/08 7:15:31 AM kernel 98 prelinked modules
    8/22/08 7:15:31 AM kernel AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    8/22/08 7:15:31 AM kernel AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    8/22/08 7:15:31 AM kernel Loading security extension com.apple.security.TMSafetyNet
    8/22/08 7:15:31 AM kernel calling mpopolicyinit for TMSafetyNet
    8/22/08 7:15:31 AM kernel Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    8/22/08 7:15:31 AM kernel Loading security extension com.apple.nke.applicationfirewall
    8/22/08 7:15:31 AM kernel Loading security extension com.apple.security.seatbelt
    8/22/08 7:15:31 AM kernel calling mpopolicyinit for mb
    8/22/08 7:15:31 AM kernel Seatbelt MACF policy initialized
    8/22/08 7:15:31 AM kernel Security policy loaded: Seatbelt Policy (mb)
    8/22/08 7:15:31 AM kernel Copyright (c) 1982, 1986, 1989, 1991, 1993
    8/22/08 7:15:31 AM kernel The Regents of the University of California. All rights reserved.
    8/22/08 7:15:31 AM kernel MAC Framework successfully initialized
    8/22/08 7:15:31 AM kernel using 16384 buffer headers and 4096 cluster IO buffer headers
    8/22/08 7:15:31 AM kernel devfsmakenode: not ready for devices!
    8/22/08 7:15:31 AM kernel IOAPIC: Version 0x20 Vectors 64:87
    8/22/08 7:15:31 AM kernel ACPI: System State [S0 S3 S4 S5] (S3)
    8/22/08 7:15:31 AM kernel mbinit: done
    8/22/08 7:15:31 AM kernel Security auditing service present
    8/22/08 7:15:31 AM kernel BSM auditing present
    8/22/08 7:15:31 AM kernel rooting via boot-uuid from /chosen: 419B2954-20DC-3880-AFEB-448924F9BE09
    8/22/08 7:15:31 AM kernel Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    8/22/08 7:15:31 AM kernel FireWire (OHCI) TI ID 8025 built-in now active, GUID 001d4ffffe5f8d30; max speed s800.
    8/22/08 7:15:31 AM kernel Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/SATA@1F,2/AppleICH8AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/ST9160823AS Media/IOGUIDPartitionScheme/Customer@2
    8/22/08 7:15:31 AM kernel BSD root: disk0s2, major 14, minor 2
    8/22/08 7:15:31 AM kernel Jettisoning kernel linker.
    8/22/08 7:15:31 AM kernel Resetting IOCatalogue.
    8/22/08 7:15:31 AM kernel GFX0: family specific matching fails
    8/22/08 7:15:31 AM kernel Matching service count = 1
    8/22/08 7:15:31 AM kernel Matching service count = 2
    8/22/08 7:15:31 AM kernel Matching service count = 2
    8/22/08 7:15:31 AM kernel Matching service count = 2
    8/22/08 7:15:31 AM kernel Matching service count = 2
    8/22/08 7:15:31 AM kernel Matching service count = 2
    8/22/08 7:15:31 AM kernel Previous Shutdown Cause: 5
    8/22/08 7:15:31 AM kernel NVDANV50HAL loaded and registered.
    8/22/08 7:15:31 AM kernel ath_attach: devid 0x24
    8/22/08 7:15:31 AM kernel GFX0: family specific matching fails
    8/22/08 7:15:32 AM kernel Override HT40 CTL Powers. EEPROM Version is 14.4, Device Type 5
    8/22/08 7:15:33 AM kernel mac 12.10 phy 8.1 radio 12.0
    8/22/08 7:15:33 AM kernel CSRHIDTransitionDriver::start []
    8/22/08 7:15:34 AM kernel CSRHIDTransitionDriver::switchToHCIMode legacy
    8/22/08 7:15:36 AM bootlog[38] BOOT_TIME: 1219414527 0
    8/22/08 7:15:36 AM rpc.statd[19] statd.notify - no notifications needed
    8/22/08 7:15:37 AM com.apple.launchd[1] (com.apple.distccdConfigd[32]) Exited with exit code: 255
    8/22/08 7:15:37 AM DirectoryService[34] Launched version 5.4 (v514.21)
    8/22/08 7:15:37 AM fseventsd[28] bumping event counter to: 0x2e4ba71 (current 0x0) from log file '0000000002e4b394'
    8/22/08 7:15:37 AM mDNSResponder mDNSResponder-171.4 (Apr 20 2008 11:59:52)[23] starting
    8/22/08 7:15:38 AM kernel yukon: Ethernet address 00:1b:63:a2:29:d1
    8/22/08 7:15:38 AM kernel AirPort_Athr5424ab: Ethernet address 00:1c:b3:c0:f5:49
    8/22/08 7:15:38 AM /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[24] Login Window Application Started
    8/22/08 7:15:38 AM com.apple.SecurityServer[20] Entering service
    8/22/08 7:15:38 AM /usr/sbin/ocspd[62] starting
    8/22/08 7:15:39 AM kernel 11D beacon causing regdomain change to CC 840
    8/22/08 7:15:39 AM kernel en1: 802.11d country code set to 'US'.
    8/22/08 7:15:40 AM kernel en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 149 153 157 161 165
    8/22/08 7:15:39 AM configd[36] setting hostname to "Macintosh-3.local"
    8/22/08 7:15:44 AM kernel USBF: 16.757 AppleUSBHubPort: Port 1 of Hub at 0x1a000000 about to terminate a busy device (IOUSBCompositeDevice) after waiting 10 seconds
    8/22/08 7:15:44 AM kernel USBF: 17. 59 CSRHIDTransitionDriver[0x723ca80](IOUSBCompositeDevice) GetFullConfigDescriptor(0) returned NULL
    8/22/08 7:15:44 AM kernel CSRHIDTransitionDriver... done
    8/22/08 7:15:46 AM kernel AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    8/22/08 7:15:46 AM org.ntp.ntpd[14] Error : nodename nor servname provided, or not known
    8/22/08 7:15:46 AM ntpdate[70] can't find host time.apple.com
    8/22/08 7:15:46 AM ntpdate[70] no servers can be used, exiting
    8/22/08 7:15:53 AM kernel AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    8/22/08 7:15:53 AM kernel AirPort: Link Up on en1
    8/22/08 7:15:54 AM kextd[10] writing kernel link data to /var/run/mach.sym
    8/22/08 7:16:02 AM loginwindow[24] Login Window Started Security Agent
    8/22/08 7:16:02 AM SecurityAgent[88] User info context values set
    8/22/08 7:16:02 AM SecurityAgent[88] Login Window done
    8/22/08 7:16:02 AM loginwindow[24] Login Window - Returned from Security Agent
    8/22/08 7:16:02 AM loginwindow[24] USER_PROCESS: 24 console
    8/22/08 7:16:02 AM com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[81]) Exited: Terminated
    8/22/08 7:16:02 AM com.apple.launchctl.Aqua[91] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/com.adobe.versioncueCS3.monitor.plist
    8/22/08 7:16:02 AM com.apple.launchctl.Aqua[91] launchctl: Please convert the following to launchd: /etc/machinit_peruser.d/RemoteUI.plist
    8/22/08 7:16:03 AM com.apple.launchd[66] (0x101260.VersionCueCS3monitor) Failed to check-in!
    8/22/08 7:16:03 AM /System/Library/CoreServices/coreservicesd[44] SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Mark's Public Folder) returned -14135

  • Problem is with my iPhoto on my Macbook air.  I am trying to move my library from my airbag onto my passport drive.  I did it and deleted it from the airbag but it simply re appeared possibly from the cloud. Not sure what to do next.

    The problem is with my iPhoto on my Macbook air.  I am trying to move my library from my airbook onto my passport drive.  I did it and deleted it from the airbook but it simply re appeared possibly from the cloud. Not sure what to do next. Sorry I am not a techie.

    Sorry - we can not see you
    what do you have? Version of iPhoto? Of the OS? How is the passport connected to your Mac? What format is the passport (for the iphoto library it must be Mac OS extended (journaled)  )?  The iPhoto library is not and can not be on the cloud (maybe later with the Photos Application)
    LN

  • I get an error message when trying to install windows 7 on my macbook pro. The message says "windows has encountered a problem communicating with a device connected to your computer. I don't have anything connected to my computer. How do I fix this?

    I'm trying to install windows 7 on my macbook pro. I went through the process of bootcamp telling it to install windows 7. Once the windows boot manager started an error message came up. The error message says " windows has encountered a problem communicating with a device connected to your computer. I don't have a usb connected to my computer. I  am using windows 7 professional install disc. I  can't figure out what i am doing wrong. The same message keeps coming up over and over. Am I doing something wrong or is it something else?

    Well, shucks, i just spent almost 30 minutes trying to find your model user guide to explain it better, I guess they never got around to making it.....
    I would just borrow another Windows disk and try installing it again and if it does it again then you might take it to an Apple Store and see if one of the "Genius' " can figure it out.
    Make sure your internet is enabled and click on your blank desktop and at the top of your screen is a Help menu option, enter PRAM and it should give you a list of things relating to Pram. It may take a few seconds to list anything as it has to connect to Apples severs first. It should list the things you may have to fill back in when your done.
    "P-ram" stores some common information that is used in the background, your date, time, startup disk, etc, that you don't have to re-fill when you restart, it's a little different for each computer.

  • Problems only with Adobe ImageReady Animated GIF

    Anyone encounter a problem and solution for getting ImageReady animated GIF working properly in a java app? Developer placed 2 animated gifs in the app which caused the CPU system resources to spike to 100%.
    We then tested animated GIFs made from Macromedia Flash and also a freeware animated GIF editor, and both work out fine in the same java app.
    It's odd, but we think there's a problem specifically with animated GIFs produced by Adobe's Image Ready in the Creative Suite 1 package.
    Anyone have more insight?

    Its been a long time since I have used ImageReady, and then it was for about year when CS3 came out. So my memory if very rusty with that program. (In other words I am hoping that I am not too far off base, lol.)
    Check and make sure there are the same number of layers as there are frames. I believe there is an option in the animation palette for sending the frames to layers. Once you know that the frames and layers match (plus any additional layers you create), you can clear out the animation and reapply the layers to frames.
    You should find a small icon in the upper right hand corner of the animation palette and the layers palette. Clicking them will bring up a menu that will do what you need.

  • Safari keeps crashing every time I try to open a link from a different application, i.e. Mail. The trouble report says that some problem occurs with libcooliris.dylib plug-in. Can any one help?

    Safari keeps crashing every time I try to open a link from a different application, i.e. Mail. The trouble report says that some problem occurs with libcooliris.dylib plug-in. Can any one help?
    Thanks!

    Dear Linc,
    Thank you for the advice, John Blanchard1  and Linc Davis
    As suggested in your reference thread I removed "/Library/Printers/hp/PDEs/hpPostScriptPDE.plugin" and the problem has been resolved.
    I am guessing the the plug-in for the hp printers got corrupted and effected every thing, or became unsuitable when I installed an Apple update. I would be most grateful if you can confirm how the problem was coursed so I can understand and learn from this experiance.
    Ash

  • Solution to problems synchronizing with Mercedes C...

    Warning: this is long but worths reading if you have trouble synchronizing your Nokia's phone book/addressbook with COMAND APS.
    I have spent hours looking on Mercedes and Nokia forums for my problem and did not find a posted solution. I have now found a solution myself so I decided to post here hoping it will help other people.
    First my issue: I have an E-Class W211 (Apr 2005, UK) with phone pre-wiring, the Mercedes SAP v2 cradle and a Nokia E61i (S60 3rd edition). Till about a week ago the whole was working perfectly: was able to make/receive calls, read/send SMS, synchronize the phone's and SIM contacts to the COMAND, etc.
    About a week ago I upgraded the firmware on my phone to overcome some other (irrelevant to this) issues I had. When I got into my car after the phone's firmware upgrade I naturally needed to pair the phone with the COMAND/SAP Cradle. I did everything according to the manual that came with the SAP v2 Cradle and thought all would be good again. Then, I try to re-sync the COMAND's address book with that of my phone's by following the manual's procedure (dial 0000).
    The synchronization started ok: phone exited Remote SIM mode, got indication "Please Wait" on Comand and phone went into Sync mode. Almost immediately though I get on the phone "System Error" and just the option to press ok. I pressed ok and few seconds later the synchronization process ended, Remote SIM was activated again but phonebook was not loaded to COMAND. I repeated the same process over and over again, removed pairing and went over the whole pairing process from the beginning but still no luck. Unfortunately neither the phone or the COMAND would give any information on what the problem was.
    I checked for many hours on Nokia and Mercedes forums, on Google, etc. but still no luck. I found quite a few people facing the same problem mainly with N95 and E-series phones but no solution. Strange thing was that all were facing the problem from the very first time they tried to transfer their phone's contacts to COMAND while in my case in the past it was working and stopped working after upgrading my phones firmware.
    After hours of trial and error (removed recently installed phone applications, restored old phone backups, etc.) without luck I thought the problem would be the new firmware on my phone. But... I had no way to go back to the old firmware but even if I had I would cause the same issues that the new firmware solved again (so "rolling back" the firmware was not a real option). So I started going through every possible "core" phone setting that could have changed with the firmware upgrade to see what could be wrong and voila: if you go to the Connect->Sync menu on your phone you will see there a sync profile called PC Suite. Select it, click Options, Edit Profile and then, Connection. You will see that one option is Server Version. If selected Server Version is 1.2 underneath there is another option called Server ID. These two (Server Version and Server ID) are what cause the problem. You have the option to edit the PC Suite profile and set Server Version to 1.1 (then Server ID option disappears) and synchronization with COMAND will work. But as you might have side effects with PC Suite in this way, the ideal thing to do is to create a new sync profile, copy the settings from the PC Suite profile (you are prompted for this) and then, go and change this new profile so that Server version is 1.1. That was it (at least in my case) and I hope this will be helpful for others too. I also had Mail For Exchange installed on my mobile and removed it but I don't think this was the issue (will actually re-install MfE on my mobile now).
    Obviously, this Server Version 1.2 option did not exist on the old firmware of my phone so there was nothing to configure and all was working ok seamlessly but when it came out and set as the default by Nokia caused the incompatibility with Mercedes COMAND.
    Good Luck!

    Thanks for a thorough description of your problem and devised solution.
    I was getting very happy with your description of facts, for I recognized them all. However, in my case your solution did not work: I did change back to Server Version 1.1 of the synchronization profile and still get the "System Error" message.
    I have no doubts whatsoever that this happened with the 110.07.127 firmware upgrading.
    Do you have any other clue on how to proceed from here?
    JB

  • There is a problem communicating with the printer.

    I have a Lexmark Interpret S405. I am using a MBP laptop with WiFi, running 10.5.8. I have a cabled (non-wifi) Linsys router. I am using an Airport Express.
    I was finally able to get the WiFi light on the Lexmark to be static green after reinstalling the Lexmark WiFi setup and reconfiguring my Airport settings so that both the computer and printer see each other.
    In fact, I even updated the driver from Lexmark's Web site last night and I watched the WiFi light on the printer blink green indicating that the installation of the driver update was being communicated to the printer.
    However, when I print, it opens the print window and says first "Looking for S300-S400", then it says "Printer is now online". Then after about 10 seconds, I get this error: "There is a problem communicating with the printer. Make sure the printer is powered on and connected to the computer. Delete or hold the job and try again."
    I've exhausted Lexmark's technical databases and couldn't find the answer here.
    I've read that one possible solution was to delete all the printers from the "Print & Fax" system preferences window and re-add. That didn't work.
    Lexmark says for: The printer communicating on a network; however, the printer is not responsive. Possible causes could be:
    1. Your printer is associated with a network, router, or access point, but it is not your network.
    2. A software process is blocked by a system security firewall preventing network communication.
    3. You are logged into Virtual Private Network (VPN).
    4. You are connected to a network but have decided to switch to a USB connection.
    I don't have a VPN and have removed the USB cable, then restarted both printer and computer, and deleted printers in Sys Prefs, restarted, and still no solution.
    I can print directly via USB cable, but want to print wirelessly.
    Lexmark also says to enter my PIN (which I have pulled out from the print menu screen on the printer) in the System. That tells me a lot...
    Network settings on the print window on the printer also tell me Signal strength is 5 (excellent) and that I am on the network my airport is on.
    Message was edited by: Macman17

    I bet this is too late but...
    Are you trying to print through the airport express wirelessly or the built in wireless of the lexmark? If you want to use the airport express, there is no need to mess with the wireless printing on the lexmark at all. The airport express will be easy to set up, all the wireless setups through the printers are a pain.

  • How do I determine if the memory problems are with my imac and not the RAM?

    I've heard of some vague problems with intel imacs and their memory slots. I'm about to replace (for the 3rd time) RAM, and think I need to test further to see if the problem is with my imac and not the RAM. Right now I put back in the original 2-512 sticks that came with the imac, and the rember test is only showing 594mb (odd amt!) testing OK. But, in "about my mac" it will show as 1gb.
    Problems I've had with each set of RAM: occasional KP's, excessive spinning beachballs, sudden closing of apps (esp. if I have several apps running), won't fax usually (will hear a fax tone instead of a dial tone at the onset), disappearing documents section under my username.
    I bought this imac refurbed thru the apple store last fall: 2.16 C2D 20" imac
    Any ideas before I have to separate myself from my imac to send it in??

    Hi Toodles
    The pin strips on the new modules maybe a little thicker than your original modules, and it's going to take more force to seat them properly. If the new Memory Specifications are correct I would try them again. Slide them in untill they stop, then push real hard untill you feel them seat into place.
    I've never seen a report about an odd amount of ram shown. If reinstalling the ram modules does not solve your issue, and may be a indication that there is something wrong with one of the slots.
    Dennis
    17" iMac Intel Core Duo - 2GB Ram -   Mac OS X (10.4.10)   - Maxtor 300GB FireWire - Creative Inspire 2.1 - 2G Nano

  • I used migration to send photos form my Mac Book to my I Mac now i get an error message "iPhoto can not be opened because of a problem"  Check with the developer to make sure iPhoto works with this version of Max OSX.  You may need to install any availabl

    I used migration to send photos form my Mac Book to my I Mac now i get an error message "iPhoto can not be opened because of a problem"  Check with the developer to make sure iPhoto works with this version of Max OSX.  You may need to install any available updates or reinstall IPhoto.
    I tried installing Iphoto it said it was downloaded successfully. I still get the error messafe, and can not open any photos of program,  any suggestions?

    What version of iPhoto do you have on the Macbook and on the iMac? What systems are you running on the Macbook and on the iMac?
    Does the message only refer to "a problem" or does it specify what it is?
    Happy Holidays

Maybe you are looking for

  • Installation - Office Web Apps Server on SharePoint 2013 Foundation - Download missing

    Hi all, I'm trying to download Office Web Apps Server. As of November 24th, the download was relocated on the Volume Licencing Center (as per this link ). Connected to VLCS, I'm trying to find the download from the tree / using filter..... I'm not fi

  • PDF download in Safari

    Hi Whenever i click any pdf in safari it try to open in browser window, when size of pdf is high then it takes very long time. Is there any way to make a setting(enable/disable) to download always. Thanks

  • BDC Session ID from RFBIBL01

    Hi Experts, I have created a program to post the benefits and the claims in FI using the standard posting program RFBIBL01. The data comes from a file and accordingly gets formatted and the gets posted using the mentioned program. My requirement is t

  • Buying tv-shows and videos?

    I can't buy and download movies or tv-shows in iTunes. I live in Denmark and the shows I've planned to buy is already been broadcasted in Europe a long time ago. In iTunes there's no folder in the right side with either movies or tv-shows. I wasn't a

  • I need to reload Adobe Photoshop CS4 Extended.

    I have the key but not the original download. I have had a M/Board die & need to reload everything with a new OS. I do not have the download file saved.