Problems updating gui in JApplet

Hi,
I have a JApplet with a JPanel with another JPanel ? TreePanel ? containing a JScrollPane with a JTree.
When init() is run in MyApplet, treePanel is initiated with a JTree, with test data hardcoded in TreePanel?s constructor. I want the tree to change every time a thread loops, by calling method treePanel.updateResultTree(root) from the thread, with a new root. To test this, I have hardcoded a new tree content in the thread to pass to the TreePanel. In method updateResultTree(root), I remove the existing JTree from JScrollPane and add a new JTree to it, with the new root. Then I repaint the JScrollPane.
When I run the applet, the initial tree is displayed, but it is not updated with the new JTree for the first thread loop as expected. How is the gui in a JApplet refreshed/updated?? Will SwingWoker update the gui automatically without forcing repaint()?
Please help, I'm so stuck! Thanks in advance!
MyApplet
public class MyApplet extends JApplet {
   private TreePanel _treePanel;
   private UpdateHandler _updateHandler;
   private Thread _updateThread;
   public void init() {
      super.init();
      _treePanel = new TreePanel();
      // Updating thread
      _updateHandler = new UpdateHandler();
      _updateThread = new Thread(_updateHandler);
      _updateThread.start();
      // Initialize gui
      JPanel bigPanel = new JPanel();
      bigPanel.setLayout(new BoxLayout(bigPanel, BoxLayout.X_AXIS));          
      getContentPane().add(bigPanel, BorderLayout.CENTER);   
      _treePanel = new JPanel();
      bigPanels.add(_treePanel);
   // Updates the GUI every X seconds
   private class UpdateHandler implements Runnable {
      public final static int UPDATE_INTERVAL = 10;
      public UpdateHandler() { }
      public void run() {
         try {
            _displayResults();
         } catch (InterruptedException ie) {
   private synchronized void _ displayResults () throws InterruptedException {
      while(true) {
         // Resolve a new DefaultMutableTreeNode object as root to be updated in GUI
         // (For test)
         DefaultMutableTreeNode root = new DefaultMutableTreeNode(new Result("Root"));
         DefaultMutableTreeNode child_1 = new DefaultMutableTreeNode(new Result("Result X"));
         DefaultMutableTreeNode child_2 = new DefaultMutableTreeNode(new Result("Result Y"));
         DefaultMutableTreeNode child_11 = new DefaultMutableTreeNode(new Result("Result X1"));
         root.add(child_1);
         root.add(child_2);
         child_1.add(child_11);
         // Update the GUI 
         _treePanel.updateTree(root);
         wait(UPDATE_INTERVAL*1000);
}TreePanel
public class TreePanel extends JPanel {
   private JScrollPanel _treeSrcoll;
   private JTree _tree;
   TreePanel() {
      super();
      // Test tree, displayed in applet?s init()
      DefaultMutableTreeNode root = new DefaultMutableTreeNode (new Result("Root"));
      DefaultMutableTreeNode child_1 = new DefaultMutableTreeNode (new Result("Result 1"));
      DefaultMutableTreeNode child_2 = new DefaultMutableTreeNode (new Result("Result 2"));
      DefaultMutableTreeNode child_11 = new DefaultMutableTreeNode (new Result("Result 4"));
      DefaultMutableTreeNode child_12 = new DefaultMutableTreeNode (new Result("Result 5"));   
      root.add(child_1);
      root.add(child_2);
      child_1.add(child_11);
      child_1.add(child_12);
      _tree = new JTree(root);
      _treeScroll = new JScrollPane(_tree);
      add(_treeScroll, BorderLayout.CENTER);
   public void updateTree(DefaultMutableTreeNode  theRoot) {
      if (theRoot != null) {
         if (_tree!= null) {
            _treeScroll.remove(_tree);
         _ tree = new QCTree(root);     
         _treeScroll.add(_tree);
      } else {
         JLabel label = new JLabel("No result tree structure is available");
        _treeScroll.add(label);
     _treeScroll.repaint();
}Result
public class Result {
   private String _name; 
   public Result(String name) {
      _name = name;
   public String toString() {
      return _name;

I found the error:
I need to use
treeScroll.getViewPort().add(tree);
and
treeScroll.getViewPort().remove(tree);

Similar Messages

  • Problem update GUI

    My problem is that when i make a connection and try too update the GUI de gui does not update:
    My question is how can i update the GUI from a thread, the server starts in a thread and when a client connects a new thread is initiated.
    Please Help?
    Code Server:
    package src;
    import javax.swing.*;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.net.ServerSocket;
    import java.net.Socket;
    public class Server  {
       ServerSocket server = null;
       ComputerView computerview = new ComputerView();
        public void listenSocket(){
            try{
              server = new ServerSocket(4444);
            } catch (IOException e) {
              System.out.println("Could not listen on port 4444");
        while(true){
              Client w;
              try{
                w = new Client(server.accept(),computerview.getPanel());
                Thread t = new Thread(w);
                t.start();
              } catch (IOException e) {
                System.out.println("Accept failed: 4444");
    code Client:
    package src;
    import javax.swing.*;
    import java.net.Socket;
    import java.io.BufferedReader;
    import java.io.PrintWriter;
    import java.io.InputStreamReader;
    import java.io.IOException;
    import java.awt.*;
    class Client implements Runnable {
      private Socket client;
      computerIcon CI;
      JPanel paneel = new JPanel();
      ComputerView computerview = new ComputerView();
      boolean aap = true;
            BufferedReader in = null;
        PrintWriter out = null;
      Client(Socket client, JPanel panel) {
       this.client = client;
       paneel = panel;
      public void run() {
        try{
          in = new BufferedReader(new InputStreamReader(client.getInputStream()));
          out = new PrintWriter(client.getOutputStream(), true);
        } catch (IOException e) {
          System.out.println("in or out failed");
        String inputLine=null;
        out.println("Hello Client");
         while ( aap== true){
                try{
                 inputLine = in.readLine();
                }catch(Exception e){
                 System.out.println(e);
                String state = "WAITING";
                System.out.println(state);
                if(state.equals("WAITING")){
                    if (inputLine.equals("ID")){
                       System.out.println("Client :"+inputLine );
                          out.println("Who are you?");
                          state = "WAITINGFORID";
                          System.out.println(state);
                if(state.equals("WAITINGFORID")){
                    SwingUtilities.invokeLater(new Runnable() {
                    public void run(){
                    JOptionPane.showMessageDialog(paneel,"Verkeerd Inlognaam en/of Wachtwoord!");
                               setComputer("Izzy",new ComputerControl());
                               computerview.jLabel7.setText("Probleem");
                    out.println("You are now Registred!");
                       state = "WAITING";
                       System.out.println(state);
      public void setComputer(String nr, ComputerControl p0){
            CI = new computerIcon(nr);
            CI.getLabel().addMouseListener(p0);
            CI.getLabel().setVerticalAlignment(javax.swing.SwingConstants.TOP);
            System.out.println(CI.getLabel());
            paneel.add(CI.getLabel());
            paneel.setAlignmentX(JPanel.LEFT_ALIGNMENT);
            paneel.updateUI();
            System.out.println(paneel);
            paneel.validate();
    }

    My question is how can i update the GUI from a thread,Read: Threads and Swing

  • Problem with GUI in applet

    Hai to all,
    I am having a problem with GUI in applets
    My first class extends a JPanel named A_a
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    public class A_a extends JPanel
    JButton jb;
    JTextArea text;
    public A_a()
    setLayout(new FlowLayout());
    jb=new JButton("Click me");
    //add(jb);
    text=new JTextArea(5,20);
    add(text);
    public void text_appendText(String aa)
    System.out.println("I AM IN A_a");
    text.append(aa);
    text.revalidate();
    revalidate();
    /*public static void main(String ags[])
    A_a a = new A_a();
    JFrame frame=new JFrame();
    frame.getContentPane().add(a);
    frame.pack();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) { System.exit(0); }
    frame.setSize(200,200);
    frame.show();
    and then I am using other class B_b which is an applet carries a exitsing panel (A_a) inside it .
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class B_b extends JApplet
    public A_a a;
    public void init()
    a=new A_a();
    getContentPane().add(a);
    public void text_appendText(String aa)
    final String aaa =aa;
    new Thread(new Runnable()
    public void run()
    a=new A_a();
    a.setBackground(new java.awt.Color(255,200,200));
    System.out.println("I AM IN B_b");
    a.text.append(aaa);
    a.text.revalidate();
    getContentPane().remove(a);
    resize(500,500);
    }).start();
    and the I am using the second applet C_c in which by performing a button action the old panel A_a should get removed and replace the new panel D_a (which is not here )in the applet B_b with all other components(namely button , text fields etc)
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.*;
    public class C_c extends JApplet implements ActionListener
    JButton jbt;
    JTextArea jta;
    public void init()
    getContentPane().setLayout(new FlowLayout());
    jbt=new JButton("Click me");
    jbt.addActionListener(this);
    getContentPane().add(jbt);
    jta=new JTextArea(5,20);
    getContentPane().add(jta);
    public void actionPerformed(ActionEvent ae)
    Enumeration e = getAppletContext().getApplets();
    Applet applets = null;
    while(e.hasMoreElements())
    applets=(Applet)e.nextElement();
    if ( applets instanceof B_b)
    System.out.println("I AM CLASS C_c");
    ((B_b)applets).text_appendText(jta.getText());
    ((B_b)applets).remove());
    ((B_b)applets).getContentPane().add(D_d);
    both the applets C_c and B_b are in same browser page
    How can i achive that pls help .

    Just to make the code readable...
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    public class A_a extends JPanel
    JButton jb;
    JTextArea text;
    public A_a()
    setLayout(new FlowLayout());
    jb=new JButton("Click me");
    //add(jb);
    text=new JTextArea(5,20);
    add(text);
    public void text_appendText(String aa)
    System.out.println("I AM IN A_a");
    text.append(aa);
    text.revalidate();
    revalidate();
    /*public static void main(String ags[])
    A_a a = new A_a();
    JFrame frame=new JFrame();
    frame.getContentPane().add(a);
    frame.pack();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) { System.exit(0); }
    frame.setSize(200,200);
    frame.show();
    }and then I am using other class B_b which is an applet carries a exitsing panel (A_a) inside it .
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class B_b extends JApplet
    public A_a a;
    public void init()
    a=new A_a();
    getContentPane().add(a);
    public void text_appendText(String aa)
    final String aaa =aa;
    new Thread(new Runnable()
    public void run()
    a=new A_a();
    a.setBackground(new java.awt.Color(255,200,200));
    System.out.println("I AM IN B_b");
    a.text.append(aaa);
    a.text.revalidate();
    getContentPane().remove(a);
    resize(500,500);
    }).start();
    }and the I am using the second applet C_c in which by performing a button action the old panel A_a should get removed and replace the new panel D_a (which is not here )in the applet B_b with all other components(namely button , text fields etc)
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.*;
    public class C_c extends JApplet implements ActionListener
    JButton jbt;
    JTextArea jta;
    public void init()
    getContentPane().setLayout(new FlowLayout());
    jbt=new JButton("Click me");
    jbt.addActionListener(this);
    getContentPane().add(jbt);
    jta=new JTextArea(5,20);
    getContentPane().add(jta);
    public void actionPerformed(ActionEvent ae)
    Enumeration e = getAppletContext().getApplets();
    Applet applets = null;
    while(e.hasMoreElements())
    applets=(Applet)e.nextElement();
    if ( applets instanceof B_b)
    System.out.println("I AM CLASS C_c");
    ((B_b)applets).text_appendText(jta.getText());
    ((B_b)applets).remove());
    ((B_b)applets).getContentPane().add(D_d);
    }

  • (paid support) Pacman Update GUI

    Below the project description. If you are interested in doing this programming job, please email/pm me.
    If there are questions, please reply to this post.
    Pacman Update GUI
    Archlinux (http://www.archlinux.org/) uses the pacman package manager. A number of GUI applications to control this package manager exist (http://wiki.archlinux.org/index.php/Pac … _Frontends), but none suit our needs.
    For this project you will need to design and implement two independent GTK+ applications: an Update Manager and an Update Applet. The Update Manager must be an application that guides the user through updating the system. The Update Applet must be an application which shows a systray icon. This application will check for updates once in a while and notify the user if there are updates.
    Both applications must be internationalized/localized and written in C, C++ or Python. The applications should have as little dependencies as possible. The applications must include installation scripts. The applications must be installed in compiled form. Any configuration needed for these tools should be systemwide. We do not need a gui for configuration.
    Update Manager
    The Update Manager must be an application that guides the user through the steps of updating the system with as little effort and as little user interaction as possible. You are expected to first define the minimal amount of steps required, design the application and then implement the application (gui and internals).
    There are two possibilities for this applications:
    1. You develop it from scratch.
    2. You modify the gnome update manager (used in eg ubuntu) to work with pacman.
    We will rely on your expertise to decide which approach is best.
    Update Applet
    The Update Applet provides a systray icon which checks for system updates in regular intervals. The applet should have a tooltip showing the update status, and a context menu with a few options, such as "Check for updates now", "About" and "start Update Manager". You are expected to design and implement the application.

    I don't get why you should allow your users to update their OS(that is their GUI, their kernel, xorg, libc and other _core_ functionality). These components are already quite "great" and shouldn't need upgrading if that is your worry. Only in the case of some new device coming out and the kernel or xorg need to support it i can see the problem. This should happen very rarely though. I mean, why should you allow your OS to be upgraded by some lowly non-tech users. I don't know of many workplaces which allow their users to upgrade their windows versions for example...
    You could always upgrade the OS every X years if needed.
    If the boss wants his emplyees to be able to download whichever apps/games they want then ofcourse you could allow this, but this should only be allowed if said apps/games doesn't drag in new versions of xorg, kernel versions or other core functionality or its dependencies.
    Just blacklist these in pacman.conf and make the file unwritable for the users...
    This way you only need external repo for apps which doesn't install without user intervention.
    Here i define "core functionality" as all the code responsible for giving a "working computer" as defined by the boss and you if he's not very IT. If you are worried about security and this is why you want a constantly updating machine then just connect all the machines to a router/firewall before they are allowed onto the net. That one could be an arch machine...
    Also I haven't tried xfce in a long while but you should watch against giving "windows users/mac users" anything which isn't glitzy and full-featured, because if the users doesn't think the OS have all the functionality they "need" and they don't think it looks fancy enough they have a tendency to go back to whatever OS they came from or try to "upgrade" their own os... which might spell problems for you.
    You know, never underestimate the ingeniousness of an idiot.
    Just my 5 cents.
    Last edited by test1000 (2010-06-25 00:13:42)

  • There was a problem updating InDesign CC For more information see the specific error below.  Update Failed Download error.  Press Retry to try again or contact customer support.(49)

    Posted the entire text from the error window, when trying to update, using the normal NON-TECHIE way to update any and all Adobe CC products, via the Creative Cloud updater installed when Adobe Creative Cloud subscription was purchased when first offered.
    The following occurs, ad nauseam:
    There was a problem updating InDesign CC
    For more information see the specific error below.
    Update Failed
    Download error.  Press Retry to try again or contact customer support.(49)
    Here's the crux of my frustration:
    (1) Customer Service is NOT contact-able, to receive LIVE help.
    (2) There is NO way for me to mitigate this "Download error", being a student learning InDesign, and NOT in any way capable of tweaking folders/files here and there.
    Therefore, the real question:
    Given that a significant number of subscribers are having the above referenced issue with attempting to download the current update for InDesign, WHAT ARE WE SUPPOSED TO DO, in order to get our contractually paid-for updates to our legally and contractually paid-for Adobe software, specifically in my case, InDesgin's current update?
    Please, NO TECHNICAL mumbo-jumbo which most likely will cause the overwhelming majority of users, like me, to seriously corrupt their computer files, but rather an honest, straightforward "what to do" from real CS/Engineers working for Adobe, as to how to FIX this issue, period.
    ===========================================================
    UPDATE:
    Here is a way in which I think I was able to "update" my InDesign CC application:
    (1) Sign-In to your Adobe Account
    https://www.adobe.com/
    (2) Click on the MENU icon
    (3) Click on the product InDesign icon
    Your browser should display the page for Adobe InDesign CC
    https://www.adobe.com/products/indesign.html?promoid=KLXLU
    (4) Click on the Download icon,
    Your browser should now display the page to download InDesign,
    https://creative.adobe.com/products/download/indesign
    (5) a Pop-Up window should open, and display:
      Launch Application
      This link needs to be opened with an application.
    with the first option to select being the CreativeCloud(URIHandler)
    (5) Select this application and click OK.
    What happened when I followed steps (1) thorugh (5) is that:
    (a) InDesign CC(2014) was installed,
    (b) InDesign CC, updated, and then
    (c) InDesign CC(2014), also updated.
    Why this all worked, is a mystery to me.
    Looks like a separate, "new" version of InDesign, InDesign CC(2014), was installed, the existing "old" InDesign was updated, and then the newly installed Indesign CC(2014) was further updated.
    A BIT MORE, when I launched my InDesign CC app, and checked to see if there were Updates Available, there in fact was an Adobe InDesign CC 64 bit (9.2.2) update.
    I clicked on UPDATE and my "old" InDesign CC app was "successfully updated."
    FURTHER INFO:  I may have neglected to list some important info ... OS:  Windows 8.1 Pro with Media Center, 64-bit
    Confused, I am able to launch BOTH of these apps, and hopefully I may use one of these versions of the InDesign CC app, to do some InDesign work.
    Will keep y'all posted!
    Message was edited by: Richard Yapkowitz, about an hour after I first posted this issue.

    Jackdan error 49 indicates the installer was unable to access a critical file or directory.  You can find additional details at Error downloading Creative Cloud applications - http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html.

  • Problem updating to iphoto 9.6 after upgrading to Yoesmite  I am getting the following message when I try top date iPhoto This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or canc

    problem updating to iphoto 9.6 after upgrading to Yoesmite  I am getting the following message when I try top date iPhoto This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or canc

    "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or cancelled." ?
    This error message will appear erraneously, if you skipped the update to Mavericks and iPhoto 9.5.1 and went straight from an earlier MacOS X version to Yosemite, without first updating to iPhoto 9.5.1 and associating iPhoto to your AppleID.
    Try first to buy iPhoto with your AppleID instead of updating. Delete iPhoto from Applications, but don't empty the Trash, then go to the main page of the App Store and search for iPhoto. If you are lucky, it will show as free and you can buy it directly.
    If iPhoto  is not showing as free, there is no help but contacting the App Store Support: Ask for a redemption code. You will need to provide a prove of purchase for your mac with iPhoto preinstalled.
    http://www.apple.com/support/mac/app-store/contact/

  • HT201413 I am having a problem updating itunes to the latest version on my windows xp i get the error message 126 and the sign that says this application has failed because MSVCR80.dll was not found.

    I am having a problem updating itunes to the latest version on my windows xp i get the error message 126 and the banner that says this application has failed because MSVCR80.dll was not found. anyone have a fix suggestion? thanks

    Click here and follow the instructions.
    (98724)

  • HI there, am having a big problem updating mu iphone due to me forgetting my password, can you tell me how to retrieve it. It seems like i have one apple id for downloads  and a different one for updates. Can you help ps.?

    Hi There
    Am having a big problem updating my iphone 4 Apps, due to a problem with my password for my apple id. But it seems that i have two different ids, one for the updates and another for the downloads. I am not able to retrieve my Id password for updating my Apps. Can you help me ps?
    Thank you

    What program did you use to fix the internal hard drive? What repairs did it report making? More crucially, if repairs were reported, did you re-run the utility until it reported no problems found? It's possible for one set of problems with a drive to mask others.
    If you have about 5GB or so free space on the internal hard drive, you can use your OS X Install disc to perform an Archive and Install to recover from the failed Software Update. When the computer restarts, download and run the OS X Update Combo 10.4.11 (Universal). When the Mac restarts after that, run Software Update. During all this, make sure nothing interrupts or shuts down the Mac! Note that the first start after each of these updates will take significantly longer than subsequent starts, so be very patient.
    How did you back up your internal drive to the external one? Did you just drag things over in the Finder, or did you use a utility such as SuperDuper! or CarbonCopyCloner? Does the external HD show up as a bootable volume in System Preferences > Startup Disk, or using Startup Manager?

  • BRFplus: Problem updating values in an internal table in a loop expression

    Hi
    I'm looking into the loop expression type of BRFplus and I have come across a problem updating an internal table, I'm trying to create and populate the table using a loop, here is the functionality I'm trying to achieve:
    In a rule set create an internal MONTH_TBL table containing 12 rows of two columns: MONTH_NUM containing values 1 through 12 and MONTH_VAL containing an amount (initially 0,00 EUR in all 12 rows).
    After initializing the table traverse through SFLIGHT table and for each row add PRICE from the table to MONTH_VAL in the row of MONTH_TBL corresponding to the month of FLDATE field in SFLIGHT.
    The initialization of MONTH_TBL works as intended, as does the traversal of and retrieval of values from SFLIGHT. The problem however is the update of the internal table MONTH_TBL (defined as result data object for the function). I don't get an error, but the tables does not get updated, and I cannot seem to find out what the problem is. I would have attached an XML extract of the function + ruleset for information, but it dosen't seem like that is possible, I could e-mail it on request (for SAP employees with access to system QU5 the function is LOOP_TEST in application Z_KLAUS_TEST).
    I hope that this is sufficient information to understand the issue that I'm dealing with.
    best regards
    Klaus Stenbæk, KMD

    Hi Klaus,
    The Loop expression is part of NW 7.02 which is not yet released. When you experience the problem as part of a test you should have a contact at SAP for dealing with problems/errors. Usually SAP-internal messages are used for this purpose. Please clarify with your SAP contact how the model is.
    BR,
    Carsten

  • Problems updating ipod touch 3g to os 5

    Hi... I am very excited to see what all the buzz is about for the new OS 5.x for use on my ipod touch 3g but im having problems updating my device.  my itunes has been updated to 10.5 and i have conected my touch to my computer and clicked on update.  but all that comes back is that it is updated to the newest version which it states 4.2.1 .... but i dont see any of the new stuff that is supposed to be with os 5    i have erased and put my touch back to default settings and it still does the same thing.  i erased using itunes when connected by the cord and i have tried using the reset feature on the touch itself w/o the cable.  if anyone has some advice for me it would be greatly appreciated !!

    heather from gravenhurst wrote:
    it is an 8g & ive talked to the itunes support team and they say that it is indeed a 3g
    Not true.  Apple did not make an 8GB ipod touhc 3rd gen at all.  They do not exist.
    You can see for yourself:
    Identifying iPod models

  • Problem updating Nokia N97 firmware over the arir ...

    OK here goes,
    I'm having some real problems updating the firmware on my white nokia N97
    I recently bought it of the web as a 12 month contract onto t-mobile (not there website though) in th uk
    After noticing some problems i googled and noticed a firmware update had been released on 1st july 2009
    I tried to get the firmwae over the air (OTA) via typing in *#0000# and selecting check for updates. I get no updates available for nokia and t-mobile (unsure what the difference is?)
    So i heard try using nokia software updater.
    i downloaded latest version 1.6.13 and installed it on a windows vista 32-bit home premium laptop ok
    i have also installed all of the stuff that came with the cd with the phone (ovistore etc )
    when i plug the phone into the laptop i get four options (PC, media, usb and something else) first time it ran it installed the necessary drivers and so therefore when i now plug it it just connects as expected.
    so the laptop is detecting the nokia n97 at this stage
    when i then load nokia software updater click next i put the phone into general mode on full charge with a sim card in it and click next again to detect the phone is pc suite mode
    after about 2 minutes it says it can detect the phone although i can go to my computer and traverse the folder view!
    i can even set it off looking for the phone pluggin it in and the autoplay options of vista will kick in in the background detecting the phone (ie outisde scope of nokia software updater)
    i have tried all different connections mode pc suite mode etc different profiles nothing. tried it onto different pcs with different windows version on it. tried reinstalling software updater
    my software version is 10.0.012 and my product code is 0587240
    interestingly when i goto the can i update on nokias website it says no i have the latest version when i supply this information. weird
    im kinda in catch 22 because there is a bug with pc usb detection of the phone in version 10 but i cant update to version 11 because of this bug
    its driving me nuts any help greatly appreciated
    thanks in advance
    Cheers
    kyle

    kyletindle wrote:
    i did a hard reset using *#7370# and locking code 12345 and the phone did reset but software updater does still not recognise the phone whilst ovi suite does and nokia sync etc
    to make matters worse it has broke my facebook app error: undefined
    mega
    just what i wanted cheers nokia
    It will break your facebook as you have re-formatted the C: drive of you phone. Was you facebook installed to the E: drive by any chance?
    Go to OVI Store and re-install it. 
    It may be work installing it from OVI Store then un-installing that one to clean off the mess you have been left with post formatt and then re-installing it fresh from OVI Store.
    As I always say. Before doing a re-format always  uninstall all apps/widgests before doing a hard reset or factory reset.
    I also do a this and a factory reset before firmware updates to clean my phone. Should really do a hard reset/format as this would be cleaner still, but tehn I would have to do a lot more set-up afterwards.
    N97 (Product Code: 0585262 (Voda UK)) FW 12.0.026
    95 8Gb (Product Code: 0558787 (UK)) FW 31.0.018
    If a post by a user has been helpful, please click on the Kudos! button.

  • I have problems updating my app in the appstore. How should i update using itunes? Currently, i'm unable to use all of my apps.

    I have problems updating my apps in appstore for my IPad. How should i update it using itunes? I'm unable to see all the apps currently.

    Hallo. If all of your apps purchases from the same Apple ID, you can try to update them on iTunes, ways as below:
    iTunes 12 for Windows: Download previous purchases from the iTunes Store
    iTunes 12 for Mac: Download previous purchases from the iTunes Store
    Regards,
    Anson

  • I am having problems updating my itunes to the latest version, on each stage I am getting a message 'The feature you are trying to use in on a network resource that is unavailable.'  I try to click OK it fails and I do not know an alternate path to select

    I am having problems updating my itunes to the latest version, on each stage I am getting a message 'The feature you are trying to use in on a network resource that is unavailable.'  I try to click OK it fails and I do not know an alternate path to select, please help?
    I get message like below on each stage of the update, Quicktime, Safari & iTunes;
    It's so annoying as until I update my iTunes account my phone won't sync.

    Many thanks for the screenshot. (The key to these is knowing which particular .msi file is being mentioned by the message.)
    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any Bonjour entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?
    (Assuming that the QuickTime and Safari messages were also citing bonjour64.msi, you should also then be good to go with those installs too.)

  • Problem Updating iPod software on iTunes

    I am having problems updating my iPod software through iTunes. As soon as it gets to the end of the download, an error message comes up (-48, I think) that states there was an error in downloading the update. It suggests to check my internet connection or try again later. It happens everytime. I have a very stable internet connection and my iTunes software is version 7.1.1.5
    Please help me! Thank you.

    See if placing the iPod in Recovery mode will allow a restore via iTunes
    Next try DFU mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    You can also try another computer to help determine if you have a computer or iPod problem.

  • Problem updating IDS signatures

    I have a IDS-4215 sensor with version 5.1(5)E1S333V1.2
    I tried several times updating signatures with next version on it but it doesnot get updated and only the local MC gets upgraded. I have other IDS sensors also but I dont have any problem updating signatures with them.
    Why are the signatures not getting updated on this Sensor.
    Help me with a solution. All helpful posts will be rated.

    Did you try applying S355 directly to the sensor using the CLI or IDM rather than the MC?
    Sometimes you don't get good error messages when trying to apply through the MC.
    If you apply through CLI or IDM did you get any messages back from the sensor?
    Did you get a success messgae? If doing it from the CLI did it come back to a CLI prompt?
    If no error messages come back when trying the upgrade, then it will require looking at a "show tech" from your sensor to try and see what is going on.
    You would not want to copy that output to this forum, so your best bet would be to open up a TAC case and provide them the output from when you tried applying the update through the CLI or IDM, as well as the output from the "show tech" taken immediately after the failed upgrade attempt.
    I am not currently aware of any situation where the upgrade would fail without some type of error message being returned.
    Here, however, are some common errors that should return an error message (I don't remember the exact wording of the error messages):
    1) sensorApp/analysis engine is Not Running
    (you can check "show version" before doing the upgrade to make sure it is Running).
    2) sensorApp/analysis engine is not responding (you can do a "show stat vi" before trying the upgrade to ensure it is responding to statistic requests before trying the upgrade)
    3) license has expired (you can do a "show ver" and make sure the license has not expired)
    4) Signature Update already installed - This is a tricky one. This can happen when a previous attempt to update at that same signature level failed, but left some remnants around. The second attempt to install the same update detects the remains of the previous failure and incorrectly thinks that the update is already installed. There are 2 ways to recover from this. Save off the config, and do a recover-application command to re-image the sensor, then re-apply the config. Or wait till the next signature update S356 comes out and try it with the newer sig update. I haven't seen this problem in a long time, and I am not sure if it can happen anymore. Steps were taken to try and prevent this from happening.
    5) sensorApp/analysis engine could stop During the signature update - This can happen on lower end sensors like the IDS-4215 especially when tunings have been made to the signatures or custom signatures have been created. The low end sensors have limited memory. When a new signature update is applied the sensor has to compile the new signatures. If using the standard set of signatures with no user tunings, then the signature update should apply fine. But if the customer has made tunings and/or added custom signatures, then this compiling of the new signatures could push the sensor above it's allowed memory limits. The kernel will then kill sensorApp/analysis engine. The signature update will never complete (never get an error OR a success message). And the sensor has to be rebooted to get it working again. If you are running into this issue you might need to remove some of your tunings and custom signatures, apply the signature update, and then re-apply your tunings.

Maybe you are looking for

  • How do you convert Smart Forms to Interactive forms

    I believe it is possible to convert SAP Smart Forms to Interactive Forms. Has anyone done this? If so could you tell me the steps? Thanks Patrick

  • Restricting FXS ports to internal calls only

    Hi, I have recently intalled Call Manager 8.5.1 with a H323 Gateway. On the gateway, I have a number of FXS ports for lobby phones. Is there a way I can restrict these phones to allow only internal calls only? Do I need to use COR lists like in Call

  • Question about classpath

    After I set the classpath, I can run the program with importing the packages from other folder. However, when I run the applet with importing the packages from other folder, the errors occur and state that the class file is not found in the directory

  • Extracting part of string - advice

    Hi Using oracle 11.2.0.3 and looking at somebody else's code Folling sql SELECT cd_customer_num,cd_postcode,rtrim(substr(CD_POSTCODE, instr(CD_POSTCODE, ' ') + 1), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ') postcode_inner from customer_details_stg2 where length(c

  • TS1702 iPad iTunes and app store closes

    I have a iPad 1 and iTunes and app store closes after 5 min of use. Have closed all apps. Powered off and performed reset updates are current . Need help please