Changing ScrollPanes View after it has been packed

Hello,
I have a Frame which contains a JScrollPane. When I create the frame, the scrollpane has no content. After some event happens, I will add content to the pane. Then later another even could happen and I load different content into the pane. When I do this, the scrollpane scrolls VERY slow using the mouse wheel. I have tried everything I can find to made the scrollpane realize the true size of it's content. I have set the preferredsize to the preferredsize of the panel that is put into it, i have tried revalidating the scrollpane, doLayout, updateUI, etc. Nothing seems to make it realize the real size so that it doesn't scroll slow. Can anyone help me out? Below is a sample application which consists of 3 classes which demonstrate my problem. I'm running on Java 1.5.0_07 on Windows.
Thanks!
Andrew
* ScrollPaneTest.java
* Created on August 10, 2006, 1:21 PM
import javax.swing.JPanel;
public class ScrollPaneTest extends javax.swing.JFrame {
    /** Creates new form ScrollPaneTest */
    public ScrollPaneTest() {
        initComponents();
    /** This method is called from within the constructor to
     * initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is
     * always regenerated by the Form Editor.
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">
    private void initComponents() {
        mScrollPane = new javax.swing.JScrollPane();
        mChangeItButton = new javax.swing.JButton();
        mAddInitialButton = new javax.swing.JButton();
        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
        mChangeItButton.setText("Change It!");
        mChangeItButton.setEnabled(false);
        mChangeItButton.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                mChangeItButtonActionPerformed(evt);
        mAddInitialButton.setText("Add Initial Content");
        mAddInitialButton.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                mAddInitialButtonActionPerformed(evt);
        org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
            .add(layout.createSequentialGroup()
                .addContainerGap()
                .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                    .add(mScrollPane, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 380, Short.MAX_VALUE)
                    .add(org.jdesktop.layout.GroupLayout.TRAILING, layout.createSequentialGroup()
                        .add(mAddInitialButton)
                        .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                        .add(mChangeItButton)))
                .addContainerGap())
        layout.setVerticalGroup(
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
            .add(layout.createSequentialGroup()
                .addContainerGap()
                .add(mScrollPane, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 224, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                    .add(mChangeItButton)
                    .add(mAddInitialButton))
                .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
        pack();
    }// </editor-fold>
    private void mChangeItButtonActionPerformed(java.awt.event.ActionEvent evt) {
        JPanel panel = new SecondContentPanel();
        mScrollPane.setViewportView(panel);
    private void mAddInitialButtonActionPerformed(java.awt.event.ActionEvent evt) {
        JPanel panel = new InitialContentPanel();
        mScrollPane.setViewportView(panel);
        mScrollPane.setPreferredSize(panel.getPreferredSize());
        mChangeItButton.setEnabled(true);
     * @param args the command line arguments
    public static void main(String args[]) {
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new ScrollPaneTest().setVisible(true);
    // Variables declaration - do not modify
    private javax.swing.JButton mAddInitialButton;
    private javax.swing.JButton mChangeItButton;
    private javax.swing.JScrollPane mScrollPane;
    // End of variables declaration
* InitialContentPanel.java
* Created on August 10, 2006, 1:23 PM
public class InitialContentPanel extends javax.swing.JPanel {
    /** Creates new form InitialContentPanel */
    public InitialContentPanel() {
        initComponents();
    /** This method is called from within the constructor to
     * initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is
     * always regenerated by the Form Editor.
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">
    private void initComponents() {
        jLabel1 = new javax.swing.JLabel();
        jScrollPane1 = new javax.swing.JScrollPane();
        jTextArea1 = new javax.swing.JTextArea();
        jScrollPane2 = new javax.swing.JScrollPane();
        jList1 = new javax.swing.JList();
        jButton1 = new javax.swing.JButton();
        jButton2 = new javax.swing.JButton();
        jLabel1.setText("My Label");
        jTextArea1.setColumns(20);
        jTextArea1.setRows(5);
        jScrollPane1.setViewportView(jTextArea1);
        jList1.setModel(new javax.swing.AbstractListModel() {
            String[] strings = { "Item 1", "Item 2", "Item 3", "Item 4", "Item 5" };
            public int getSize() { return strings.length; }
            public Object getElementAt(int i) { return strings; }
jScrollPane2.setViewportView(jList1);
jButton1.setText("jButton1");
jButton2.setText("jButton2");
org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(layout.createSequentialGroup()
.addContainerGap()
.add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(jScrollPane2, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 380, Short.MAX_VALUE)
.add(jScrollPane1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 380, Short.MAX_VALUE)
.add(jLabel1)
.add(org.jdesktop.layout.GroupLayout.TRAILING, layout.createSequentialGroup()
.add(jButton2)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(jButton1)))
.addContainerGap())
layout.setVerticalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(layout.createSequentialGroup()
.addContainerGap()
.add(jLabel1)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(jScrollPane1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 226, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(jScrollPane2, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 160, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
.add(jButton1)
.add(jButton2))
.addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
}// </editor-fold>
// Variables declaration - do not modify
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JLabel jLabel1;
private javax.swing.JList jList1;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JScrollPane jScrollPane2;
private javax.swing.JTextArea jTextArea1;
// End of variables declaration
* SecondContentPanel.java
* Created on August 10, 2006, 1:27 PM
public class SecondContentPanel extends javax.swing.JPanel {
    /** Creates new form SecondContentPanel */
    public SecondContentPanel() {
        initComponents();
    /** This method is called from within the constructor to
     * initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is
     * always regenerated by the Form Editor.
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">
    private void initComponents() {
        jLabel1 = new javax.swing.JLabel();
        jRadioButton1 = new javax.swing.JRadioButton();
        jRadioButton2 = new javax.swing.JRadioButton();
        jRadioButton3 = new javax.swing.JRadioButton();
        jScrollPane1 = new javax.swing.JScrollPane();
        jTable1 = new javax.swing.JTable();
        jColorChooser1 = new javax.swing.JColorChooser();
        jLabel1.setText("Another Label");
        jRadioButton1.setText("jRadioButton1");
        jRadioButton1.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
        jRadioButton1.setMargin(new java.awt.Insets(0, 0, 0, 0));
        jRadioButton2.setText("jRadioButton2");
        jRadioButton2.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
        jRadioButton2.setMargin(new java.awt.Insets(0, 0, 0, 0));
        jRadioButton3.setText("jRadioButton3");
        jRadioButton3.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 0, 0, 0));
        jRadioButton3.setMargin(new java.awt.Insets(0, 0, 0, 0));
        jTable1.setModel(new javax.swing.table.DefaultTableModel(
            new Object [][] {
                {null, null, null, null},
                {null, null, null, null},
                {null, null, null, null},
                {null, null, null, null}
            new String [] {
                "Title 1", "Title 2", "Title 3", "Title 4"
        jScrollPane1.setViewportView(jTable1);
        org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
        this.setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
            .add(layout.createSequentialGroup()
                .addContainerGap()
                .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING, false)
                    .add(jLabel1)
                    .add(jRadioButton1)
                    .add(jRadioButton2)
                    .add(jRadioButton3)
                    .add(jColorChooser1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .add(jScrollPane1, 0, 0, Short.MAX_VALUE))
                .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
        layout.setVerticalGroup(
            layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
            .add(layout.createSequentialGroup()
                .addContainerGap()
                .add(jLabel1)
                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                .add(jRadioButton1)
                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                .add(jRadioButton2)
                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                .add(jRadioButton3)
                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                .add(jScrollPane1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 275, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                .add(jColorChooser1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                .addContainerGap(org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
    }// </editor-fold>
    // Variables declaration - do not modify
    private javax.swing.JColorChooser jColorChooser1;
    private javax.swing.JLabel jLabel1;
    private javax.swing.JRadioButton jRadioButton1;
    private javax.swing.JRadioButton jRadioButton2;
    private javax.swing.JRadioButton jRadioButton3;
    private javax.swing.JScrollPane jScrollPane1;
    private javax.swing.JTable jTable1;
    // End of variables declaration

Gee...Thanks for your helpful diagnosis there. I used Netbeans to quickly create an example of the problem. I do know how to develop an application without the use of a GUI builder and prior to Matise, I haven't liked GUI Builders at all. So if you are all knowing in swing, then maybe you could actually help with the problem. Would you like me to remove the editor folds, etc from the example before you can get started?? If anyone else could help out that would be great...

Similar Messages

  • Change partition sizes after windows has been installed

    After I have installed windows onto my mac and have created the partitions, can and how do I change the size (in terms of memory) of the partitions without reinstalling all information?

    Hi and welcome to Discussions,
    you can use WinClone for this http://www.twocanoes.com/winclone/ and in here http://www.twocanoes.com/forums/viewtopic.php?t=515 you find a how-to.
    (Topic: My current Windows partition is the wrong size, and I want to make it larger. How do I do this?)
    Other people have used CampTune http://www.paragon-software.com/home/camptune/ successfully.
    Prior to doing this you should make/have a backup of your OSX and Windows files for safety.
    Regards
    Stefan

  • Change iWeb theme after it has been published

    If I have published my iWeb page with a theme, can I make a theme switch and republish it?

    nope - that is not possible! the only thing that you can do is to copy the contents of the exisiting page into a new page with the new template!
    max

  • How to forbid any further changes for PO (QTY and price ) after it has been

    Hi,
    How to forbid any further changes for PO (QTY and price ) after it has been done GR and LIV? Thanks.

    Hi,
    Price anyway cannot be changed once GR is posted on the PO item, it can be changed only by cancelling the GR, the same applies to IR too.
    But quantity can be changed at any time.
    So if you are looking at blocking qty too, then a customized message through save exit is the option, I am not aware of any standard SAP messages that can be configured to achieve this..
    Ramesh

  • HT204306 How can I get my old password back after I have changed it? I cannot change it back because it has been used in the last year

    how can I get my old password back  after I have changed it? I cannot change it back because it has been used in the last year

    HI, thanks, but I know I can set a new password. I just wanted to get my old one back cos I have used it a long time & can therefore remember it.

  • How to settle the expenses after AUC has been capitalised.

    Hi All,
    I have a understanding that after AUC has been settled, we can edit the settlement rule in WBS element and settle directly to the capitalised assets.
    I can not see the settlement rule but investment profile since the project being a Capital comes from Investment measure and automatically created.
    Can you tell me how to create a new settlement rule in this case. It is Urgent
    Regards
    VK

    Hi Vijay,
    This requires a change in the settlement rule since the AUC is no more and it must be the settlement reveiver earlier which should be changed to the main asset after capitalisation.
    Please go to Transaction code CJ20N, select the WBS and go to settlement rule via edit > Cost and set the receiver as the fixed assets itself instead of AUCV since AUC has been transferred to main assets.
    You can then settle using CJ8G or CJ88 but CJ88 is a better option.
    I think, I have answered the same query.
    Regards
    Bharat

  • Tiles- Cannot forward after response has been committed Error

    I am trying to use following approach for my tiles implementation but i am getting error like
    java.lang.IllegalStateException: Cannot forward after response has been committed.
    I have gone thorugh the other posts regarding the same error but not helping me.
    Any clues greatly appreciated.
    Thanks,
    Sachin
    "I haven't found a way to directly dispatch to a tiles definition, but you can eliminate the need for multiple "wrapper" JSPs by creating a single "tilesDispatch" JSP that is able to dispatch to different tiles definitions, and establishing a convention for mapping URLs to that JSP, and identifying the tiles definition you want to load.
    For example, you could use the following convention to identify a tiles definition:
    /tiles/defName
    where "defName" is the name of the tiles definition (from tiles.xml) that you want to use. The code for the tilesDispatch.jsp would be as follows:
    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <%@ taglib prefix="t" uri="http://jakarta.apache.org/struts/tags-tiles" %>
    <%
    String tilePath = request.getRequestURI();
    int slashIndex = tilePath.lastIndexOf('/');
    if (slashIndex >= 0) {
    tilePath = tilePath.substring(slashIndex+1);
    %>
    <t:insert definition="<%=tilePath%>" flush="false"/>
    The scriptlet code takes the request URL (e.g. /tiles/defName), strips off everything up to and including the final slash (e.g. defName), then the tiles "t:insert" tag is used to look up and insert the corresponding tiles definition.
    In order to map all URLs of the form /tiles/* to the tilesDispatch.jsp, you would need to add the following to your web.xml:
    <servlet>
    <servlet-name>tilesDispatch</servlet-name>
    <jsp-file>tilesDispatch.jsp</jsp-file>
    </servlet>
    <servlet-mapping>
    <servlet-name>tilesDispatch</servlet-name>
    <url-pattern>/tiles/*</url-pattern>
    </servlet-mapping>
    Note: You may need to insert a slash before tilesDispatch.jsp in the <jsp-file> element. I am using pre-compiled JSPs, so my configuration is a little different. So if <jsp-file>tilesDispatch.jsp</jsp-file> doesn't work, try <jsp-file>/tilesDispatch.jsp</jsp-file>.
    Once you have this set up, you can refer to tiles definitions using the /tiles/defName convention in your faces-config.xml. For example, if you have two tiles definitions in your tiles.xml file: tile1 and tile2, you could have something like the following in faces-config.xml:
    <navigation-rule>
    <from-view-id>/tiles/tile1</from-view-id>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>/tiles/tile2</to-view-id>
    </navigation-case>
    </navigation-rule>
    Note that when I have used this convention, I also have used the prefix mapping for JSF. That is, when linking to a JSF page, based on a tiles definition, from a non-JSF page, the URL would be as follows:
    /faces/tiles/defName
    In this case, the Faces servlet is initially invoked, which sets up the JSF environment. Then the /faces prefix is stripped off, and the remaining URL (/tiles/defName) is routed to the tilesDispatch.jsp, which strips off the /tiles/ prefix, and inserts the "defName" definition.
    We are currently using this approach in a number of web apps, and it is working very reliably. I hope this helps.

    Hi gimbal2,
    I hope to better explain.
    In my JSF code I have the next:
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:rich="http://richfaces.org/rich"
    xmlns:a4j="http://richfaces.org/a4j"
    xmlns:fn="http://java.sun.com/jsp/jstl/functions">
         <h:body>
              <ui:composition template="/template.xhtml">
                   <ui:define name="page">
                        <h:head>
                             <h:outputStylesheet ...
                        </h:head>
                        <h:form id="form1">
                             <rich:dataTable      id="table"
                                            value="#{listBeanRequest.elements}"
                                            var="element">
         </h:body>
    </html>
    In the listBeanRequest class, the method getElements() has a line, Integer h = Integer.valueOf("a");, which efforts the java.lang.NumberFormatException
    An in my web.xml I have:
    <filter>
         <filter-name>SecurityFilter</filter-name>
         <filter-class>my.filter.SecurityFilter</filter-class>
    </filter>
    I'm using JSF 1.2 running on Apache Tomcat 6

  • After password has been reset how do I reset keychain?

    After password has been reset how do I reset keychain?

    That article is a great help if you remember your OLD login password.
    If not, the bad news is in this article:
    OS X: Keychain Access asks for keychain "login" after changing login password
    read it carefully, It explains how to change your keychain by using the OLD password.
    If you don't remember your original (former) account password
    If you don't remember your original password, you'll need to delete the keychain. Deleting a keychain also deletes all the password data saved in that keychain.
    If this applies, it means is that your old saved passwords are lost.
    You will have to start collecting them anew and adding them to the new keychain. Use Web mail and log in to your email with a Browser. Get them to send you your old password or reset it, then record the new one in Mail Preferences, and it will be saved in the current login keychain.
    You will have to do a similar exercise with your other saved passwords.

  • HT204053 I used one Apple ID to set up iCloud after iOS 6 was downloaded to my iPhone, now I want to change the Apple ID for iCloud on my iPhone but I'm unable to. How do you change the ID after it's been set up?

    I used one Apple ID to set up iCloud after iOS 6 was downloaded to my iPhone, now I want to change the Apple ID for iCloud on my iPhone but I'm unable to. How do you change the ID after it's been set up?

    See https://discussions.apple.com/message/19218571#19218571.

  • Set Cursor.vi fails after it has been called for 30 different panel refs in LV 7.1.1

    Make sure both attached files (Run LabVIEW_Cursor_TestCase.vi, SimpleVI.vi) are in the same folder. Run LabVIEW_Cursor_TestCase.vi notice that the -3 error code is returned from "Set Cursor.vi" after it has been called with 30 different panel refs. If "Set Cursor.vi" is replaced with "Set Busy.vi" the same error occurs.Is there a workaround for this problem other that setting the cursor image manually in user32.dll? I must be able to open more than 30 panels and set them all to busy. In the test case I used a single VI, simply to demonstrate the error.
    Message Edited by Jerred on 05-04-2007 10:06 AM
    Attachments:
    LabVIEW_Cursor_TestCase.vi ‏68 KB
    SimpleVI.vi ‏13 KB

    This bug is fixed in LabVIEW 8.0 and later.  Unfortunately, I know of no workaround in LabVIEW 7.x.  When I encountered this bug in one of my UIs in LabVIEW 7.x, my "fix" was simply to ignore the error outputs from the cursor VIs, and to live with the fact that I had no custom cursors after 30 windows had been opened.
    -D
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • How do i get back my stateful session bean after it has been passivated

    hi ,
    How do i get back my stateful session bean after it has been passivated by container.
    i'm confused that is it possible or not .......give me answer
    i've one stateful sessionbean which i'm accessing throgh my normal java client . now what i'm doing is when i first time call a method it is running ......then i'm shutting down the server jboss .......it is calling my ejbPassivate() method ... at this particular time client program doesn't do anything.....
    now after i restart my server i'm again calling back that business method with that last object reference.......it gives me the exception given below.....
    java.rmi.NoSuchObjectException: no such object in table
    java.rmi.NoSuchObjectException: no such object in table
         at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknown Source)
         at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
         at sun.rmi.server.UnicastRef.invoke(Unknown Source)
         at org.jboss.invocation.jrmp.server.JRMPInvoker_Stub.invoke(Unknown Source)
         at org.jboss.invocation.jrmp.interfaces.JRMPInvokerProxy.invoke(JRMPInvokerProxy.java:118)
         at org.jboss.invocation.InvokerInterceptor.invokeInvoker(InvokerInterceptor.java:227)
         at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:167)
         at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:46)
         at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:55)
         at org.jboss.proxy.ejb.StatefulSessionInterceptor.invoke(StatefulSessionInterceptor.java:106)
         at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:86)
         at $Proxy1.makeNewAcc(Unknown Source)
         at client.GanJavaClient.main(GanJavaClient.java:46)so pls tell me that is it possible to get back that session besn or not

    Stateful session beans are not persisted across restart of the EJB server instance(s) hosting them. You can't treat a Session bean as one would an entity bean.
    Chuck

  • After Firefox has been running a while, every link opens a new window

    After Firefox has been running for a while, every link starts opening in a new window. Until today, if I closed Firefox and restarted it, it would stop happening ... until it started happening again. Then today, I closed it down and restarted it, and it was STILL happening. So either I find a solution, or I stop using Firefox on my Mac.
    This is a vanilla installation - both for the Mac and Firefox. I don't use the Mac as my main computer. The Mac is running OS X 10.5 8. The problem has existed through many upgrades of Firefox. I always upgrade as requested. This last time, however may have been the killer. A new upgrade was installed right before the problem became unfixable by shutting down and restarting. I'm running Firefox 15.0. I just rebooted, however, and now (for now), it's working properly.
    I have no add-ons installed in Firefox.
    My only plug-ins are iPhotoPhotocast, QuickTime, SharePoint, and Shockwave Flash.
    I've seen multiple reports of this problem on this Web site, but no solutions. Just a generic recommendation to disable add-ons to see which one is conflicting. But I'm running no add-ons. I think there's a bug in Firefox.

    If it were an extension or theme or a Mac driver, wouldn't it cause the problem consistently? This only happens after Firefox has been running for a while. I'm using Firefox to type this reply right now, and the problem is not happening.
    And it's not because I suddenly start using some offending software. As I said, I don't use the Mac as my main computer. Usually I'll have been using my PC, I'll go back to the Mac to check my email on Firefox, and suddenly the link problem is happening. I only use the Mac to check email on the server before I download it with Outlook (on the PC) so I can delete spam on the server first.

  • Workflow Shows as 'In Progress' after Workflow has been completed.

    Hello All,
    I have created a custom workflow using SharePoint Designer. Within this workflow I have multiple 'approval process' tasks. In theory this was so that once the first user had approved the item then the next would be prompted to approve the item, and
    so on. The users that the item must be approved by are set when the item is submitted initially.
    Just so anyone reading this knows I have no formal experience/education in SharePoint workflow design, but I would like to think I know my way around SharePoint(in general) at this point.
    My problem is, the company I work for is just starting out using SharePoint workflows, and from what I understand workflows that are 'In Progress' are related to server performance. I noticed today that there are 5 items in the list which
    under the 'workflow status' column display that they are 'In Progress' which is entirely correct. However, when I go to -> 'List Settings' -> 'Workflow Settings' this workflow is showing 8 workflows 'In Progress'.
    Thank you to anyone who is able to help me with this,
    James

    Hi,
    According to your post, my understanding is that workflow shows as 'In Progress' after Workflow has been completed.
    To send the task one by one, you can select one at a time(serial) when you select Task Process Participants.
    Per my knowleadge, when you go to -> 'List Settings' -> 'Workflow Settings', it show all the workflows you associated to the list.
    To see the running workflow, you need to select an item, right click the title, and then select the workflow.
    However, each workflow enstance can only start once on an item.  In other word, you can not start the same workflow again untill the previous one is completed.
    As you said, workflow shows as 'In Progress'.
    Please make sure all the users have approved the tasks.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How to enable my Ipad after it has been dissable by too many wrong attempts to enter passcode?

    How to enable my Ipad after it has been dissable by too many wrong attempts to enter passcode?

    You have to restore the iPad in order to unlock it using these instructions.
    http://support.apple.com/kb/HT1212?viewlocale=en_US&locale=en_US

  • HT1212 how to enable my iphone after it has been disenabled?

    How to enable my iphone after it has been disabled?

    You have to restore the iPad in order to unlock it using these instructions.
    http://support.apple.com/kb/HT1212?viewlocale=en_US&locale=en_US

Maybe you are looking for