JTextPane inside JScrollPane resizing when updated

Hiya all,
I've been struggling with this problem and checking the forums, but didn't find a solution, so I hope someone can help...at least help me for the nice picture :) It has to do with JTextPane's automatically resizing to their content on a GUI update, rather than scrollbars appearing (the desired result).
Basically, I have a scenario where I am creating a series of multiple choice answers for a question. Each answer consists of a JTextPane inside a JScrollPane, and a JRadioButton, which are all contained in a JPanel (called singleAnswerPanel). So for 2 answers, I would have 2 of these singleAnswerPanels. There is a one large JPanel that contains all the singleAnswerPanels (called allAnswersPanel). This allAnswersPanel is contained in a JScrollPane. Graphically, this looks like:
   |       JPanel (allAnswersPanel) inside a JScrollPane            |
   |                                                                |
   |  ------------------------------------------------------------  |
   | |     JPanel (singleAnswerPanel)                             | |
   | |    ----------------------------------                      | |
   | |   |  JTextPane inside a JScrollPane  |     * JRadioButton  | |
   | |    ----------------------------------                      | |
   | |                                                            | |
   |  ------------------------------------------------------------  |
   |                                                                |
   |                                                                |
   |  ------------------------------------------------------------  |
   | |     JPanel (singleAnswerPanel)                             | |
   | |    ----------------------------------                      | |
   | |   |  JTextPane inside a JScrollPane  |     * JRadioButton  | |
   | |    ----------------------------------                      | |
   | |                                                            | |
   |  ------------------------------------------------------------  |
   |                                                                |
    ----------------------------------------------------------------So above, I show 2 answers that can be filled in with text. So assuming both answer JTextPanes are filled with text beyond their current border (scrollbars appear as expected) and the user wishes to add more answers. I have a button to add another singleAnswerPanel to the containing JPanel (allAnswersPanel), and then I validate the main JScrollPane that contains the allAnswersPanel as it's view. The problem that occurs is the existing single answer JTextPanes resize to the size of their text and the vertical scrollbars (only vertical ones setup) of the JTextPanes dissappear! My intent is to keep the existing JScrollPanes the same size (with their scrollbars) when a new answer is added.
The code snippet below shows what gets done when a new answer is added:
private void createAnswer()
    // The panel that will hold the new single answer JTextPane pane
    // (inside a JScrollPane) and radio button.
    JPanel singleAnswerPanel = new JPanel();
    // Create the text pane for the single answer.
    JTextPane singleAnswerTextPane = new JTextPane();
    Dimension dimensions = new Dimension(200, 30);
    singleAnswerTextPane.setPreferredSize(dimensions);
    singleAnswerTextPane.setMaximumSize(dimensions);
    // Create a scroll pane and add the single answer text pane.
    JScrollPane singleAnswerScrollPane =
     new JScrollPane(singleAnswerTextPane);
    // Create a radio button that is associated with the single
    // answer text pane above.
    JRadioButton singleAnswerRadioButton = new JRadioButton();
    // Add the scroll pane and radio button to the panel (for a single
    // answer).
    singleAnswerPanel.add(singleAnswerScrollPane);
    singleAnswerPanel.add(singleAnswerRadioButton);
    // Add the panel holding a single answer to the panel holding
    // all the answers.
    m_allAnswersPanel.add(singleAnswerPanel);
    // Update the display.  m_allAnswersScrollPane is a JScrollPane
    // that has the m_allAnswersPanel (JPanel) as its view.
    m_allAnswersScrollPane.validate();
}     Sorry for the length of the message, but I really want to solve this problem. So again, when updating the JScrollPane with validate(), the JTextPane for a single answer resizes to it's contents (plain text currently) and loses it's vertical scrollbars, but I want it to stay the same size and maintain the scrollbars.
Thanks!

http://java.sun.com/docs/books/tutorial/uiswing/mini/layout.htmlimport javax.swing.*;
import javax.swing.event.*;
import javax.swing.table.*;
import java.awt.*;
import java.awt.event.*;
import java.util.Random;
public class Test extends JFrame {
    int cnt=0;
    Random r = new Random();
    String[] nouns = {"air","water","men","idjits"};
    JPanel mainPanel = new JPanel(new GridBagLayout());
    JScrollPane mainScroll = new JScrollPane(mainPanel);
    JScrollBar mainScrollBar = mainScroll.getVerticalScrollBar();
    public Test() {
     setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
     Container content = getContentPane();
     content.add(new JLabel("QuizMaster 2003"), BorderLayout.NORTH);
     content.add(mainScroll, BorderLayout.CENTER);
     JButton jb = new JButton("New");
     content.add(jb, BorderLayout.SOUTH);
     jb.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent ae) {
          JPanel questionPanel = new JPanel(new GridBagLayout());
          questionPanel.add(new JLabel("Question "+cnt++),
               new GridBagConstraints(0,0,1,1,0.0,0.0,
                    GridBagConstraints.EAST, GridBagConstraints.NONE,
                    new Insets(1,2,1,2),0,0));
          questionPanel.add(new JLabel("Why is there "+
                        nouns[r.nextInt(nouns.length)]+"?"),
               new GridBagConstraints(1,0,1,1,0.0,0.0,
                    GridBagConstraints.EAST, GridBagConstraints.NONE,
                    new Insets(1,2,1,2),0,0));
          JTextArea jta = new JTextArea();
          JScrollPane jsp = new JScrollPane(jta);
          jsp.setPreferredSize(new Dimension(300,50));
          questionPanel.add(jsp, new GridBagConstraints(0,1,2,1,0.0,0.0,
                    GridBagConstraints.EAST, GridBagConstraints.BOTH,
                    new Insets(1,2,1,2),0,0));
          mainPanel.add(questionPanel, new GridBagConstraints(0,cnt,1,1,0.0,0.0,
                        GridBagConstraints.EAST,GridBagConstraints.NONE,
                        new Insets(0,0,0,0),0,0));
          mainPanel.revalidate();
          mainScroll.getViewport().setViewPosition(new Point(0, mainPanel.getHeight()));
     setSize(400,300);
     show();
    public static void main( String args[] ) { new Test(); }
}

Similar Messages

  • Trouble Scrolling down(JTextPane inside JScrollPane)

    I am writting a java interface to the Jabber IM system. I'm trying to allow html in the messages, so I have a JTextPane that I use to show what has been said. In order to scroll, I've placed the JTextPane within a JScrollPane. When a new message needs to be placed into the JTextPane, I set the JTextPane to the proper text and set the scroll bar from the scroll pane to it's .getMaximum() value. My problem is that the .getMaximum() function only gets the NEW, ACTUAL maximum AFTER the JTextPane has been parsed and painted into the JPanel. The time it takes to do this is proportional to the length of the text within the JText pane and relative to the speed of the computer. So, the scroll bars should be done in response to the completion of the painting of the JTextPane instead of a set time delay. I don't know how to do this. I assume I need to overwrite some paint or repaint function, but I don't know which one to overwrite. The JTextPane is in a JScrollPane in a JSplitPane in a JPanel in a JFrame, if that helps at all.
    I've been stuck on this forever..
    Thanks for any help.

    Gave you 6 $. JTextPane doesn't have the insert function, so I've been using setText(). The problem is that the second the Pane is redrawn, it shows the top of the document, then scrolls to the bottom. This takes a fraction of a second, but still is undesireable.
    What I'm trying to do is make a new textpane object, set the text, set the caret position, THEN replace the old pane. The problem is, I can't just use oldPane = newPane because that just makes oldPane reference the new Object.(The object shown is then only referenced from the parent swing component, a JScrollPane) I've tried using the .setViewportView on the JScrollPane that the JTextPane is within, but then it doesn't scroll to the caret position.
    I've gotten it to work once. I had created all new objects(JTextPane within JScrollPane within JSplitPane within JPanel) adding each to it's parent and adding the JPanel to the container. This worked ONCE! I changed the code, then changed it back and it didn't work again...
    Here's the code I have for buffering the JTextPane.
    if(chatPane == chatPaneBuffer2){
    chatPaneBuffer1.setText(chatStringBuffer.toString());
    chatPaneBuffer1.setCaretPosition(chatPaneBuffer1.getDocument().getLength());
    chatPane = chatPaneBuffer1;
    }else{
    chatPaneBuffer2.setText(chatStringBuffer.toString());
    chatPaneBuffer2.setCaretPosition(chatPaneBuffer2.getDocument().getLength());
    chatPane = chatPaneBuffer2;
    This works, but somehow I need the object chatPane is pointing at to be referenced by my JScrollPane.

  • JTextPane inside JScrollPane

    Hi,
    I've seen a lot of possibilities to get a JTextPane into JScrollPane without wraping the text in the forum. None worked for me..
    My situation:
    JTextPane(editable=false) with given text(DefaultStyledDocument) is inside JScrollPane.
    I replace (by pressing a button) some text parts with longer text AND JTextPane wraps it!..
    I tried to set the size of the textPane to the computed line width of the longst line, but nothing happened.. (I expected the JScrollPane to show off horizontal scrollbar, because the width of JTextPane is getting bigger than the width of JScrollPane).
    Anyone knows how to put formatted text into text- or scrollpane without wraping it?
    And who allowed JTextPane to wrap my lines anyway?!
    (it's called StyledDocument and not ChaosDocument :)
    Thanks in advance!
    Raman.

    Not sure that JTextPane is the best place to start. The wrapping is controlled by ParagraphView and its underlying structure. Try looking at implementing extensions to the standard EditorKit/ViewFactory to tweak this behaviour

  • PS CS3 - Smart Objects resizing when updating resolution! Help!?

    My company has built many multi-layered files using Smart Objects in CS2. When in the past we have made resolution changes to the smart objects and updated them in the parent file, they have stayed at the same size, with only the resolution changing.
    Now, when opening in CS3 and performing the same action, the Smart Objects now re-size to match the parent file's resolution and the height and width changes!
    Has anyone else experienced this?
    It is quite disturbing that this feature has changes since we have come to rely on it in CS2.

    Yes I've tested this in both CS3 and CS4 - you are right, the problem you describe happens in both. Your problem was very well described.
    Duplicating linked layers has always been a little odd in the way it behaves (ever since grouping and nested grouping was introduced) - it seems to be that it can't hold complex linked relationships when duplicating the layers.
    No solution at present I'm afraid

  • JscrollPane, Resize when InternalFrame maximize

    Hello all. I have 4 Internal Frames that contain 1 Jtable´s each, and all JTable´s has a JscrollPane. I have the four Internal frames added to a JFrame using GridLayout.. I add code below thats important.
    // Create an Desktop For That All Four I-Frame Use
    JDesktopPane forInternalFrameDesktop = new JDesktopPane();
    // Create an Internal Frame For CustomTable.
    JInternalFrame customerFrame = new JInternalFrame("Add Customer To Order",true,false,true,true);
    // Create Table For Customer InternalFrame.
    customerModel = new DefaultTableModel(customerRow,customerCol);
    customerTable = new JTable(customerModel)
    customerTable.setOpaque(true);
    // Create an ScrollPane for customerTable. 
    JScrollPane scroll = new JScrollPane(customerTable);
    scroll.set //  ? What will i put here
    // Set Size for customFrame
    customerFrame.setBounds(0, 0, 500,210);
    // Add customFrame to the Desktop.
    forInternalFrameDesktop.add(customerFrame);
    customerFrame.setVisible(true);
    // This is in MainFrame. an Normal JFrame that uses GridLayout To Lay out my Four I-Frames.
    GridLayout MstLayout = new GridLayout(0,2);
    mstFrame.setLayout(MstLayout);
    mstFrame.add(customerIFrame());
    mstFrame.add(productInternalFrame());
    mstFrame.add(orderReadyInternalFrame());
    mstFrame.add(orderDoneInternalFrame());When i maximize any of the four I-Frames, or the main frame i want the ScrollPane to follow. I know there is 1 row command to do that, had it before, but have forgott it. Anyone that has better memory then me?

    I use one
    JDesktopPane forInternalFrameDesktop = new JDesktopPane();I use four.
    private JInternalFrame orderDoneInternalFrame() {
            JInternalFrame orderDone = new JInternalFrame("Order Ready to Send",true,false,true,true);
            JPanel panel = new JPanel();
            orderDoneCol.addElement("Customer ID");
            orderDoneCol.addElement("Product Id");
            orderDoneCol.addElement("Quantity");
            orderDoneModel = new DefaultTableModel(orderDoneRow,orderDoneCol);
            orderDoneTable = new JTable(orderDoneModel);
            orderDoneTable.getTableHeader().setReorderingAllowed(false);
            JScrollPane scroll = new JScrollPane(orderDoneTable);
            orderDone.setBounds(510,320, 500,300);
            orderDone.add(panel);
            panel.add(scroll);
            forInternalFrameDesktop.add(orderDone);
            orderDone.pack();
            orderDone.setVisible(true);
            return orderDone;
        }And one mainFrame holding it all.
    public JFrame productFrame() {
            JFrame mstFrame = new JFrame();
            GridLayout MstLayout = new GridLayout(0,2);
            mstFrame.setLayout(MstLayout);
            mstFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            mstFrame.setSize(1000,700);
            mstFrame.setJMenuBar(openMenu());
            mstFrame.add(customerInternalFrame());
            mstFrame.add(productInternalFrame());
            mstFrame.add(orderReadyInternalFrame());
            mstFrame.add(orderDoneInternalFrame());
            mstFrame.pack();
            mstFrame.setVisible(true);
            return mstFrame;
    }Does this make sence to you? Is this the wrong way to handle InternalFrames?

  • JScrollPane freezes when updating JTable in viewport

    I have the same problem that is described in this bug:
    http://developer.java.sun.com/developer/bugParade/bugs/4495213.html
    I don't understand the workaround. Is that the developer's class (BasicTableUI.java)? Anyone else experiencing this problem? How long does it generally take for these bugs to be fixed?
    Thanks.

    BasicTableUI is one of the JDK's classes:
    javax.swing.plaf.basic.BasicTableUI
    They are suggesting altering the source code for that class and replacing the class in your JVMs standard rt.jar with the modified class.

  • JTextPane inside a JScrollPane: any way to display a certain section?

    I have a GUI with a JTextPane inside a JScrollPane.
    The text of the JTextPane is the contents of a text file, so it typically has many lines.
    I want the JScrollPane (whose preferred size has already been previously set to display 11 rows of text) to always show one target line as the middle row, and the 5 rows before and after it as the remaining 10 rows.
    In other words, I want to show a certain line and its surrounding context.
    Do you guys know how to achieve this? I have already tried calling
    JTextPane.setCaretPositionbut this is inadequate because it merely guarantees that the line with the caret is visible--but it does not guarantee to center the caret line in the middle of the JScrollPane.
    I also tried calling
    textPane.scrollRectToVisible( textPane.modelToView(caretPos) );where textPane is my JTextPane, but this failed completely (seems to always display the final lines of the file).
    Anyone have any suggestions?

    Daryl: thanks for your response.
    My original code looked like this:
    int caretPos = 0;
    for (int i = 0; i <= index; i++) {
         caretPos += lines.length();
    textPane.setCaretPosition(caretPos);
    With *just* the above, you get the behavior that I originally described, namely, the line in question (which is lines[index]) always gets displayed, but it is not necessarily in the middle of the JScrollPane.
    I tried commenting out the line above which calls setCaretPosition, and used essentially your code instead:Rectangle caretRectangle = textPane.modelToView(caretPos);
    Rectangle viewRectangle = new Rectangle(
         0, caretRectangle.y - (scrollPane.getHeight() - caretRectangle.height) / 2,
         scrollPane.getWidth(), scrollPane.getHeight()
    textPane.scrollRectToVisible(viewRectangle);This fails too: the JScrollPane now always shows the bottom of the JTextPane.
    What does work is to use *both* techniques, namely, call setCaretPosition as well as scrollRectToVisible:     // set the caret to the line in question (i.e. at index); this merely guarantees that this line is visible, but not necessarily centered
    int caretPos = 0;
    for (int i = 0; i <= index; i++) {
         caretPos += lines[i].length();
    textPane.setCaretPosition(caretPos);
         // and IN ADDITION cause scrollPane's viewport to be centered around the line
    Rectangle caretRectangle = textPane.modelToView(caretPos);
    Rectangle viewRectangle = new Rectangle(
         0, caretRectangle.y - (scrollPane.getHeight() - caretRectangle.height) / 2,
         scrollPane.getWidth(), scrollPane.getHeight()
    textPane.scrollRectToVisible(viewRectangle);The interesting question is why do you need to do both steps?
    I think that I know the reason, but I would love to see someone confirm or deny this.  What follows is my speculation.
    The above code is inside a method that is call by a run method of the class in question which is always executed by the event dispatch thread (EDT), so it is not an illegal thread use case.  However, in the method that has the code above, I am clearing all existing text of the JTextPane and then repopulating it (with that String[] lines used above, which came from parsing a file).
    Now, in  [this posting|http://forums.sun.com/thread.jspa?messageID=10289999#10289999], camickr claimed:
    "When text is inserted into a Document, behind the scenes a call to setCaretPosition() is made to position the caret after the newly inserted text. However inserting text into a document is a complex procedure since Elements need to be created as the text inserted into the Document is parsed. So the call to the setCaretPosition() method is placed in a SwingUtilities.invokeLater(), which means tha code gets added to the end of the GUI EDT to be executed once the Document is in a complete state. So basically what is happening is that your call to set the view position does execute, but then is gets overridden by the setCaretPosition() method call."
    If the above claim is true, then all the calls in that method to add the file's text result in implicit calls to setCaretPosition which will be executed AFTER the method above ends (i.e. asynchronously, later on by the event dispatch thread).  Hence, I need to do an explicit setCaretPosition call of my own to override these implicit calls.
    Now, I am not sure that I totally buy this explanation.  I would like to see more proof of camickr's claims for one: I did a quick code review of some of the classes involved, and do not see where calling AbstractDocument.insertString generates an implicit call to setCaretPosition on the EDT.  To be sure, the code is complex, and I do not know where exactly to look, and maybe this is done by some listener or something, who knows.  Furthermore, my explicit call to setCaretPosition is done synchronously on the EDT (recall: that method above in my class is called by its run which is executed by the EDT).  So, my explicit call to setCaretPosition should occur in time before all of those delayed implicit calls, and thus should actually be overridden by them, no?
    I would love to hear from someone who really knows Swing...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Error in SelectOneChoise inside the table when its atributes are updatable

    I have a table in my page, this table is referenced with a VO. This table have a colunms with SelectOneChoise. The user select a item in that SelectOneChoise and click on "Save" Button, and my application make a update in table.
    But a itens in this SelectOneChoise can change when the user changes a value on the other SelectOneChoise in page.
    Example:
    US: California / New York ( <- this is a SelectOneChoise with 2 itens [ California and New York ] )
    Table
    Id - People Name - City
    1 - Ricky - [if California is selected, then show Cities of California, else show New York's Cities]
    2 - Bianca - [if California is selected, then show Cities of California]
    When the user change a value of SelectOneChoise of US, the Cities inside the table are updatable automatically.
    My problema is:
    When i update the citys in table, return that Error:
    03/02/2009 11:36:35 oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelPartialRootRenderer encodeAll
    SEVERE: Error during partial-page rendering
    java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at java.util.ArrayList.RangeCheck(ArrayList.java:546)
         at java.util.ArrayList.get(ArrayList.java:321)
         at oracle.adf.view.faces.component.UIXCollection.restoreStampState(UIXCollection.java:800)
         at oracle.adf.view.faces.component.UIXTable.restoreStampState(UIXTable.java:431)
    But, this only happens when a US has a smaller number of cities that the current.

    The error only happens when the state that has fewer towns that chose the previous state.
    For example:
    Initially, the state chosen begins empty.
    If the user selects the state 1 (with 5 cities)
    OK, it works 5 cities is greater than 0
    If the user selects the state 2 (with 8 cities)
    OK, it works as 8 cities is greater than 5
    If the user selects the state 3 (with 4 cities)
    ERROR because 4 is less than 8 cities
    That error i show in imagem above.

  • The fonts resized when Firefox updated itself. It's too small now at 'normal size'. What happened?

    My entire desktop has resized after update. I was in my email.

    zoom:
    *https://support.mozilla.com/en-US/questions/837661
    *https://support.mozilla.com/en-US/questions/838212
    * https://support.mozilla.com/en-US/questions/845407
    *window.size http://kb.mozillazine.org/Resizing_oversize_window

  • TextFlow inside a Resizable Container

    Hi,
    I've been looking for a solution for an issue for a while and hope someone can help me here.
    I have a TextFlow rendered in a Sprite. The sprite is inside a resizable container. When the container is resized, the new sprite size is update in the container controller. The problem is that the text is been deformed.
    This is an image of the text before been scaled.
    And this one is after been scaled:
    I'm not changing the the font size or anything else, just width and height of the sprite.
    Any ideas?

    Here's more information about this issue.
    When the parent container is scaled by the user, this is how I'm updating the TextFlow:
    textFlow.flowComposer.removeAllControllers();
    var newPageController:ContainerController = new ContainerController( container, w, h );
    var controllerFormat:TextLayoutFormat = new TextLayoutFormat();
    newPageController.format = controllerFormat;
    textFlow.flowComposer.addController( newPageController );
    Any comments will be appreciated.

  • Error 1321 when updating Adobe Acrobat Pro even if profile has admin rights and parent folder has full access privileges.

    Error 1321 when updating Adobe Acrobat Pro even if profile has admin rights and parent folder has full access privileges.
    Exact error below:
    error 1321: the installer has insufficient privileges to modify the file C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\Xtras\AdobePDF\I386\[dll file]
    Thanks in advance!

    My first thought is to not just apply permissions to the folder but be sure to apply them to all objects inside them. It would be interesting to see if you can rename this file, then rename it back to its original name; this would test permissions nondestructively.

  • I keep getting errors when updating from the Creative Cloud (49)

    I keep getting errors when updating from the Creative Cloud (49).
    " Update Failed" and when I click on Learn More. The error messages says there is a download error with (49)  I am signed on as administrator, so that shouldn't be a problem. I have Windows 7.

    Error 49 https://forums.adobe.com/thread/1491394
    -and https://forums.adobe.com/thread/1353632
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Error when updating software (OS6) for BB9300

    Hi,
    Please help me, when I try updating the the OS of my BB9300 it says : there's an error when updating your software.
    I  want to update my OS to OS6. 
    PS, I use BB Desktop Software Manager.
    Many Thanks! and Godbless!

    Multiple posts of the same message:
    http://supportforums.blackberry.com/t5/BlackBerry-Curve/can-upgrade-my-OS/m-p/3012574#nobanner
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Error message when updating Itunes...can not open Itunes program

    I am recieving error message when updating Itunes for my computer.  The error message reads "MSVCR80.dll is missing and the other error message reads Error 7  (Windows error 126)"  I can not open my Itunes.  I have reloaded the Itunes onto my computer but still have the same error messages.  Please help.

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99364)

  • IPad app store "unknown error" message when updating app

    iPad app store "unknown error" message appears when updating app

    Kathryn,
    Had the problem also.  Found in the forums and it worked for me:
    go to settings
    go to app store or "store" on my ipad
    click on the apple id
    sign out
    sign in, again with id and password
    then do update.
    Hope this helps.

Maybe you are looking for

  • Nokia Lumia 800 - Stuck on 'Connect to PC' screen

    Connected the Lumia 800 to my macbook air using the proper Windows Phone app on the mac. Phone connected no problem, backed up all my photo's and videos onto my macbook. Noticed there was an update available for the phone so I updated. Towards the en

  • My Printer won't work with windows vista

    I just got a new computer that runs windows vista and I can not get my printer to work it is a photosmart 1115. How can I get this to work it is my favorite printer

  • Rfkord11 email pdf

    hi, may i know how to email pdf file for customer statement in FI module via tcode f.27. i got the fm for pdf and also email in the include rfkori90 but do not know how to trigger it. any advice. thanks

  • SQL Server on Azure: Performance Nightmare

    Martin2012 wrote:what types of disk have you got holding the SQL data? Hopefully stripped SSDshttps://msdn.microsoft.com/en-us/library/azure/dn133149.aspxCan you you the SQL as a Service http://azure.microsoft.com/en-gb/services/sql-database/ or do y

  • How to display test progress in customized OI progress bar??

    Hi all From the deaf silence of group for my previous  question should i assume it is not possible to store/process the user configuration deatails in database instead of .ini file?? also please clarify me the following questions. 1. Is it possible t