JCombobox Strange Behavour

I have a JInternalFrame with some JLabels, JTextFields and JComboboxs.
I have set up all the desirable properties of this components, except from one.
I want when the jcombobox grab the focus the user have not to click with the mouse at the it (jcombobox)
in order to appear its choices.
Instead i want when press the "down arrow" to appear the list and when press the enter (when the lists of
the choices is appeared) to set this element as the selected.
Any help is appreciated!!

You could try something like
InputMap inputMap = combo.getInputMap( JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT );
inputMap.put( KeyStroke.getKeyStroke( "DOWN" ), "togglePopup");which should bind down to showing the popup. However, now you've got a problem because down
would normally move the selection down in the list -- what do you use instead?
: jay

Similar Messages

  • Semie addivie measure and strange behavour

    Hi,
    For the first time , I 'm facing a strange behavior with a semi additive  measure.  
    In EXCEL  when I' m crossing it with a product dimension (Declared as Regular type ... no time type),
    the behavour is like we are crossing with a time dimension.
    No SUM on the column ,  but the last non empty value whenever appear. 
     Product Type - Product code        Cummulative Power
    A                                                             16 <--   Problem we don't see No 31  
                             AA1                                  15
                             AA1                                  16
    Total SUM                                                     16    !! no 31
    Does anyone have an idea about this problem ? 
    Thank you very much
    Christophe
    <input id="gt-speech-in" lang="fr" size="1" speech="speech" style="float:left;width:15px;padding:5px 6px;margin:0px;outline:none;border-style:none;background-color:rgba(255,
    255, 255, 0);" tabindex="-1" type="text" x-webkit-grammar="builtin:translate" x-webkit-speech="x-webkit-speech" />
    whenever

    Hi Christophe,
    your question is not clear to me.  From what I understand your facing problem with measure 'Cummulative
    Power' which uses aggregation function  'Last NonEmpty'.
    Don't know whether this will help. In our case 'Last
    NonEmpty' function would be calculating 'Cummulative Power' against 'Product' dimension attributes,
    while the measure value being the value of highest member or last member of time\date dimension. (remember semi additive measures always requires time dimension)
    For example consider the following table.
    Product       
    Date
    Cummulative Power
    A  
    20140101
    10
    B
    20140101
    15
    A  
    20140102
    13
    B
    20140102
    17
    A  
    20140103
    16
    B
    20140103
    11
    Here if 'Last NonEmpty' function is used with Cummulative Power then against each Product we would get the following results in cube.
    Product
    Last NomEmpty(Cummulative Power)
    A
    16
    B
    11
    i.e. the above values are corresponding to the last member of time dimension (20140103) .
    Saurabh Kamath

  • JComboBox Strange Problem

    Hi,
    I am writting a program involving a JComboBox.
    My Question is:
    How can jComboBox1.getSelectedIndex() return 1 if the previous line was jComboBox1.setSelectedIndex(0).
    My code:
    File f=null;
    int at=0;
    boolean dontdoit=false;
        @SuppressWarnings("static-access")
    private void jComboBox1ItemStateChanged(java.awt.event.ItemEvent evt) {
    System.out.println(jComboBox1.getSelectedIndex()+" "+dontdoit);
            if(jComboBox1.getSelectedIndex()==1 && at!=1 && !dontdoit) {
        at=1;
        JFileChooser jfc=new JFileChooser();
        int i=jfc.showOpenDialog(null);
        f=jfc.getSelectedFile();
    if(i==jfc.CANCEL_OPTION) {System.out.println("H");
        f=null;
        at=0;
        dontdoit=true;
        jComboBox1.setSelectedIndex(0);
        System.out.println(jComboBox1.getSelectedIndex());
        jComboBox1ItemStateChanged(null);
       return;
        try {
        SimpleAudioPlayer sap=new SimpleAudioPlayer(f.toURI().toURL().getPath());
        sap.audioPlayer.close();
        }catch(Exception e) {
            JOptionPane.showConfirmDialog(null,"This file is not a valid audio file.\nPlease select another.","Invalid",-1);
            jComboBox1ItemStateChanged(null);
    else {
        f=null;
        at=0;
    dontdoit=false;
    }I can't get it to work. Please Help

    Sorry:
    (Part 1)
    * Options.java
    * Created on May 19, 2009, 3:28 PM
    package chatx;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.swing.JFileChooser;
    import javax.swing.JOptionPane;
    * @author  Michael
    public class Options extends javax.swing.JFrame {
        /** Creates new form Options */
        public Options() {
            initComponents();
            if(!new File("C:\\ChatX\\Options\\RINGLEN.txt").exists()) {
                FileOutputStream fos = null;
                try {
                    fos = new FileOutputStream("C:\\ChatX\\Options\\RINGLEN.txt");
                    fos.write("20".getBytes());
                    fos.close();
                } catch (Exception ex) {
            else {
                FileInputStream fos = null;
                try {
                    fos = new FileInputStream("C:\\ChatX\\Options\\RINGLEN.txt");
                    byte[] b = new byte[fos.available()];
                    fos.read(b);
                    jSpinner1.setValue(Integer.parseInt(new String(b)));
                    fos.close();
                } catch (Exception ex) {
                    Logger.getLogger(Options.class.getName()).log(Level.SEVERE, null, ex);
            if(new File("C:\\ChatX\\Options\\RINGTONE").exists()) {
                jComboBox1.setSelectedIndex(1);
                at=1;
        public void copyFile(File in, File out) throws Exception {
            FileInputStream fis  = new FileInputStream(in);
            FileOutputStream fos = new FileOutputStream(out);
            byte[] buf = new byte[1024];
            int i = 0;
            while((i=fis.read(buf))!=-1) {
                fos.write(buf, 0, i);
            fis.close();
            fos.close();
        /** 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.
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
            jPanel1 = new javax.swing.JPanel();
            jTabbedPane1 = new javax.swing.JTabbedPane();
            jPanel2 = new javax.swing.JPanel();
            jLabel1 = new javax.swing.JLabel();
            jSpinner1 = new javax.swing.JSpinner();
            jLabel2 = new javax.swing.JLabel();
            jLabel3 = new javax.swing.JLabel();
            jComboBox1 = new javax.swing.JComboBox();
            jLabel4 = new javax.swing.JLabel();
            jTextField1 = new javax.swing.JTextField();
            jButton1 = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            jPanel1.setBorder(javax.swing.BorderFactory.createTitledBorder(null, "Options", javax.swing.border.TitledBorder.CENTER, javax.swing.border.TitledBorder.DEFAULT_POSITION));
            jLabel1.setText("Ring Length:");
            jSpinner1.setValue(new Integer(20));
            jLabel2.setText("seconds");
            jLabel3.setText("Ring Tone:");
            jComboBox1.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Standard Ringing", "Custom" }));
            jComboBox1.addItemListener(new java.awt.event.ItemListener() {
                public void itemStateChanged(java.awt.event.ItemEvent evt) {
                    jComboBox1ItemStateChanged(evt);
            jLabel4.setText("IP Address:");
            jTextField1.setEditable(false);
            jTextField1.setText("YOURIP");
            javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);
            jPanel2.setLayout(jPanel2Layout);
            jPanel2Layout.setHorizontalGroup(
                jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(jPanel2Layout.createSequentialGroup()
                    .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
                        .addComponent(jLabel4, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                        .addComponent(jLabel3, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                        .addComponent(jLabel1, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 71, Short.MAX_VALUE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
                        .addComponent(jTextField1)
                        .addComponent(jComboBox1, 0, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                        .addComponent(jSpinner1, javax.swing.GroupLayout.DEFAULT_SIZE, 77, Short.MAX_VALUE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addComponent(jLabel2)
                    .addContainerGap(158, Short.MAX_VALUE))
            jPanel2Layout.setVerticalGroup(
                jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(jPanel2Layout.createSequentialGroup()
                    .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jSpinner1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jLabel2)
                        .addComponent(jLabel1))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel3)
                        .addComponent(jComboBox1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel4)
                        .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addContainerGap(155, Short.MAX_VALUE))
            );

  • 10g Optimizer strange behavour

    I think the Optimizer has a problem in 10g. (or in my installation)
    Consider the following query:
    Select field1 from table where keyfield = 'ABC' (this value only occurs 10 times)
    This table has 30.000 records. If I put an index on keyfield the query tasks 5 sec. If I remove the index the query takes 1 sec. This is not logical.
    This problem only occurs on 10g, the same query takes <1 sec on Oracle 8 or Oracle 9.
    I think the Optimizer is having a problem analyzing the index. The analyzing step i think takes a lot of time (maybe 4 sec). Is this possible?
    I already removed and added the index, created statistics, also set the optimizing mode to choose; always the same results.
    Does anyone has a clue about this problem?

    According to what you described you have an index on a column with around 10/30,000 values. When the index is in place the query takes 5 seconds; without the index the query takes 1 second. Sounds like a problem to me.
    There are a few more things I would check:
    Are you using histograms? They're designed for mixed-cardinality data to allow the CBO to dynamically decide when an index will help or not based on data values. I have seldom seen them used, but they can have an effect on queries when the histogram column value is hard-coded in the WHERE clause (bind variables don't work because histograms are considered before the bind variable value is examined by the optimizer).
    Are you analyzing both the table and the index(es)? Are you using DBMS_STATS, which is supposed to be better than the ANALYZE command (I'm personally dubious for no good reason, but our DBA group swears by DBMS_STATS)?
    There is a recognized problem with 10g called "bind variable peeking". the situation is that you run the same query twice with different sets of bind variables. The query is optimized for the first execution, but the values of the second execution are such that the query runs (with the first's plan) inefficently. This can be turned off with an undocumented intialization paramter.
    I agree that the execution plans might be helpful to figure out what is going on.

  • SOFS, CSV available space changes daily, strange behavour

    Hi, I have a a SOFS cluster which is working nicely, around 120 VM, running from 8 CSV volumes.
    but I have noticed that the disk usage goes up and down during the day, one CSV only had 5% free when I checked this morning.
    But overnight it drops back to 20-30% free. if I do a Volume refresh during the Day I can see the available space dropping, 1 or 2 Gig every hour or so.
    now I though this was AVHD snapshots growing but I have checked this, and it not that causing the issue, I also thought it could be DPM, but no backups are running.
    could it be memory of the VM's using extra disk on the VM config ?
    I haven't noticed this behaviour before, and I am pretty interested in whats going on.
    Cheers
    Mark

  • Strange behavour of "People Recognition"

    I've just installed Elements, and was looking forward to test the face recongnition. After install I marked some picures, pressed the "People Recognition" and it analyzed the images. Everything worked out fine.
    Now, a few hours later", when mark some pictures and choose this feature it start the "Analysis". When the progressbar reach 100% it dissapears, and .. well thats it. Nothing more happens.
    Anyone know whats going on, or how this can be fixed?
    Elements Organizer 8.0.0.0
    Core Version: 8.0 (20090905.r.605812)
    Language Version: 8.0 (20090905.r.605812)
    System:
    Operating System Name: XP
    Operating System Version: 5.1 Service Pack 3
    System Architecture: Intel CPU Family:6 Model:15 Stepping:11 with MMX, SSE Integer, SSE FP
    Built-in Memory: 2GB
    Free Memory: 689,8MB

    ... you select some thumbnails and do Find > Find Faces For Tagging.
    The progress bar appears, goes to 100%, and then progress bar
    disappears.  But the Organizer keeps running (it doesn't crash)?
    Yes, this is correct. The same thing happens when I select only one photo. Organizer do not crash.
    I should mention that "Generating thumbnails" is running in the background.

  • Strange behavour

    Hi All,
    I am using EAS and running the following calc script, for example, to clear one period of balance sheet:
    //ESS_LOCALE English_UnitedStates.Latin1@Binary
    Fix(@idescendants("Balance Sheet"), "2011","Forecast 12")
    CLEARBLOCK ALL ;
    ENDFIX
    The script runs successfully, however retrieveing from Excel addin, the data is still there, and I run this couple of times, but data is still not getting clear. This is driving me nuts,
    Any idea?

    The add in and smart view do not cache data. Every retrieval should bring back a new retrieve. Unless you were timed out and you have messages turned off, you should be getting fresh data with every retrieve. The only other possiblilty I can think of is you are clearing Version12 If you are pulling a different version it could have data

  • Upgraded to windows 7 64 strange behavour CS4 Premiere Pro

    Hi,
    I upgraded to windows 7 64 and are using Premiere pro CS4 for the first time on this system.
    I noticed when I click the minus sign (at the top right) to temporarily close the program the little icon shows up at the bottom of the screen like it does with any program on  Windows 7.
    But unfortunately when I try to let it appear on screen again nothing happens. I have to reboot the system to get it working again.
    Also the timeline starts flickering when I play a sequence is this normal?!
    Any one with a solution is very very welcome to reply!
    Thanks David

    More information needed for someone to help
    http://forums.adobe.com/thread/416679
    Some specific information that is needed...
    Brand/Model Computer (or Brand/Model Motherboard if self-built)
    How much system memory you have installed, such as 2Gig or ???
    Operating System version, such as Win7 64bit Pro... or whatevevr
    -including your security settings, such as are YOU the Administrator
    -and have you tried to RIGHT click the program Icon and then select
    -the Run as Administrator option (for Windows, not sure about Mac)
    Your Firewall settings and brand of anti-virus are you running
    Brand/Model graphics card, sush as ATI "xxxx" or nVidia "xxxx"
    -or the brand/model graphics chip if on the motherboard
    -and the exact driver version for the above graphics card/chip
    -and how much video memory you have on your graphics card
    Brand/Model sound card, or sound "chip" name on Motherboard
    -and the exact driver version for the above sound card/chip
    Size(s) and configuration of your hard drive(s)... example below
    -and how much FREE space is available on each drive (in Windows
    -you RIGHT click the drive letter while using Windows Explorer
    -and then select the Properties option to see used/free space)
    Windows Indexing is BAD http://forums.adobe.com/thread/676303
    While in Properties, be sure you have drive indexing set OFF
    -for the drive, and for all directories, to improve performance
    Some/Much of the above are available by going to the Windows
    Control Panel and then the Hardware option (Win7 option name)
    OR Control Panel--System--Hardware Tab--Device Manager for WinXP
    Plus Video-Specific Information http://forums.adobe.com/thread/459220?tstart=0
    And, finally, the EXACT type and size of file that is causing you problems
    -for pictures, that includes the camera used and the pixel dimensions
    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037?tstart=0
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811?tstart=0
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037?tstart=0
    Report back with the codec details of your file, use the programs below
    For PC http://www.headbands.com/gspot/ or http://mediainfo.sourceforge.net/en
    For Mac http://mediainfo.massanti.com/
    Once you know exactly what it is you are editing, report back with that information... and your project setting, and if there is a red line above the video in the timeline, which indicates a mismatch between video and project
    Read Bill Hunt on editing a VOB/MPG file http://forums.adobe.com/thread/464549?tstart=0
    Edit Vob http://premierepro.wikia.com/wiki/FAQ:How_do_I_import_VOB_files_/_edit_a_DVD%3F
    Read Hunt on Using MOD/TOD files http://forums.adobe.com/thread/699990?tstart=0
    Also, Work through all of the steps (ideas) listed at http://forums.adobe.com/thread/459220?tstart=0
    If your problem isn't fixed after you follow all of the steps, report back with ALL OF THE DETAILS asked for in the FINALLY section at the troubleshooting link
    A fix via Virtual XP http://forums.adobe.com/thread/702693?tstart=0

  • I have an IPA2 wifi 3g working fine with wifi up for 3 monthes then from two weeks it get connection but after 1 minutes stop to serf/download with signal and connection always present. With the same router are still connected others 3 pc working!

    I all, 
    the scenario is the following:
    WIFI connection with TISCALI operator. Encryption made by WPA2 EAS with router SITECOM or tested also with another router DIGICOM with WPA TPK.
    From December up to end of March the IPAD2 working perfectly serfing and downloading.
    By two weeks it has a very strange behavour without have changed any configuration on IPAD or network: 
    with WIFI turned on it discover about 4 different ntw among them the mine, I successfully authenticate with psw the my ntw,
    the IPAD2 start to run with Safari without problems, but after about 1 minutes, it stop to serf or download and answer that the Server cannot be reached or the page cannot be open, at the same time the signal is present on the icon of WIFI and it is strong.
    This problem is systematic: If I dissasociate the ntw and then authenticate again I start to serf again for 1 minutes (more or less) and then it stops again, this occurs every time I authenticate the ntw after a disassociation.
    I made some test changing the encryption from WPA2, WPA and also without encryption but the result was always the same, after about one minute the server seems to be for the IPAD2 no more reachable while the others PC and netbook connected to the same router continue to serf/download without problems!
    I also tried to change the router with a DIGCOM that I did not use generally, but the behavour is always the same.
    Since the IOS was the 4.3 revisin, I made the upgrade by means Itunes to IOS 5.1 succesfully installed.
    But unfortunatelly all test repeted have had the same negative result with the same behavour!
    Yesterday I tried to do the complete restore of the System but the tests had the same rsult. 
    I really don't know how to proceed, the problem started suddenly without any action from my side....is there someone that can help me?
    Thanks Massimo

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Change the channel on your wireless router. Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
     Cheers, Tom

  • Legacy vs uefi

    Hi all,
    First of all I'm a new Lenovo user and realy love the hardware!
    I have however a strange behaviour with UEFI on my new T540p. At least I think this is strange behavour for UEFI.
    When I set the boot mode to UEFI it takes 8-10sec longer to boot than when I set it to legacy mode.
    The difference in time is located between pushing the power button and the actual starting of windows. Loading windows itself takes equal time in both modes.  
    Latest Bios version is installed and all other bios settings are the same
    By my knowledge UEFI should be faster to boot...
    Any one else noticed this behaviour and or has a solution for it?
    Many thanks 
    Solved!
    Go to Solution.

    Are you using UEFI only or autodetect?
    W520: i7-2720QM, Q2000M at 1080/688/1376, 21GB RAM, 500GB + 750GB HDD, FHD screen
    X61T: L7500, 3GB RAM, 500GB HDD, XGA screen, Ultrabase
    Y3P: 5Y70, 8GB RAM, 256GB SSD, QHD+ screen

  • Missing system font?

    Hello,
    please have a look at
    screenshot.png.
    The font in the property boxes (I don't know the exact name
    of these elements) in DW 2004 is pixelized.
    How could this happen? Which system font uses DW?
    Greetings, Carlos

    You can compare the fonts you still have to this list:
    http://docs.info.apple.com/article.html?artnum=301332
    If any of the critical system fonts are missing, you should be able to use something like "pacifist" to extract the missing fonts from your OSX install disks and replace them. Font problems can cause all manner of strange behavour.

  • Serious Flash bug?

    Hello. I am a newbie to this forum, so I am sorry if this
    message is off-topic. If it is, I would be obliged if anyone could
    direct me to the correct place.
    I am a veteran programmer but I am new to actionscript. I
    have come across some strange behavour which is driving me mad.
    Following is a part of my code :
    ...[snip]...
    private var pnt:Point = new Point();
    private var dirp:int;
    private var fastp:int;
    private var i:int;
    private var pathB:Array;
    ...[snip]...
    for (dirp=fastp; dirp<=i; dirp++) {
    // BUG!!! If I UNCOMMENT 1 of the 2 following lines, code
    gets mixed up.
    // pnt.x=pathB[dirp][0].x+pathB[dirp][2].x;
    // pnt.y=pathB[dirp][0].y+pathB[dirp][2].y;
    pnt=new
    Point(pathB[dirp][0].x+pathB[dirp][2].x,pathB[dirp][0].y+pathB[dirp][2].y);
    if (addElement(pnt, dirp, pathB[dirp][2], pathB[dirp][3]+1))
    return pathF;
    As I mention above, if I uncomment //pnt.x=... or //pnt.y=...
    or if I even replace them with something like pnt.x=pnt.x+1 ;
    then my code gets mixed up and returns wrong results.
    This is driving me nuts because these two lines shouldn't
    have any effect since right below them there is
    pnt=new Point(...);
    which supposedly "cancels" the 2 previous instructions.
    Right?
    Could anyone, please, show me the obvious that I can't see?
    Many thanks in advance,
    Bill Kotsias

    it's not necessarily a flash bug. there are situations where
    assigning your pnt's x and y properties may trigger some other code
    to execute and re-assigning those properties immediately afterwards
    does not stop the other code from executing.
    you need to isolate the minimum code needed to display the
    issue before anyone will check it. you're nowhere close to that
    now:
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Just updated Bridge.  Error cannot start no MSVCP110

    Using CC I updated Bridge and when loading program now get 'This progran can't start because MSVCP110.dll is missing from your computer.' If I hit return key three time program loads and works normally.  Strange behavour and wish I'd not updated!

    Please see: http://helpx.adobe.com/creative-cloud/kb/missing-msvcp110dll.html

  • PerfCounters mbean lazy loading ?

    Hello,
    I am using Weblogic 11g, running on Jrockit 1.6_20 on Windows 2008.
    I have defined the flag -Djavax.management.builder.initial=weblogic.management.jmx.mbeanserver.WLSMBeanServerBuildr.
    Now I am trying to monitor the value of jrockit.gc.mgr.oc.invocations of the oracle.jrockit.management.PerfCounters mbean, with CA Wily, and notice a strange behavour : the value of the mbean is not available until I open Mission control console to the server JVM!
    I can wait for half an hour, but the moment I open JRMC, only then there's a value to this mbean attribute.
    It's as if there are no instance of the mbean until it's queried by mission control, sort of lazy loading behaviour.
    Has anyone seen this before? is this "branch" of the mbean tree indeed lazy loading ?
    Thanks, Eli

    I need your help here!

  • Qt development tools take a long time to load

    Hello everyone! Since the latest qt update I have noticed that all the qt development tools (creator, designer, assistant, etc) take a really long time to load up and their behavior is sluggish at best (for instance menus take a while to show up). When I start designer from the command line I get this error
    Qt at-spi: error getting the accessibility dbus address:
    "Did not receive a reply. Possible causes include: the remote application did not send a reply,
    the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken."
    Accessibility DBus not found. Falling back to session bus.
    After this the application needs a solid minute or two to show up. Does anyone have an idea what the problem might be? Have you experienced similar behavior?
    Last edited by Foucault (2013-03-18 11:55:20)

    Same issue here after update to Qt5.
    QtCreator with Qt5 starts a lot slower than before with Qt4.
    Also i have notice another issue.
    All commands that requires mouse double click such as:
    > open a closed project's source/header/ui file
    > browse files to add in resources
    > select/edit resource item
    > browse source files to add to project.
    etc.
    now all these commands activated by single click.
    I solved that problem by recompile QtCreator against Qt4, and this strange behavour became past.
    [EDIT] Also with recompiled QtCreator, the problem with slow startup solved too. [/EDIT]
    Anyone have this problem too ?
    Is this an issue related to Qt5 ?
    Last edited by locrian (2013-04-03 08:36:09)

Maybe you are looking for

  • Outlook will not open, stays minimized

    Outlook 2010 on win 764 system starts to load then minimizes itself in the task bar not allowing me to open . I treid dis all add ins , clean boot , dis anti virus and still nogo . Any help ? Im sure im not the first with this issue.

  • Mega 180 o/c comparison

    Hi, just wanna asks how many people has successfully o/c thier AMD XP CPU to a 3200+ with 400 FSB on a Mega 180.  I had.  Mostly I want to know how stable the o/c is and system/CPU temperatures.  I just had o/c Mega 180 today.  It look stable, but ki

  • Embedding with html page

    Hi, I want to make a pdf fill able form by livecycle or acrobat pro. In which there will be a button.By clicking this button I want to embed it with a html page.Is it possibe for abobe acrobat pro or adobe livecycle? I f possible how can I make thos

  • Extensions not loading

    I am constantly getting an error message when attempting to intall extensions for Safari.  These are all downloaded through the Apple extension site, and the error message is always the same: Safari cannot load this extension.  An error occurred whil

  • Not recognized raw files from Nikon D7000

    Hi, I have just bought a Nikon D7000 in stead of my D60. Now my Photoshop Element 9 cannot recognize the files/pictures, which I do not understand. Can anyone help me?