Preference behavior is unpredictable..

I use this couple of classes to store the state of windows..
but not the state of every windows is saved.. can some one tell me why?
the think that i don't understand is the unpredicatble behavior of the system..
some time the new preferences are stored sometime not
thanks...
* JFClient.java
* Created on February 15, 2006, 4:31 PM
package util;
* @author  dimitri
public class JFClient extends javax.swing.JFrame {
    /** Creates new form JFClient */
    public JFClient() {
        //initComponents();
        JFCManager.getJFCManager().addClient(this);
    public JFClient(String _par) {
        super(_par);
        //initComponents();
        JFCManager.getJFCManager().addClient(this);
    public String getJFClientKEY(){
        return getTitle();
    /** 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() {
        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
        pack();
    // </editor-fold>                       
    // Variables declaration - do not modify                    
    // End of variables declaration                  
* JFCManager.java
* Created on 19 marzo 2006, 19.26
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
package util;
import java.awt.Component;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
import java.util.Hashtable;
import java.util.Iterator;
import java.util.Map.Entry;
import java.util.Set;
import java.util.prefs.BackingStoreException;
import java.util.prefs.Preferences;
* @author Dimitri
public class JFCManager extends ComponentAdapter implements java.io.Serializable{
    private final Preferences p;
    final Hashtable<Component,Integer> clientsTable;
    private static JFCManager instance;
    /** Creates a new instance of JFCManager */
    public JFCManager(String _node) {
        p=Preferences.userRoot().node(_node);
        try {
            p.flush();
        } catch (BackingStoreException ex) {
            ex.printStackTrace();
        clientsTable=new Hashtable<Component,Integer> ();
        instance=this;
    static public JFCManager getJFCManager() {
        return instance;
    public void addClient(JFClient client){
        Integer key=Integer.valueOf(client.getJFClientKEY().hashCode());
        System.out.println(client.getJFClientKEY()+" "+client.getJFClientKEY().hashCode());
        clientsTable.put(client,key);
        client.addComponentListener(this);
    public void removeClient(JFClient client){
        client.removeComponentListener(this);
    public void componentMoved(ComponentEvent componentEvent) {
        Component compo=componentEvent.getComponent();
        java.awt.Point point =compo.getLocation();
        if(clientsTable.containsKey(compo)){
            Integer key=(Integer)clientsTable.get(compo);
            p.putInt(key+"_x",point.x);
            p.putInt(key+"_y",point.y);
            try {
                p.flush();
            } catch (BackingStoreException ex) {
                ex.printStackTrace();
    public void componentResized(ComponentEvent componentEvent) {
        Component compo=componentEvent.getComponent();
        int w =compo.getWidth();
        int h =compo.getHeight();
        if(clientsTable.containsKey(compo)){
            Integer key=(Integer)clientsTable.get(compo);
            p.putInt(key+"_width",w);
            p.putInt(key+"_height",h);
            try {
                p.flush();
            } catch (BackingStoreException ex) {
                ex.printStackTrace();
    public void componentHidden(ComponentEvent componentEvent) {
        Component compo=componentEvent.getComponent();
        int w =compo.getWidth();
        int h =compo.getHeight();
        if(clientsTable.containsKey(compo)){
            Integer key=(Integer)clientsTable.get(compo);
            p.putBoolean(key+"_visible",false);
            try {
                p.flush();
            } catch (BackingStoreException ex) {
                ex.printStackTrace();
    public void componentShown(ComponentEvent componentEvent) {
        Component compo=componentEvent.getComponent();
        int w =compo.getWidth();
        int h =compo.getHeight();
        if(clientsTable.containsKey(compo)){
            Integer key=(Integer)clientsTable.get(compo);
            p.putBoolean(key+"_visible",false);
            try {
                p.flush();
            } catch (BackingStoreException ex) {
                ex.printStackTrace();
            restoreComponentStatus(key,(JFClient)compo);
    protected void restoreComponentStatus(Integer key,JFClient client){
        int w,h,x,y;
        boolean visible;
        w=p.getInt(key+"_width",100);
        h=p.getInt(key+"_height",100);
        x=p.getInt(key+"_x",100);
        y=p.getInt(key+"_y",100);
        visible=p.getBoolean(key+"_visible",true);
        client.setSize(w,h);
        client.setLocation(x,y);      
    public void restore(){
        Set<Entry<Component,Integer>> s=clientsTable.entrySet();       
        Iterator<Entry<Component,Integer>>i=s.iterator();
        while(i.hasNext()){
            Entry<Component,Integer>e=i.next();
            if(e.getKey()!=null)
                restoreComponentStatus(e.getValue(), (JFClient) e.getKey());
    public Preferences getP() {
        return p;
}

Are you sure that the hashcodes of the titles are matching what is stored in the preferences?

Similar Messages

  • IE 10 Preferences Behavior

    So I am working on converting some IE Maintenance policies to IE 10 GPP to support Windows 7 and Windows 8.1 clients with IE 10 and 11.
    I understand that I need to use preferences but am a bit confused about how the application of these preferences work. For instance, when I create a new IE 10 preference item all of the settings for IE are included in that one item, but only the settings
    I have manually configured are actually applied. Any other settings seem to follow what the user has configured.
    The problem is that in the interface there is no visual indicator to tell you which settings you have configured and which are defaults. Also, once I have configured a particular setting, there is no way to 'un-configure' it. I can change it to a different
    setting but can't reverse it to allow the user to take precedence over the GPP.
    Is what I am observing accurate? Is there any guidance on how to configure these GPP items? Thanks!

    Group Policy Preferences do not revert back to the previous setting which it is removed. There is an option to remove when no longer applied. However this normally deletes the setting (e.g. registry key) when you remove it so it has to be done with caution.
    The setting in a new I Group Policy Preferences are close to the default setting for the program it self. However there is no way to reset the value back to original without manually configuring it back to original or deleting it and creating a new
    one...
    I have a bunch of links to Microsoft articles about Group Policy Preferences on my web site at
    http://www.grouppolicy.biz/group-policy-preferences/ that should give you a start on more guidance...
    Hope that helps.
    Alan Burchill (MVP)
    http://www.grouppolicy.biz
    @alanburchill
    Alan,
    Thanks for the response!
    I am aware of how GPP works, but this is more of an issue with how the IE 10 GPP items work. When you configure an item, it contains every possible IE setting. The settings I manually configure in the item seem to get applied to the user and the ones I leave
    alone don't get applied.
    If I modify a setting it begins applying to the user. Essentially I see this as moving the setting from an 'unconfigured' state to a 'configured' state. However, there is no way to see which items have been manually configured and which are still at default.
    This matters because any items I have manually configured will continue to be applied. If a user changes their settings they could be overwritten by the policy and I will be unable to tell if this is a setting I have configured.
    Thanks!

  • Strange preference behavior

    Hi all.
    This morning I started up my computer and FCP and it immediately prompted me to set my scratch disk. I figured my preferences were hosed so I wentto the folder to trash them. At first the Final Cut Pro 6.0 Preferences was not there. Then I looked again and it WAS there but it disappeared when I clicked on it. I got out of the folder and got back in and it was there so I trashed it (and the others) and launched FCP again. Again it asked me to set my scratch disk. I set it and made a test project....noticed all my favorites were gone etc. then saved and restarted my computer. This time the log in was acting wacky and it took me 2 times to log in. Then when it finally let me, I launched FCP again and it DID NOT ask me to reset my scratch disk and it automatically loaded up a project that I haven't had open for 2 days(and hasn't been opening on launch since then either) . Suddenly all my favorites from 2 days ago were there! Any one know what the heck is happening here?
    I am on FCP 6.0.2 on a Power Mac G5 running 10.4.11. I am one of about 6 that is connected to an xsan here are the specs of that:
    3xRaid nodes with 2 controllers, 7 drives at 500gigs. 5 media array with a hot spare, RAID 5. Fiber - 4 gig channel. 3 xServers - metadata controller. about 11 Terabytes available to work with.
    I think all of our user settings are on the XSAN somewhere....we are able to go to any of the 6 computers and see our own desktop etc.
    Message was edited by: esimpsoneditor

    I have little experience with network login and sharing user files from an xSan. It gives me the heebie-jeebies. Anyway, did you by any chance go out to the finder and toss the prefs while the "reset scratch disks" window was still open?
    Usually that alert only means that some some volume in your list of scratch disks is not mounted at the time you launch FCP, but is not indicative of any problem with your prefs. I usually either just quit and mount the missing volume, if I know which it is, or go ahead and reset the scratch disks, removing the missing drive from the list.
    If your prefs are reverting to previous states, there may be some duplicate preference files somewhere on your network that are getting used if you log in differently. "Fraid I can't be of much help to you there...
    Max Average

  • Funky Mail Behavior

    Hello,
    My Mail application quite often refuses to send mail via my normal email address and server. It hangs in for a minute or so and then asks if I want to send via another address. This behavior is unpredictable and extremely irritating. Any clues to how to stop this insane behavior?
    Thanks in advance.
    BH
    2GHz PowerPC G5 iMac   Mac OS X (10.4.8)  

    Brian,
    Port 110, is the port for an Incoming POP3 Server, and not any SMTP used as Outgoing Server. Please check server settings under the Outgoing Server section of Mail Preferences/Accounts/Account Information, again. Please report the type of Authentication, used, if any. Is this ISP cable, or DSL? It could be useful to know the name of this ISP.
    Ernie

  • RE: DBSessions and Single-threading

    Thanks Linh. Always good to here from you.
    thanks
    ka
    Kamran Amin
    Forte Technical Leader, Core Systems
    (203)-459-7362 or 8-204-7362 - Trumbull
    [email protected]
    From: Linh Pham[SMTP:[email protected]]
    Sent: Friday, November 13, 1998 2:51 PM
    To: Ajith Kallambella M; [email protected]; ForteUsers;
    [email protected]
    Subject: RE: DBSessions and Single-threading
    all,
    This information (technote draft # 11716) is to clear up the confusion
    regarding
    database access.
    Note, Forte reserves the right to change this implementation in the
    future.
    Currently, there are two flavors of database access available with forte
    (as of version 30j1):
    1. single-threading access to all databases on all UNIX & VMS platforms
    2. multithreading access to all supported database except Sybase on
    intel/alpha-NT,
    and to a certain extent, limited support with SQLServer (see more
    details below)
    1. single-threading access:
    with this type of access, when the following code is executed
    (SQL select ... on MyDBSession;), forte locks the partition and
    all EXTERNAL requests will be queued. However, task switching inside
    the partition continues until the called task enters the DBVendor's
    API (as with any 3GL call). Prior to this moment, you can still have
    multiple tasks running inside the partition. As the called task
    enters the 3GL, it truly blocks a partition, ie. it's OUT there
    talking to the database and not communicating with the
    the forte's environment. If the query is long, the partition might not
    be
    able to acknowledge the environment manager's ping, and thus, will be
    deemed NOT reachable, and a new partition will be started (see technote
    11147). Another problem arises when you have multiple INTERNAL tasks
    trying to perform database access concurrently on the same DBSession.
    Since the behavior is unpredictable, we RECOMMEND that you only
    have ONE task at any time accessing the DBSession inside a partition.
    Please see also technote 7104 for more information regarding DBSession
    sharing & blocking.
    2. multi-threading access:
    on NT, we have added code to allow multithreading access to most
    supported
    database. What does this mean?
    a. when a task access the database, the partition will NOT be blocked.
    b. you can have multiple DBSessions inside a partition and allow
    concurrent access; however, we still RECOMMEND that you
    only have ONE task accessing a DBSession at any one time.
    Please consult a Forte consultant or a TSR in reference to technote
    11151 (only available internally). Please do NOT call Forte Technical
    Support for this technote.
    As to SQLServer, the ODBC driver that you use to access the database
    will
    determine if it's is reentrant or not. There is also a known problem
    with
    the Microsoft ODBC driver which causes the cursor state to become
    invalid when
    multiple tasks accessing the same session. Due to these problems, forte
    recommends that you single-threading access to SQLServer; otherwise
    use at YOUR OWN RISK.
    Hope this helps. IF you have questions regarding multithreading access
    support
    in the future, please contact a Forte Sales Rep or TSR.
    linh ...
    -----Original Message-----
    From: [email protected]
    [<a href="mailto:[email protected]">mailto:[email protected]]On</a> Behalf Of Ajith Kallambella M
    Sent: Friday, November 13, 1998 9:08 AM
    To: [email protected]; ForteUsers; [email protected]
    Subject: RE: DBSessions and Single-threading
    Though, the DBSession partitions can reside on a
    thread-safe
    OS ( like NT ), the DBSession is still single threaded
    and your
    partition gets blocked for the duration of the DB
    access. Same
    is true, even if you have multi-threaded databases.
    Forte has not changed DBSession to make it
    multi-threaded.
    Infact, given the current implementation, the only way
    to simulate
    concurrent database access is to replicate the
    partition which
    has DBSession object. The famous DBEntityManagerPattern
    does essentially the same.
    I think we should all feel happy with this now, and
    hope for
    something better in 4.0.
    Ajith Kallambella. M
    Forte Systems Engineer,
    International Business Corporation
    -----Original Message-----
    From: Eric Pereira [<a href=
    "mailto:[email protected]">mailto:[email protected]</a>]
    Sent: Friday, November 13, 1998 9:54 AM
    To: [email protected]
    Cc: [email protected]
    Subject: RE: DBSessions and Single-threading
    Kamran,
    That's not entirely correct. Partitions which access
    multi-threaded
    databases (like MS SQL Server on NT) do not block.
    There was some
    discussion about this over the User Group a while back
    - with no real
    conclusion, so perhaps Forte might want to step in and
    clarify.
    What I'm curious about is the outcome in a situation
    where one DB
    Session accesses SQL Server and another one talks to a
    non
    multi-threaded database within the same partition.
    Thanks.
    Eric Pereira
    Forte Consultant
    ----Original Message Follows----
    From: "Amin, Kamran" <[email protected]>
    To: [email protected], Peter Kelly
    <[email protected]>
    Subject: RE: DBSessions and Single-threading
    Date: Fri, 13 Nov 1998 07:52:09 -0500
    Reply-To: "Amin, Kamran" <[email protected]>
    Peter,
    If one of the service object is being used the that
    partition gets
    blocked until it has finished the request to the
    dbsession. It will not
    mater if the service objects are connected to different
    database. Using
    a
    dbsession makes the partition single threaded and
    that's why we use load
    balancing. Please look at tech. note 10647 for more
    info.
    ka
    Kamran Amin
    Forte Technical Leader, Core Systems
    (203)-459-7362 or 8-204-7362 - Trumbull
    [email protected]
    From: Peter Kelly[SMTP:[email protected]]
    Sent: Friday, November 13, 1998 6:27 AM
    To: [email protected]
    Subject: DBSessions and Single-threading
    Does a DBSession executing in a partition cause thatpartition to
    become
    single-threaded?
    Suppose a partition has 2 Service Objects.
    Each Service Object has its own unique DBSession.
    While a method in one Service Object is using itsDBSession,
    do all other threads in that partition halt and thenresume
    when the work with the first DBSession is complete.
    What if the two DBSessions are connected to differentdatabases,
    does this change anything?
    I heard rumours that Oracle on NT supportedmulti-tasking and blocking
    would not occur. If blocking does occur, is it aForte or Oracle
    limitation?
    Any input/comments appreciated.
    thanks,
    Peter
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>
    >>
    >>
    Get Your Private, Free Email at <a href=
    "http://www.hotmail.com">http://www.hotmail.com</a>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>
    >>
    >>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>
    >>
    >
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>

    Thanks Linh. Always good to here from you.
    thanks
    ka
    Kamran Amin
    Forte Technical Leader, Core Systems
    (203)-459-7362 or 8-204-7362 - Trumbull
    [email protected]
    From: Linh Pham[SMTP:[email protected]]
    Sent: Friday, November 13, 1998 2:51 PM
    To: Ajith Kallambella M; [email protected]; ForteUsers;
    [email protected]
    Subject: RE: DBSessions and Single-threading
    all,
    This information (technote draft # 11716) is to clear up the confusion
    regarding
    database access.
    Note, Forte reserves the right to change this implementation in the
    future.
    Currently, there are two flavors of database access available with forte
    (as of version 30j1):
    1. single-threading access to all databases on all UNIX & VMS platforms
    2. multithreading access to all supported database except Sybase on
    intel/alpha-NT,
    and to a certain extent, limited support with SQLServer (see more
    details below)
    1. single-threading access:
    with this type of access, when the following code is executed
    (SQL select ... on MyDBSession;), forte locks the partition and
    all EXTERNAL requests will be queued. However, task switching inside
    the partition continues until the called task enters the DBVendor's
    API (as with any 3GL call). Prior to this moment, you can still have
    multiple tasks running inside the partition. As the called task
    enters the 3GL, it truly blocks a partition, ie. it's OUT there
    talking to the database and not communicating with the
    the forte's environment. If the query is long, the partition might not
    be
    able to acknowledge the environment manager's ping, and thus, will be
    deemed NOT reachable, and a new partition will be started (see technote
    11147). Another problem arises when you have multiple INTERNAL tasks
    trying to perform database access concurrently on the same DBSession.
    Since the behavior is unpredictable, we RECOMMEND that you only
    have ONE task at any time accessing the DBSession inside a partition.
    Please see also technote 7104 for more information regarding DBSession
    sharing & blocking.
    2. multi-threading access:
    on NT, we have added code to allow multithreading access to most
    supported
    database. What does this mean?
    a. when a task access the database, the partition will NOT be blocked.
    b. you can have multiple DBSessions inside a partition and allow
    concurrent access; however, we still RECOMMEND that you
    only have ONE task accessing a DBSession at any one time.
    Please consult a Forte consultant or a TSR in reference to technote
    11151 (only available internally). Please do NOT call Forte Technical
    Support for this technote.
    As to SQLServer, the ODBC driver that you use to access the database
    will
    determine if it's is reentrant or not. There is also a known problem
    with
    the Microsoft ODBC driver which causes the cursor state to become
    invalid when
    multiple tasks accessing the same session. Due to these problems, forte
    recommends that you single-threading access to SQLServer; otherwise
    use at YOUR OWN RISK.
    Hope this helps. IF you have questions regarding multithreading access
    support
    in the future, please contact a Forte Sales Rep or TSR.
    linh ...
    -----Original Message-----
    From: [email protected]
    [<a href="mailto:[email protected]">mailto:[email protected]]On</a> Behalf Of Ajith Kallambella M
    Sent: Friday, November 13, 1998 9:08 AM
    To: [email protected]; ForteUsers; [email protected]
    Subject: RE: DBSessions and Single-threading
    Though, the DBSession partitions can reside on a
    thread-safe
    OS ( like NT ), the DBSession is still single threaded
    and your
    partition gets blocked for the duration of the DB
    access. Same
    is true, even if you have multi-threaded databases.
    Forte has not changed DBSession to make it
    multi-threaded.
    Infact, given the current implementation, the only way
    to simulate
    concurrent database access is to replicate the
    partition which
    has DBSession object. The famous DBEntityManagerPattern
    does essentially the same.
    I think we should all feel happy with this now, and
    hope for
    something better in 4.0.
    Ajith Kallambella. M
    Forte Systems Engineer,
    International Business Corporation
    -----Original Message-----
    From: Eric Pereira [<a href=
    "mailto:[email protected]">mailto:[email protected]</a>]
    Sent: Friday, November 13, 1998 9:54 AM
    To: [email protected]
    Cc: [email protected]
    Subject: RE: DBSessions and Single-threading
    Kamran,
    That's not entirely correct. Partitions which access
    multi-threaded
    databases (like MS SQL Server on NT) do not block.
    There was some
    discussion about this over the User Group a while back
    - with no real
    conclusion, so perhaps Forte might want to step in and
    clarify.
    What I'm curious about is the outcome in a situation
    where one DB
    Session accesses SQL Server and another one talks to a
    non
    multi-threaded database within the same partition.
    Thanks.
    Eric Pereira
    Forte Consultant
    ----Original Message Follows----
    From: "Amin, Kamran" <[email protected]>
    To: [email protected], Peter Kelly
    <[email protected]>
    Subject: RE: DBSessions and Single-threading
    Date: Fri, 13 Nov 1998 07:52:09 -0500
    Reply-To: "Amin, Kamran" <[email protected]>
    Peter,
    If one of the service object is being used the that
    partition gets
    blocked until it has finished the request to the
    dbsession. It will not
    mater if the service objects are connected to different
    database. Using
    a
    dbsession makes the partition single threaded and
    that's why we use load
    balancing. Please look at tech. note 10647 for more
    info.
    ka
    Kamran Amin
    Forte Technical Leader, Core Systems
    (203)-459-7362 or 8-204-7362 - Trumbull
    [email protected]
    From: Peter Kelly[SMTP:[email protected]]
    Sent: Friday, November 13, 1998 6:27 AM
    To: [email protected]
    Subject: DBSessions and Single-threading
    Does a DBSession executing in a partition cause thatpartition to
    become
    single-threaded?
    Suppose a partition has 2 Service Objects.
    Each Service Object has its own unique DBSession.
    While a method in one Service Object is using itsDBSession,
    do all other threads in that partition halt and thenresume
    when the work with the first DBSession is complete.
    What if the two DBSessions are connected to differentdatabases,
    does this change anything?
    I heard rumours that Oracle on NT supportedmulti-tasking and blocking
    would not occur. If blocking does occur, is it aForte or Oracle
    limitation?
    Any input/comments appreciated.
    thanks,
    Peter
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>
    >>
    >>
    Get Your Private, Free Email at <a href=
    "http://www.hotmail.com">http://www.hotmail.com</a>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>
    >>
    >>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>
    >>
    >
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>

  • Why is the search on bottom?

    Maybe this got covered in the superlong thread I don't have time to read, but I have two comments on searching.
    - Why are posts in an individual thread listed so that multiple posts for the same thread are listed for one search?
    - Why is the 'Search' box for the forum (where you enter text to search for) on the bottom of the page, where you have to scroll down to find it? That's really counterintuitive until you've learned to remember that it's at the bottom and that you need to scroll down to search for something. My guess is that the majority of the users who get on the forum immediately want to search for something, not read the latest random posts (although I'm sure there are users who do that also, just to say that the two requirements aren't mutually exclusive when it comes to placement of the search box).

    M3nth,
    Seems like we're all asking the same question
    As tst says... try not to use the one at the bottom.. it's ... hummm..
    It's behavior is unpredictable...
    As for the multiple listing I'll have to read Molly's response on this (I asked the same question is the "Xtreme thread")
    JLV
    === EDIT ===
    Hi Molly,
    I read your answer on the bottom search engine..
    That's what I thought it did... but it didn't work for me.. I tried to use it to find some of my own posts within LV.. and it didn't find anything.
    The search was : serial
    I did this while reading a LV question of the subject.
    I shall experiment with the search engine again and report my findings.
    R.Message Edited by JoeLabView on 03-17-2005 02:24 PM

  • Early 2009 software-hardware audio problems

    I can't seem to put my finger on what is causing the output audio to cease functioning. The problem usually manifests as unable to make any changes to Perferences/Sound where Sound Effects - Output - Input are all greyed out and unselectable and the Audio volume icon (while being checked in the dialogue box) does not appear in the Menu bar (just the space the icon should occupy). Rebooting does not fix the issue, neither does repairing Priviledges/Permissions with Disk Utility.
    Unplugging the computer and holding the power button (SMC reset?), then plugging in the power and holding the power ON button until the Mac chimes, has fixed the System Preferences issue, but as I was typing this, the audio started getting fuzzy and then quit.
    Moving the Output volume control had no effect, but I was able to restore audio by fiddling with the external speaker cable plug. This procedure does not always fix the issue.
    Is this possibly the beginning of the end of the audio board? I'm confused by the System Preferences behavior and the effect of physically pushing the audio jack in and out to restore audio.
    Thanks for all replies.

    The mini has been shut down for a week. When I shut it down, sound was working beautifully.
    Just booted computer up and back to the problem of no Sound effects, no output, no input in the Preferences pane. And there was no "bong" thru the speaker.
    Restart, get "bong" and get Audio preferences window to mostly work, but each and every time I try and change the Output volume with the cursor, get a spinning wheel of death and no or minimal output change. Try the keyboard sound up and down keys, get the icon window, but can't move volume much at all, and my key inputs are greatly delayed, up to 2 minutes. Only sound slider that works is on the menu bar, and it is inhibited as the volume icon continues to flash on the screen, reflecting key inputs made minutes ago. The sound icon in the menu bar is still selected, but can't get slider to drop down to make change because color wheel of death is still spinning.
    Checked the Force quit, but nothing is shown as "not responding". This looks more and more as if there were some software corruption, but no idea where to look.
    The console log is filling up with line after line of failure notes. A small sampling is below:
    Sep 15 18:18:32 halfway-mini kernel[0]: Sound assertion ""( kRequestStateCORB == fCodecRequest->state ) = CORB engine stuck or response was missing"" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDAController/AppleHDAController.c pp" at line 2013 goto handler
    Sep 15 18:18:32 halfway-mini kernel[0]: Sound assertion "0 != err" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/IOHDAFamily/IOHDACodecDevice.cpp" at line 128 goto Exit
    Sep 15 18:18:32 halfway-mini kernel[0]: Sound assertion "0 != runVerb ( kIOHDAVerbSetPinWidgetControl, savedPinWidgetControlValue, &savedPinWidgetControlValue )" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDA/AppleHDAWidget.cpp" at line 2028 goto handler
    Sep 15 18:18:32 halfway-mini kernel[0]: Sound assertion "0 != result" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDA/AppleHDAEngine.cpp" at line 8255 goto handler
    Sep 15 18:18:38 halfway-mini kernel[0]: Sound assertion ""( kRequestStateCORB == fCodecRequest->state ) = CORB engine stuck or response was missing"" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDAController/AppleHDAController.c pp" at line 2013 goto handler
    Sep 15 18:18:38 halfway-mini kernel[0]: Sound assertion "0 != err" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/IOHDAFamily/IOHDACodecDevice.cpp" at line 128 goto Exit
    Sep 15 18:18:38 halfway-mini kernel[0]: Sound assertion "0 != result" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDA/AppleHDANode.cpp" at line 370 goto Exit
    Sep 15 18:18:38 halfway-mini kernel[0]: Sound assertion "0 != fHDAFunctionGroup->powerState ( &restorePowerState )" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDA/AppleHDADriver.cpp" at line 333 goto handler
    Sep 15 18:18:39 halfway-mini kernel[0]: Sound assertion ""( kRequestStateCORB == fCodecRequest->state ) = CORB engine stuck or response was missing"" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDAController/AppleHDAController.c pp" at line 2013 goto handler
    Sep 15 18:18:39 halfway-mini kernel[0]: Sound assertion "0 != err" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/IOHDAFamily/IOHDACodecDevice.cpp" at line 128 goto Exit
    Sep 15 18:18:39 halfway-mini kernel[0]: Sound assertion "0 != result" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDA/AppleHDAWidget.cpp" at line 1935 goto handler
    Sep 15 18:18:40 halfway-mini kernel[0]: Sound assertion ""( kRequestStateCORB == fCodecRequest->state ) = CORB engine stuck or response was missing"" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDAController/AppleHDAController.c pp" at line 2013 goto handler
    Sep 15 18:18:40 halfway-mini kernel[0]: Sound assertion "0 != err" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/IOHDAFamily/IOHDACodecDevice.cpp" at line 128 goto Exit
    Sep 15 18:18:40 halfway-mini kernel[0]: Sound assertion "0 != result" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDA/AppleHDAWidget.cpp" at line 2208 goto Exit
    Sep 15 18:18:40 halfway-mini kernel[0]: Sound assertion "0 != result" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDA/AppleHDAWidget.cpp" at line 1938 goto handler
    Sep 15 18:18:41 halfway-mini kernel[0]: Sound assertion ""( kRequestStateCORB == fCodecRequest->state ) = CORB engine stuck or response was missing"" failed in "/SourceCache/AppleHDA/AppleHDA-171.1.2/AppleHDAController/AppleHDAController.c pp" at line 2013 goto handler
    I have no concept of what the reports indicate, other than is seems to be related to the sound issues. Are there some plist files that could be corrupted?

  • IE 8 not displaying website properly

    I am having trouble getting my client's website to display properly in Internet Explorer 8.
    http://www.passportwineandspirits.com
    I think there is a CSS problem with it, but I can't figure out what the issue is. It appears that the content is getting pushed far down the page or is not loading correctly. I am using Dreamweaver CS5.
    The site displays properly in IE 9, Safari, Chrome and Firefox (both on Mac and PC) and looks fine on Android and iPhones.
    Any help would be appreciated!

    Hi
    Whilst you have included the shiv for IE8 and below to recognize the html5 syntax, you have also used your own syntax - e.g.
    <sidebar1>
    is not an html or html5 tag and will not be interpreted correctly by IE8 or below. Many modern browsers, (especially the html5 aware) will allow you to use 'custom' tags, but it is not advisable to do do so, as the behavior is unpredictable.
    PZ

  • Nautilus 3.16 Cannot double-click with Icon-View to open items

    I'm updated testing/nautilus-3.16, and it cannot double-click to open ever items.
    But goto Preferences -> Behavior to set ' Single click to open items '
    Single click is working on nautilus, It's can single click to open items.
    And goto Preferences -> Default View to set 'List View'
    Double click is working with 'List View'.
    Not have anything error code in Terminal.
    And I reset gconf and dconf, Icon View with double-click still not work.
    How to solve it?
    Last edited by MayKiller (2015-04-02 10:55:18)

    ewaller wrote:
    Moving to testing.
    Maykiller, you reported the thread to the moderators.  Did you perhaps mean to reply to the thread?
    Sorry for that, I clicked 'report', it's wrong.
    I was mean it is reply for that user...
    Last edited by MayKiller (2015-04-04 12:42:22)

  • Why is the search and logins fields are black when using AOL

    Why is the search and logins fields are black when using AOL??

    M3nth,
    Seems like we're all asking the same question
    As tst says... try not to use the one at the bottom.. it's ... hummm..
    It's behavior is unpredictable...
    As for the multiple listing I'll have to read Molly's response on this (I asked the same question is the "Xtreme thread")
    JLV
    === EDIT ===
    Hi Molly,
    I read your answer on the bottom search engine..
    That's what I thought it did... but it didn't work for me.. I tried to use it to find some of my own posts within LV.. and it didn't find anything.
    The search was : serial
    I did this while reading a LV question of the subject.
    I shall experiment with the search engine again and report my findings.
    R.Message Edited by JoeLabView on 03-17-2005 02:24 PM

  • FPGA Sampling probe display error

    In LabView 2014F1, I discovered a very disturbing bug.  Take a sampling probe window I've been working with in order to ferret out issues with an FPGA sub-vi:
    Scrolling left and right using the mouse results in changes to signal alignment! Which one is correct?  It's difficult to know...
    Re-running the simulation (DEN based using a CSV file as a vector input) without touching the probe window results in a identically aligned signal set to the original window (But signals still shift vertically which is highly irritating)
    This should be considered a critical bug given that the behavior is unpredictable and results in incorrect signal display. The probe window is critical to debugging FPGA code in LV2014 and if it can’t be trusted to display actual data relationships, it is entirely useless. It should never have made it into the production release of LabView FPGA in this condition.

    xl600
    I understand your frustration, in order to be able to report this bug, we need to be able to reproduce the error. I have tried zomming in and out and moving the scroll in the Sampling Probe Watch Window in my computer (2014 FPGA Module), but the lines do not lose alignment.
    I was wondering if you could post a zip file with a simplified version of your code, that behaves as you describe, and the steps you follow to reproduce the issue in that code, so we can see the same behavior in our side?
    WenR

  • Is inactive analog output will be at high impedance or cut off state?

    Hey 
    I'm using the NI 6229 analog outputs.
    I would like to know if there is a tri-state or high impedance state for those  analog output when it is not in use? 
    Solved!
    Go to Solution.

    Hello amco,
    From the description of your project, I'm envisioning two probes attached to different points along a single trace on a PCB.
    It is certainly not recommended to have two analog output lines attached to the same channel.  As you have experienced, the behavior is unpredictable.  In a worst-case-scenario, one could potentially damage the AO line that is not actively driving the channel.
    So we do need to find a configuration that makes the unusued AO channel electrically separated from the channel-under-test.  One option would be to introduce an electromechanical switch.  This will add some complexity to your setup and your code, but it will permit you to send the signal from AO-0, disconnect AO-0, connect AO-1 and send a signal from AO-1 — all in a very short amount of time.
    Best regards
    Matthew H.
    Applications Engineer
    National Instruments

  • Layers - Paste not remembering layers when copying

    I'm using AI CC2014.  When trying to copy certain layers between files the layers are being "released" and I'm losing my layer structure. This behavior is unpredictable and seems to be limited to certain layers.  Other layers can be pasted retaining their sub-layer structure.  The "Paste Remembers Layers" option is active.  Am I missing something obvious?

    Monika,
    Forgive me for being a bit lazy but I've closed my files down after we manually copied and pasted each sub layer from file to file to rebuild the structure.  It's pretty straightforward though... I had a top layer with nested layers.  When selecting all of the layers and copying  them from one file to another the nested layers where released somewhat randomly.  That is to say I didn't end up with a  completely flat structure - some nested layers retained their structure and others released their artwork to the top layer.  It didn't matter whether "paste remembers layers" was active or not.  It didn't matter whether I used COMMAND V or COMMAND F. 
    When I tried to replicate the problem using a new file I could not and the behavior was as one would expect.
    I verified the problem sending my problem files to an associate who experienced the same behavior.  When we could not get the layer structure to copy we decided to rebuild the sub layers one at a time - copying the sub layers over one at a time. 
    I'm working with a team on a UI and we each "own" separate parts of the interface.  We rely on the ability to merge our work into a "master file" on a daily basis.  We each "own" certain layers and if we can't easily drop in our updated artwork (layers intact) it's pretty awful.  I assumed I was doing something wrong until my associate had the same problem.
    This seems like a bug and not user error unless I've changed some setting that I'm not aware of.

  • Running RIPv2 and OSPF at the same time

    What are the problems with running RIPv2 and OSPF at the same time if any? I have the gear capable of that and I have been doing this for over a year now. I wanted to get rid of RIP but my couterpart is scared because he is not OSPF skilled. I do have some remote sites with old 1601s to consider. Any suggestions or recommendations.
    Thanks

    Hi Friend,
    OSPF is far better than RIP when it comes to performance and advatnages compared to RIP and no doubt in that though it is complex to implement compared to RIP but once done it is smooth.
    It is important to have a very well designed network with OSPF otherwise the behavior is unpredictable sometimes and it may not give desired results.
    Also for your low capability routers like 1601s you can put them into stub or total stubby area so that they may have less load on them.
    HTH
    Ankur

  • Tracking speed changes in a script

    Hi there. I found the commands to change the mouse tracking speed with the defaults command (http://fplanque.com/info-tech/apple/make-your-mouse-faster-on-mac-os-x). Which, I'm glad I did because I was going to edit ~/Library/Preferences/.GlobalPreferences.plist (convert to xml first with plutil of course) and hope that would do it. But, it seems as if changing the values here doesn't have any bearing until you log out and log in again. Yet, when you change the value in the System Preference Pane, it occurs right away.
    Is there any way I can mimic the System Preferences behavior where it occurs right away? I have two mice (Magic Mouse and a Microsoft Mouse) at home/work and they have very different internal sensitivity levels. I was hoping to make two shell scripts to adjust the tracking speed on the fly, but it appears as though I can't without a log out (which takes significantly more time than using the PrefPane).

    Does it have to do with this?
    https://discussions.apple.com/thread/3686148?tstart=0
    If all you want to do is smooth out bad camera work, use the Smooth Behavior in Motion. Make sure you have Optical Flow selected.
    Have fun
    x

Maybe you are looking for

  • Question for those with memory issues on k8n neo plat

    I have been having issues with my memory on the k8n neo platinum board since i built the system last month and i just recently discovered a fact I had overlooked. I Have discovered that  if i test the system while it is cool (having sat turned off ov

  • ITunes can only perform one thing at a time

    Ever since updating to the latest version of iTunes on my dual core mac mini, iTunes can only perform one task at a time beach balling the entire time.  For example if it is downloading a podcast, and I try and watch something off my apple tv via hom

  • Unable to open files made in iWork '08 without installing original software

    After re-installing my original Mac OSX to try to cure another issue, I find I'm unable to open my Numbers '08 files unless I re-install the original software. The following message appears: Files that iWork needs are missing. To restore the missing

  • PSE 7 shutting down

    I open PSE 7 and click edit.  The a box comes ups syaing adobe photoshop elements (editor) has stopped working and must close.  I've tried uninstalling and reinstalling.  I can't seem to find the problem.  Please help!

  • Product Cost Sheet report from BW

    Hi, I would like to know if somone has generated the cost sheet report for product/material combination in BW. I have a requirement for report as follows: Cost Sheet for FG 101                                           Qty     Uom    Price    Resourc