JComboBox takes ages to load/refresh when tried to add more items.

Swing gurus ...
Here is the test app generated from VA3.5 concept is the
same - JComboBox takes long time to add data items to itself when added more items.
In this senario, I tried to load about 500 items into the combo box, takes about 2+ minutes to load. I have an app which needs to show about 1K items in the pick list ( ComboBox ) - which takes any where from 4 - 10 min - this is not acceptable - are there any ways we can load more items into combo box ? Help is really appreciated.
Example:
* Insert the type's description here.
* Creation date: (6/28/2001 11:23:26 AM)
* @author: Administrator
public class ComboTest extends javax.swing.JFrame {
     private javax.swing.JPanel ivjJFrameContentPane = null;
     private javax.swing.JButton ivjLoadBtn = null;
     private javax.swing.JComboBox ivjTestCombo = null;
* ComboTest constructor comment.
public ComboTest() {
     super();
     initialize();
* ComboTest constructor comment.
* @param title java.lang.String
public ComboTest(String title) {
     super(title);
* connEtoC1: (LoadBtn.action.actionPerformed(java.awt.event.ActionEvent) --> ComboTest.loadBtn_ActionPerformed(Ljava.awt.event.ActionEvent;)V)
* @param arg1 java.awt.event.ActionEvent
/* WARNING: THIS METHOD WILL BE REGENERATED. */
private void connEtoC1(java.awt.event.ActionEvent arg1) {
     try {
          // user code begin {1}
          // user code end
          this.loadBtn_ActionPerformed(arg1);
          // user code begin {2}
          // user code end
     } catch (java.lang.Throwable ivjExc) {
          // user code begin {3}
          // user code end
          handleException(ivjExc);
* Return the JFrameContentPane property value.
* @return javax.swing.JPanel
/* WARNING: THIS METHOD WILL BE REGENERATED. */
private javax.swing.JPanel getJFrameContentPane() {
     if (ivjJFrameContentPane == null) {
          try {
               ivjJFrameContentPane = new javax.swing.JPanel();
               ivjJFrameContentPane.setName("JFrameContentPane");
               ivjJFrameContentPane.setLayout(null);
               getJFrameContentPane().add(getTestCombo(), getTestCombo().getName());
               getJFrameContentPane().add(getLoadBtn(), getLoadBtn().getName());
               // user code begin {1}
               // user code end
          } catch (java.lang.Throwable ivjExc) {
               // user code begin {2}
               // user code end
               handleException(ivjExc);
     return ivjJFrameContentPane;
* Return the LoadBtn property value.
* @return javax.swing.JButton
/* WARNING: THIS METHOD WILL BE REGENERATED. */
private javax.swing.JButton getLoadBtn() {
     if (ivjLoadBtn == null) {
          try {
               ivjLoadBtn = new javax.swing.JButton();
               ivjLoadBtn.setName("LoadBtn");
               ivjLoadBtn.setText("Load");
               ivjLoadBtn.setBounds(248, 41, 85, 25);
               // user code begin {1}
               // user code end
          } catch (java.lang.Throwable ivjExc) {
               // user code begin {2}
               // user code end
               handleException(ivjExc);
     return ivjLoadBtn;
* Return the TestCombo property value.
* @return javax.swing.JComboBox
/* WARNING: THIS METHOD WILL BE REGENERATED. */
private javax.swing.JComboBox getTestCombo() {
     if (ivjTestCombo == null) {
          try {
               ivjTestCombo = new javax.swing.JComboBox();
               ivjTestCombo.setName("TestCombo");
               ivjTestCombo.setDoubleBuffered(true);
               ivjTestCombo.setBounds(78, 41, 164, 23);
               // user code begin {1}
               // user code end
          } catch (java.lang.Throwable ivjExc) {
               // user code begin {2}
               // user code end
               handleException(ivjExc);
     return ivjTestCombo;
* Called whenever the part throws an exception.
* @param exception java.lang.Throwable
private void handleException(java.lang.Throwable exception) {
     /* Uncomment the following lines to print uncaught exceptions to stdout */
     // System.out.println("--------- UNCAUGHT EXCEPTION ---------");
     // exception.printStackTrace(System.out);
* Initializes connections
* @exception java.lang.Exception The exception description.
/* WARNING: THIS METHOD WILL BE REGENERATED. */
private void initConnections() throws java.lang.Exception {
     // user code begin {1}
     // user code end
     getLoadBtn().addActionListener(new java.awt.event.ActionListener() {
          public void actionPerformed(java.awt.event.ActionEvent e) {
               connEtoC1(e);
* Initialize the class.
/* WARNING: THIS METHOD WILL BE REGENERATED. */
private void initialize() {
     try {
          // user code begin {1}
          // user code end
          setName("ComboTest");
          setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
          setSize(426, 131);
          setTitle("Test App");
          setContentPane(getJFrameContentPane());
          initConnections();
     } catch (java.lang.Throwable ivjExc) {
          handleException(ivjExc);
     // user code begin {2}
     // user code end
* Comment
public void loadBtn_ActionPerformed(java.awt.event.ActionEvent actionEvent)
     String val = "String Item: ";
     for ( int i=0; i<500; i++ )
          getTestCombo().addItem( val + i);
     return;
* main entrypoint - starts the part when it is run as an application
* @param args java.lang.String[]
public static void main(java.lang.String[] args) {
     try {
          ComboTest aComboTest;
          aComboTest = new ComboTest();
          aComboTest.addWindowListener(new java.awt.event.WindowAdapter() {
               public void windowClosing(java.awt.event.WindowEvent e) {
                    System.exit(0);
          aComboTest.show();
          java.awt.Insets insets = aComboTest.getInsets();
          aComboTest.setSize(aComboTest.getWidth() + insets.left + insets.right, aComboTest.getHeight() + insets.top + insets.bottom);
          aComboTest.setVisible(true);
     } catch (Throwable exception) {
          System.err.println("Exception occurred in main() of javax.swing.JFrame");
          exception.printStackTrace(System.out);

The "Really fast combo boxes" thread referred to by lk555 can be summarized as follows:
1. RegFish wrote a custom JComboBox that handles large numbers of elements better than a standard JComboBox does.
2. You can download his code at http://www.reddfish.co.nz/freesoftware/PoliteComboBox.jar
3. You may want to reconsider your design, since a JComboBox with more than a few dozen elements is usually too hard for the user to use (see various postings in the long thread).

Similar Messages

  • Error When Trying to add more attribute to primary key

    I have a problem that I have an editable table that is mapped to view object
    this view object is mapped to singe Entity Object.
    My Entity Object has composite primary key the primary key composed from two attributes.
    but now I tried to change the primary key to make it composed from tree attributes that I tried to make one more attribute as primary key .
    when know I try to run the form this error appear
    <RegistrationConfigurator><handleError> Server Exception during PPR, #1
    java.lang.ArrayIndexOutOfBoundsException: 0
         at oracle.adf.model.binding.DCIteratorBinding.reserveRowWithKey(DCIteratorBinding.java:3857)
         at oracle.jbo.uicli.binding.JUIteratorBinding.reserveRowWithKey(JUIteratorBinding.java:483)
         at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.setupRegionIteratorBinding(JUCtrlHierNodeBinding.java:2128)
         at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.getRegionBinding(JUCtrlHierNodeBinding.java:2054)
         at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.getBindings(JUCtrlHierNodeBinding.java:1933)
         at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.internalGet(JUCtrlHierNodeBinding.java:1528)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierNodeBinding.internalGet(FacesCtrlHierNodeBinding.java:119)
         at oracle.adf.model.binding.DCControlBinding.get(DCControlBinding.java:750)
         at oracle.adfinternal.view.faces.model.HierNodeBindingELResolver.getValue(HierNodeBindingELResolver.java:52)
         at oracle.adfinternal.view.faces.model.AdfELResolver.getValue(AdfELResolver.java:86)
         at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)
         at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:72)
         at com.sun.el.parser.AstValue.getTarget(AstValue.java:82)
         at com.sun.el.parser.AstValue.isReadOnly(AstValue.java:126)
         at com.sun.el.ValueExpressionImpl.isReadOnly(ValueExpressionImpl.java:230)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer._getUncachedReadOnly(EditableValueRenderer.java:481)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.cacheReadOnly(EditableValueRenderer.java:411)
         at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.beforeEncode(LabeledInputRenderer.java:116)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:334)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:765)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:415)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2567)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.renderDataCell(BaseColumnRenderer.java:1213)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.encodeAll(BaseColumnRenderer.java:103)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1369)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:765)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:415)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2567)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.renderDataBlockRows(TableRenderer.java:1932)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._renderSingleDataBlock(TableRenderer.java:1601)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer._handleDataFetch(TableRenderer.java:1003)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.encodeAll(TableRenderer.java:504)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1369)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:765)
         at org.apache.myfaces.trinidad.component.UIXCollection.encodeEnd(UIXCollection.java:529)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1515)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:785)
         at oracle.adfinternal.view.faces.util.rich.InvokeOnComponentUtils$EncodeChildVisitCallback.visit(InvokeOnComponentUtils.java:113)
         at org.apache.myfaces.trinidadinternal.context.PartialVisitContext.invokeVisitCallback(PartialVisitContext.java:222)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:378)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:326)
         at org.apache.myfaces.trinidad.component.UIXComponent.visitTree(UIXComponent.java:443)
         at oracle.adfinternal.view.faces.util.rich.InvokeOnComponentUtils.renderChild(InvokeOnComponentUtils.java:43)
         at oracle.adfinternal.view.faces.streaming.StreamingDataManager._pprComponent(StreamingDataManager.java:611)
         at oracle.adfinternal.view.faces.streaming.StreamingDataManager.execute(StreamingDataManager.java:460)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._encodeStreamingResponse(DocumentRenderer.java:3200)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1245)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1369)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:765)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1515)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:785)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:942)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:271)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:202)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:710)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:273)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:205)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.egabi.mcit.utils.SecurityFilter.doFilter(SecurityFilter.java:78)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)I didn't change any thing in the page only tried to add new attribute to be primary key
    when I mark this attribute in the entity as primary key .
    this error appear
    when I remove it the page run with no problem.
    The model run with no problem
    What is the problem about this.

    Do I get you right that you have changes the pk of the EO successfully and you see the error when running the app with the changed EO?
    Have you checked if the change of the PK was distributed to the VO too?
    Sometimes it helps to remove the component bound to the VO in question from the page and put it back on again.
    Timo

  • Firefox takes ages to load, refresh page 3x before or just doesnt respond

    when i got to some sites, firefox green progress bar loads but near end just takes a while, i need to keep refreshing. IE9 works fine so it's not ISP taking ages as i am on DSL2

    If you click a link then Firefox may only be showing the URL on the location bar if at least there is a connection to the server.
    If you are on Linux then it should take minutes before the connection times out, at least that is what I see (on Windows it is only 20 seconds). This might be different in case the connection drops.
    There should be a try again button of the net error page to reload this link.
    Don't you see such a button?
    You can start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Deleting photo's when trying to add more

    How can I add more photo's to ipod from computer without wiping existing photo's stored on ipod.

    You have to re-sync it every time, selecting which photo albums you want on the ipod. If you re-sync it and add a folder, it will only add the new photos and keep the old. This is all assuming that you are using the same computer/iTunes every time. A bug with the ipod is that you can't use a second computer (which many users have) and add photos to the same ipod. iTunes will erase the photos stored on the ipod and only sync those photos currently set with iTunes that the ipod is connected to. If it is a multiple computer issue, there is nothing you can do about it. Feel free to send APPLE feedback and see what happens with that...
    Message was edited by: sandler77

  • My new iphone is running extremley slow, internet takes ages to load, apps take ages to install and has trouble connecting to app store. and the apps dont work properly like ebay wont open or refresh items, plz help

    my new iphone is running extremley slow, internet takes ages to load, apps take ages to install and has trouble connecting to app store. and the apps dont work properly like ebay wont open or refresh items, plz help
    my iphone4 is 10 times faster
    i have backed up on itunes and restored but still no luck
    even siri is lagging

    my new iphone is running extremley slow, internet takes ages to load, apps take ages to install and has trouble connecting to app store. and the apps dont work properly like ebay wont open or refresh items, plz help
    my iphone4 is 10 times faster
    i have backed up on itunes and restored but still no luck
    even siri is lagging

  • When im playing any games it takes ages to load and then crashes it is very annoying

    Right excample facebook games when i play they take ages to load it also keeps saying i need to update flash player which ive done severl times a day and makes no difference then it will just bo of and say page could not be found please reload . Even when i try to open firefox 4 its very slow and then might open 2 or 3 pages at a time

    If it's taking several hours then that is likely due to your internet connection. You can verify at speedtest.net
    6mbps required for instant 720P
    8mbps for 1080P
    You can switch to SD in the settings (which only requires 3mbps)
    You can also check istumbler or netstumbler for interference
    Make sure you are on your ISPs DNS
    The reloading is normal. There is no accessible storage on ATV. The small flash is used for caching streamed content, if you access other things or turn the device off it will be flushed.

  • Since I've updated my iPad to iOS 6 it's running a lot slower especially when I scroll up and down and takes ages to load up on the App Store I know they got glitches but are they gonna be sorting this out as well ?

    Since I've updated my iPad to iOS 6 it's running a lot slower especially when I scroll up and down and takes ages to load up on the App Store I know they got glitches but are they gonna be sorting this out as well ?

    Hi!
    I am also having issues with the device since updating to IOs 6. The time between clicking an icon, i.e. a picture, and the load of that picture takes longer enough to notice it. It did not happen before the update.
    I am also having problems with some applications, specially the Facebook application. When I click on my picture in the right bar of the app, it promps a window that ask me for share my location, etc.. and get freeze there.
    Regarding reseting the device, already done. It did not helped.
    Also, SIRI is very nice, but sometimes it stop working and I have to re-start the device in order to being able to use SIRI again. When it happens, it looks like SIRI is sending the information, but does not do anything after.
    It is understandable that they require some time to get the new IOs version working properly, but I dont like to be a Beta tester.

  • Google, Facebook etc take ages to load on Safari (and Firefox)

    There have been a few threads on this issue...but none seem to have a solution that works for us.
    We have two laptops (MacBook (MB) and MacBook Pro (MBP)) using an airport wireless.   The MP has all of a sudden decided that google and facebook will not load up straight away like they have always done in the past...they take ages to load up (we are talking "go get a coffee..and read the newspaper" times).  Other websites just fire up as fast as ever.   All sites fire up super fast on the MBP.
    What we have tried:
    1. Rebooted the modem, wireless router and computers
    2. Reset Safari, deleted and reinstalled Firefox 4.0.1.  Wiped out all caches , cookies etc
    3. Restored entire computer from time tunnel from a month ago...when life was good!
    4.. Changed/added DNS numbers to airport (via airport utilities) and change the airport settings (using openDNS numbers).
    5. Flushed the DNS resolver caches...
    Still no good....
    What are we missing?   What can the MB have to cause the issue that the MPB does not?
    MB is on OSX 10.5.8
    MBP is on OSX 10.6.7
    Please help...my wife uses the MB and is angry that her beloved Facebook and Google are just not working

    Ok.. from the Safari menu bar click Safari / Preferences then select the Extensions tab. If you have any installed, turn that off, quit then relaunch Safari, try Facebook.
    If it's not Extensions...  try troubleshooting Safari third party add ons.
    Safari: Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues

  • TS3474 I play music but it takes ages to load and I only have 250MB of data for music

    When I use my iPod I have 3.3GB left memory on a 8GB iPod touch 4th generation and when I play my music it always takes ages to load. I have deleted loads of stuff and I only have 250MB of music but it still takes ages. Why does this happen?

    What do you mean by: "it always takes ages to load"?
    Withut more specific information all I can suggest is the standard fixes:
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iOS device.

  • Constantly getting "Loading" messages when trying to open mail

    Constantly getting "Loading" messages when trying to open messages within "Mail." Funny, these appear to be messages sent to my .mac account. Apparently, I am able to open gmai.com messages. Any advice.

    What does the error message say? (Precise text, please.)

  • AI CC and CC 2014 Freeze at startup or it takes ages to load

    Since the last update (which I of course applied as a modest designer) AI CC takes ages to load or doesn't load at all after almost 6 minutes of showing "Initializing...." screen. I have a DELL Laptop with Core i7 processor and 8 Gigs of RAM plus I run Windows 7 from a SSD disk. Prior to this fantastic update Illustrator ran fine. Is there something I can do or to revert back to previous, not-that-advanced version?
    Any help will be appreciated.

    Since the last update (which I of course applied as a modest designer) AI CC takes ages to load or doesn't load at all after almost 6 minutes of showing "Initializing...." screen. I have a DELL Laptop with Core i7 processor and 8 Gigs of RAM plus I run Windows 7 from a SSD disk. Prior to this fantastic update Illustrator ran fine. Is there something I can do or to revert back to previous, not-that-advanced version?
    Any help will be appreciated.

  • Why does iMessenger not work/takes ages to load?

    Why does iMessenger not work/takes ages to load?
    - done all the log in stuff (username and display name but then takes for ever to load so just give up!

    How has it stopped working?
    ARe you on wifi or cellular data?

  • Web pages in take ages to load in firefox in ubuntu lucid

    i have both ubuntu and win xp
    in xp firefox runs fine but in ubuntu(lucid) although i ave a good broadband speed of abt 1Mbps and the usual download speed goes to abt 200 to 250 Kbps the web pages take ages to load about 2 min for yahoo home page to load i have updated with the update manager
    == This happened ==
    Every time Firefox opened

    Try a clean install of Firefox on your Linux machine.
    # Close Firefox completely. (File->Exit on Windows/Linux, Firefox->Quit on Mac)
    # Rename the Firefox installation folder or move it elsewhere.
    *Linux: The install location varies based on distribution and installation method. Linux distributions usually don't put Firefox in its own folder, so this method can't be used.
    3. [www.getfirefox.com Download Firefox] again and install it
    [https://support.mozilla.com/en-US/kb/Installing+Firefox+on+Linux Installing Firefox in Linux]
    If this fixes the problem, you can optionally check the old install folder for global extensions, components, or corrupt/locked files.

  • Videos in iPod app takes ages to load?!

    Videos in iPod app takes ages to load?!
    the screen just freezes for a minute then a lists all my videos

    Check your internet speed first and what your ISP is suppose to provide.
    http://speedtest.net/
    Most Cable companies, for example, has a 15Mbps for downloads and 2Mbps for uploads.

  • Ora 12154 error when trying to add a database to VS Server Explorer

    Hi Everyone,
    I get the Ora 12154 error when trying to add a database to VS Server Explorer.
    How do I get around this problem.
    The database service is running and I can connect to the database with pl/sql.
    I can also tnsping the database and that is also ok.
    Looks like a problem with the odp.net software.
    I am running the 32 bit Oracle 11g on a Windows7 Home Premium 64 bit PC.
    I am new to this stuff so please help me step by step.
    Thanks.
    Emad

    Hi J. B.
    I have a question related to this. After you told me about the //host:1521/database alias I tried it in a VB 2008 program and it worked and returned data. At least I know that it can be used in a VB program without issues. I just now need to be able to add a connection with the Server Explorer.
    Anyway here is the VB coding I used. I'm new to this and still learning:
    Imports Oracle.DataAccess.Client ' Visual Basic ODP.NET Oracle managed provider
    Public Class Form1
    ' String to connect to the database.
    Dim strConnectionString As String = _
    "Data Source=//emad-pc:1521/emadeva;User ID=scott;Password=tiger;" '
    ' Associate the connection string with a connection object.
    Dim objOracleConnection As New OracleConnection(strConnectionString)
    ' SQL query for returning data rows.
    Dim strSqlQuery As String = _
    "Select dname, deptno " & _
    "From dept " & _
    "Where deptno = 10" '
    ' Command object to make this query work.
    Dim objOracleCommand As New OracleCommand(strSqlQuery, objOracleConnection)
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    ' Identify what type of command is being used.
    objOracleCommand.CommandType = CommandType.Text
    Try
    objOracleConnection.Open()
    ' Set up a Data Reader and load it with data.
    Dim objOracleDataReader As OracleDataReader = _
    objOracleCommand.ExecuteReader()
    objOracleDataReader.Read()
    ' Convert the department number to a string.
    lblDepartmentNumberFromOracle.Text = _
    CStr(objOracleDataReader.Item("deptno"))
    Catch ex As Exception
    MessageBox.Show(ex.Message, "Error")
    End Try
    End Sub
    End Class
    I still want to thank you for the help you are providing.
    Truly,
    Emad

Maybe you are looking for

  • 5th Generation 30 GB Video iPod - HELP

    OK, so the iPod shows a blank screen with just the backlight off. I can turn-it off, and it turns itself back on. I hve toggled the hold button and tried a soft reset to no avail. Benny sent me a link yesterday on how to go through a hard reset via i

  • ITunes won't quit - keeps restarting

    Never happened before (MacBook, running Mavericks). How to resolve this?

  • Pctfree=0-table high free blockspace ratio?

    I have been looking at Metalink and Asktom but could not find what I was looking for so perhaps one of you can help me. I have a table that seems to keep on growing when no data is added. Details: - db block size = 8k - only deletes and inserts are d

  • Tinymce - does anyone have it working in cfform?

    Downloaded today. successfully works <form> but not <cfform>.... can anyone help?????

  • Stopping iPhoto sync with MobileMe

    I just installed iPhoto '09 and am editing my photos to include places. Unfortunately, every time I edit a photo that is in an album that has been published to the MobileMe gallery, iPhoto tries to sync the changes the photo, which grinds all other a