JButton is created "selected" even when I declare it not to be so

         * Generate value and conditions for {@link #backButton}
        private void generateBackButton() {
            SimpleBrowser.this.backButton = new JButton("<--");
            SimpleBrowser.this.backButton.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    SwingUtilities.invokeLater(new Runnable() {
                        public void run() {
                            SimpleBrowser.hasClickedBack = true;
                            SimpleBrowser.this.currentHistoryIndex--;
                            SimpleBrowser.this.setURL(
                                    (URL)SimpleBrowser.this.actualHistoryURLVector.get(
                                    SimpleBrowser.this.currentHistoryIndex)
                            SimpleBrowser.this.setURLPath(SimpleBrowser.this.getURL().toString());
                            SimpleBrowser.this.processor.processURL(SimpleBrowser.this.getURL());
            SimpleBrowser.this.backButton.setSelected(false);
            SimpleBrowser.this.backButton.setFont(SimpleBrowserGlobals.FONT);
        }The moment this particular JButton is created it is created as "selected", even though I have done "setSelected(false)". It does not fire unless I click onto it, of course, but it appears as if I did and that's not good. Is there a way I can fix this?
Thanx
Phil

If you need further help then you need to create a
[url
http://homepage1.nifty.com/algafield/sscce.html]Short,
Self Contained, Compilable and Executable, Example
Program (SSCCE) that demonstrates the incorrectbehaviour, because I can't guess exactly what you are
doing based on the information provided.
Don't forget to use the [url
http://forum.java.sun.com/help.jspa?sec=formatting]Cod
e Formatting Tags so the posted code retains
its original formatting.
This is the absolute simplest class I could create that does the same thing: creates a JButton in a JPanel in a JFrame but the JButton appears already selected:
* SimpleFrame.java
* Created on March 16, 2007, 12:27 PM
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
package com.ppowell.tools.ObjectTools;
import java.awt.*;
import javax.swing.*;
* @author Phil Powell
public class SimpleFrame extends JFrame {
    JButton backButton;
    JPanel topPanel;
    /** Creates a new instance of SimpleFrame */
    public SimpleFrame() {
        initComponents();
    // ADD EVERYTHING TO THE FRAME
    public void addToFrame() {
        setLayout(new GridBagLayout());
        GridBagConstraints c = new GridBagConstraints();
        c.gridx = 0;
        c.gridy = 0;
        c.anchor = GridBagConstraints.NORTHWEST;
        add(topPanel, c);
     * Generate value and conditions for {@link #backButton}
    private void generateBackButton() {
        backButton = new JButton("<--");
        backButton.setSelected(false);
        backButton.setFocusPainted(false);
        backButton.setFocusTraversalKeysEnabled(false);
        backButton.setFont(new Font("Arial", Font.PLAIN, 12));
    // SET EVERYTHING UP
    public void initComponents() {
        topPanel = new JPanel(true);
        generateBackButton(); // GENERATE THE JBUTTON
        layoutTopPanel();     // LAYOUT THE TOP PANEL BY PLACING JBUTTON INTO IT
        addToFrame();         // ADD PANEL TO FRAME
        showFrame();          // SHOW FRAME
    // LAYOUT THE TOP PANEL
    public void layoutTopPanel() {
        topPanel.setLayout(new GridBagLayout());
        GridBagConstraints c = new GridBagConstraints();
        c.gridx = 0;
        c.gridy = 0;
        c.anchor = GridBagConstraints.NORTHWEST;
        topPanel.add(backButton, c);
    // SHOW THE FRAME
    public void showFrame() {
        // CODE BORROWED FROM http://today.java.net/pub/a/today/2003/12/08/swing.html WITH MODIFICATIONS
        try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        } catch (UnsupportedLookAndFeelException e) {
            System.out.println("Unable to load native look and feel");
        } catch (ClassNotFoundException e2) {
            e2.printStackTrace();
        } catch (InstantiationException e3) {
            e3.printStackTrace();
        } catch (IllegalAccessException e4) {
            e4.printStackTrace();
        pack();
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setVisible(true);
    public static void main(String[] args) {
        SimpleFrame simp = new SimpleFrame();
}

Similar Messages

  • Only one expression can be specified in the select list when the subquery is not introduced with EXISTS.

    hi all
    i have a table that name is:
    TiketsHeader 
    but i used this code
    SELECT TicketsHeaderId, Active, TH.PersonRef,P.Fname + ' ' + P.Lname AS NF, Serial, TicketsCnt, StartSerial, EndSerial, KindDate, StratDate, EndDate,
    MonthsRef1,(SELECT * FROM dbo.Months M WHERE M.MonthsId= MonthsRef1 ) AS MonthsName1 , MonthsRef2, MonthsRef3, WeekDaysRef,
    PoolTimesRef, TH.Descreption
    FROM dbo.TiketsHeader TH
    INNER JOIN Person P ON P.PersonId= TH.PersonRef
    i see this error:
    Msg 116, Level 16, State 1, Line 2
    Only one expression can be specified in the select list when the subquery is not introduced with EXISTS.
    how to solve it
    please help me
    Name of Allah, Most Gracious, Most Merciful and He created the human

    SELECT TicketsHeaderId, Active, TH.PersonRef,P.Fname + ' ' + P.Lname AS NF, Serial, TicketsCnt, StartSerial, EndSerial, KindDate, StratDate, EndDate,
    MonthsRef1,(SELECT * FROM dbo.Months M WHERE M.MonthsId= MonthsRef1 ) AS MonthsName1 , MonthsRef2, MonthsRef3, WeekDaysRef,
    PoolTimesRef, TH.Descreption
    FROM dbo.TiketsHeader TH
    INNER JOIN Person P ON P.PersonId= TH.PersonRef
    A Sub query like this can only return one column, not serveral like here with the star *. Replace the star by one column Name that you want to query.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Msg 116, Level 16, State 1, Line 6 Only one expression can be specified in the select list when the subquery is not introduced with EXISTS.

    Hello,
    Can anyone help me?
    select year(po.rdata) as 'Ano', 
    sum(etotal) as 'Valorp' ,
    (select year(fo.data),Sum(etotal) 
    FROM fo (nolock) 
    where  not exists ( select 1 from pl (nolock) where pl.adoc = fo.adoc and pl.cm = fo.doccode ) 
    group by year(fo.data))as 'Valorap'   
    from po 
    group by year(po.rdata)
    order by year(po.rdata)
    Error 
    Msg 116, Level 16, State 1, Line 6
    Only one expression can be specified in the select list when the subquery is not introduced with EXISTS.
    Consultora

    Hi Prashanth,
    select year(po.rdata) as 'Ano',
    sum(etotal) as 'Valorp' ,
    (select Sum(etotal)
    FROM fo (nolock)
    where not exists ( select 1 from pl (nolock) where pl.adoc = fo.adoc and pl.cm = fo.doccode )
    group by year(fo.data))as 'Valorap'
    from po(nolock)
    group by year(po.rdata)
    order by year(po.rdata)
    Gives me the error: 
    Msg 512, Level 16, State 1, Line 1
    Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression.
    Thanks
    Consultora

  • I am unable to tell when the battery is completely charged.  I have showing the battery symbol with the bolt-this is present even when the device is not being charged.  And it is always showing 2% charge.

    I am unable to tell when the battery is completely charged.  I have showing the battery symbol with the bolt-this is present even when the device is not being charged.  And it is always showing 2% charge.

    Are you using the AC wall charger?
    To check status, I use System Activity Monitor app http://itunes.apple.com/us/app/system-activity-monitor/id306192663?mt=8 and System Status Lite app http://itunes.apple.com/us/app/system-status-lite-device/id407752428?mt=8
     Cheers, Tom

  • HT5312 Hello I have purchased the account from the shop for mobile phones and when Dgt a balance of $ 75 U.S. dollars tried to go down some programs, but ask me to answer questions and there have even when the shop is not accepted to give me any data abou

    Hello I have purchased the account from the shop for mobile phones and when Dgt a balance of $ 75 U.S. dollars tried to go down some programs, but ask me to answer questions and there have even when the shop is not accepted to give me any data about amyl which bearing correctly and password also trueThe name is true, how can I re-answer these questions??? replace phones is that Ahab Please give me the quick fix and sent the answer to Emile is:[email protected]

    Well I can't understand your english at all. If you need to reset your security questions, then try this:
     Account Security Team (AST) 
    Check the AppleCare number for your country here:
    http://support.apple.com/kb/HE131
    Call them up, and let them know you would like to be transferred to the Account Security Team.
    Or… click on the blue "Start your support request online" links.

  • Finding this error when running the below query - Only one expression can be specified in the select list when the subquery is not introduced with EXISTS.

    select 
    min(h.[Spcl Order]),
    (select (case when sum(pro.[Quantity]) is null then 0 else sum(pro.[Quantity]) END))
    +
    (select (case when sum(A.[Quantity]) is null then 0 else sum(A.[Quantity]) END),
    min(b.[Posting Date]),min(c.[Order No]),min(d.[Prod_Order No]),min(e.[No]),
    min(f.[Item Category Code]),min(g.[Location Code]),min(i.[Spcl Order_Purch])
    from [tablename2] A 
    inner join [sample].[dbo].[Posting Date_PRL] as b on a.[Posting Date]=b.[Posting Date]
    inner join [sample].[dbo].[Order No_PRL] as c on a.[Order No_]=c.[Order No]
    inner join [sample].[dbo].[Prod_ OrderNo_PRL] as d on a.[Prod_ Order No_]=d.[Prod_OrderNo] 
    inner join [sample].[dbo].[No_PRL] as e on a.[No_]=e.[No]
    inner join [sample].[dbo].[Item Category Code_PRL] as f on a.[Item Category Code]=f.[Item Category Code]
    inner join [sample].[dbo].[Location Code_PRL] as g on a.[Location Code]=g.[Location Code]
    inner join [sample].[dbo].[Spcl Order_PRL] as i on a.[Spcl Order]=i.[Spcl Order_Purch]
    where ((A.[Item Category Code] = 'STYLES') and (A.[Prod_ Order No_]='') and ( A.[Buy-from Vendor No_] in ('S02052')) AND (A.[Quantity]>0) 
    AND ( A.[Posting Date] = pro.[Finished Date])))
    from [tablename1] pro 
    inner join [sample].[dbo].[Spcl Order_PO] as h on Pro.[Spcl Order]=h.[Spcl Order]
    where ((pro.[Status]=4) and (pro.[Finished Date] ='2013-10-10' )) group by pro.[Finished Date]

    As other suggested, please find the column list...there are many columns in your subquery...
    eg:
    Select *,(Select 1,2) From (Values(1),(2))A(MonthID) -- will not work
    where as 
    Select *,(Select 1) From (Values(1),(2))A(MonthID) --will work
    Your case:
    select 
    min(h.[Spcl Order]),
    (select
    (case when sum(pro.[Quantity]) is null then 0 else sum(pro.[Quantity]) END))
    +
    (select (case when sum(A.[Quantity]) is null then 0 else sum(A.[Quantity]) END),
    min(b.[Posting Date]),min(c.[Order No]),min(d.[Prod_Order No]),min(e.[No]),
    min(f.[Item Category Code]),min(g.[Location Code]),min(i.[Spcl Order_Purch])
    from [tablename2] A 
    inner join [sample].[dbo].[Posting Date_PRL] as b on a.[Posting Date]=b.[Posting Date]
    inner join [sample].[dbo].[Order No_PRL] as c on a.[Order No_]=c.[Order No]
    inner join [sample].[dbo].[Prod_ OrderNo_PRL] as d on a.[Prod_ Order No_]=d.[Prod_OrderNo] 
    inner join [sample].[dbo].[No_PRL] as e on a.[No_]=e.[No]
    inner join [sample].[dbo].[Item Category Code_PRL] as f on a.[Item Category Code]=f.[Item Category Code]
    inner join [sample].[dbo].[Location Code_PRL] as g on a.[Location Code]=g.[Location Code]
    inner join [sample].[dbo].[Spcl Order_PRL] as i on a.[Spcl Order]=i.[Spcl Order_Purch]
    where ((A.[Item Category Code] = 'STYLES') and (A.[Prod_ Order No_]='') and ( A.[Buy-from Vendor No_]
    in ('S02052')) AND (A.[Quantity]>0) 
    AND ( A.[Posting Date] = pro.[Finished Date])))
    from [tablename1] pro 
    inner join [sample].[dbo].[Spcl Order_PO] as h on Pro.[Spcl Order]=h.[Spcl Order]
    where ((pro.[Status]=4) and (pro.[Finished Date] ='2013-10-10' )) group by pro.[Finished Date]

  • Why is my battery discharge completely overnight even  when  the device is not in use?

    Why is my iPod battery draining completely overnight even when not being used and no apps are left open?

    That happens sometimes when you have wifi on and some other things on. To maximize battery life see:
    Apple - Batteries - iPod

  • What would cause a subvi to show its FP even when it is set not to show (default setting)?

    I have a subvi that suddenly decided to show itself even when instructed not to.  What kinds of things would cause this?
    Thanks!
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
    Solved!
    Go to Solution.

    altenbach wrote:
    Does it still do it if you place the subVI into a new, blank VI? If so, can you attach the subVI?
    Hi, Alt:
    It seems to work fine when placed into a new VI.
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
    Attachments:
    badly behaving VI + subvis.zip ‏171 KB

  • Is it true that music pauses when a phone call comes in even when the ios6 'do not disturb' feature is activated?

    is it true that music pauses when a phone call comes in even when the 'do not disturb' feature is activated?
    thanks in advance

    You could test it out and let us know!
    Best of luck.

  • Why does firefox update itself even when i tell it not to? Everytime it updates itself it messes up and crashes, make it stop. I like firefox but if I keep having to unistall and reinstall it ever month to every other month I am going to be done with it

    Fire Fox updates itself even after I tell it not to. The new version it updates to crashes, adobe flash player doesn't work on it and it takes forever to load when it does work. I have used fire fox for years now but if this keeps up I will find something else to use.
    == This happened ==
    A few times a week
    == When you came out with fire fox 6.6 or whatever

    I also have this problem of Firefox updating by itself even when I turn off auto-update.
    For whatever reason, there are situations where you do not want to update or download a large file, because you're working offline, have a slow connection, or have a very low download allowance etc. Usually the update doesn't work and cause Firefox to crash. After that it cannot be started again. This is with Firefox Portable but I think I've had this problem the normal Firefox. With the portable version I can just back up a single folder but it is still time wasting and annoying.
    I've noticed that when I start Firefox with auto-update turned off, it changes the options to auto-update, it also does this periodically. So every time I start Firefox I have to turn off auto-update, and I have to do this from to time because Firefox will by itself turn back on the auto-update.

  • No rows selected even when SELECT granted.

    I have a view that I created in OEM 12c owned by SYSMAN.  The view is the following:
    create or replace view chk_dbmango as
    SELECT LOWER (a_size.target_name) target_name,
             tphost.host_name,
             tpba.business_area,
             tpd.contact,
             tpapp.application,
             tpenv.environment,
             ROUND (AVG (a_size.size_gb), 2) SIZE_GB,
             ROUND (AVG (a_size.used_gb), 2) USED_GB,
             ROUND (AVG (a_size.size_gb - a_size.used_gb), 2) FREE_GB,
             ROUND (AVG ((a_size.used_gb * 100) / DECODE (a_size.size_gb, 0, 1, a_size.size_gb))) USED_PCT
        FROM (  SELECT t.target_name,
                       t.target_guid,
                       SUM (d.tablespace_size) / 1024 / 1024 / 1024 size_gb,
                       SUM (d.tablespace_used_size) / 1024 / 1024 / 1024 used_gb
                  FROM sysman.mgmt$db_tablespaces d, sysman.mgmt$target_type t
                 WHERE (t.target_type = 'rac_database'
                    OR (t.target_type = 'oracle_database'
                   AND t.TYPE_QUALIFIER3 <> 'RACINST'))
                   AND d.target_name(+) = t.target_name
                   AND t.metric_name = 'tbspAllocation'
                   AND (t.metric_column = 'spaceAllocated')
              GROUP BY t.target_name, t.target_guid, t.metric_column) a_size,
             (  SELECT property_value AS host_name,
                       target_guid
                  FROM sysman.mgmt$target_properties
                 WHERE property_name = 'MachineName') tphost,
             (   SELECT property_value AS business_area,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_line_of_bus') tpba,
             (   SELECT property_value AS contact,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_contact') tpd,
             (   SELECT property_value AS application,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_comment') tpapp,
             (   SELECT property_value AS environment,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_deployment_type') tpenv
       WHERE a_size.target_guid = tphost.target_guid
         AND a_size.target_guid = tpba.target_guid(+)
         AND a_size.target_guid = tpd.target_guid(+)
         AND a_size.target_guid = tpapp.target_guid(+)
         AND a_size.target_guid = tpenv.target_guid(+)
    GROUP BY a_size.target_name,
             tphost.host_name,
             tpba.business_area,
             tpd.contact,
             tpapp.application,
             tpenv.environment
    ORDER BY 1;
    I granted SELECT on this view to user svcmango.  When connected as svcmango and query the view, I get no rows selected.  Connected as sysman I get 99 rows.  There must be something simple that I have overlooked.  Please help.  Thanks.

    Here are the steps taken:
    OMS12C> conn SYSMAN
    Enter password:
    Connected.
    OMS12C> create or replace view chk_dbmango as
    SELECT LOWER (a_size.target_name) target_name,
             tphost.host_name,
             tpba.business_area,
             tpd.contact,
             tpapp.application,
             tpenv.environment,
             ROUND (AVG (a_size.size_gb), 2) SIZE_GB,
             ROUND (AVG (a_size.used_gb), 2) USED_GB,
             ROUND (AVG (a_size.size_gb - a_size.used_gb), 2) FREE_GB,
             ROUND (AVG ((a_size.used_gb * 100) / DECODE (a_size.size_gb, 0, 1, a_size.size_gb))) USED_PCT
        FROM (  SELECT t.target_name,
                       t.target_guid,
                       SUM (d.tablespace_size) / 1024 / 1024 / 1024 size_gb,
                       SUM (d.tablespace_used_size) / 1024 / 1024 / 1024 used_gb
                  FROM sysman.mgmt$db_tablespaces d, sysman.mgmt$target_type t
                 WHERE (t.target_type = 'rac_database'
                    OR (t.target_type = 'oracle_database'
                   AND t.TYPE_QUALIFIER3 <> 'RACINST'))
                   AND d.target_name(+) = t.target_name
                   AND t.metric_name = 'tbspAllocation'
                   AND (t.metric_column = 'spaceAllocated')
              GROUP BY t.target_name, t.target_guid, t.metric_column) a_size,
             (  SELECT property_value AS host_name,
                       target_guid
                  FROM sysman.mgmt$target_properties
                 WHERE property_name = 'MachineName') tphost,
             (   SELECT property_value AS business_area,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_line_of_bus') tpba,
             (   SELECT property_value AS contact,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_contact') tpd,
             (   SELECT property_value AS application,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_comment') tpapp,
             (   SELECT property_value AS environment,
                        target_guid
                   FROM sysman.mgmt$target_properties
                  WHERE property_name = 'orcl_gtp_deployment_type') tpenv
       WHERE a_size.target_guid = tphost.target_guid
         AND a_size.target_guid = tpba.target_guid(+)
         AND a_size.target_guid = tpd.target_guid(+)
         AND a_size.target_guid = tpapp.target_guid(+)
         AND a_size.target_guid = tpenv.target_guid(+)
    GROUP BY a_size.target_name,
             tphost.host_name,
             tpba.business_area,
             tpd.contact,
             tpapp.application,
             tpenv.environment
    ORDER BY 1;
      2    3    4    5    6    7    8    9   10   11   12   13   14   15   16   17   18   19   20   21   22   23   24   25   26   27   28   29   30   31   32   33   34   35   36   37   38   39   40   41   42   43   44   45   46   47   48   49   50   51   52   53   54   55
    View created.
    Elapsed: 00:00:00.04
    OMS12C> select count(*) from chk_dbmango;
      COUNT(*)
            99
    1 row selected.
    Elapsed: 00:00:00.48
    OMS12C> grant select on chk_dbmango to svcdbmango;
    Grant succeeded.
    Elapsed: 00:00:00.01
    OMS12C> conn svcdbmango
    Enter password:
    Connected.
    OMS12C> select count(*) from sysman.chk_dbmango;
      COUNT(*)
             0
    1 row selected.
    Elapsed: 00:00:00.73
    OMS12C>

  • SAP RM: How can I create a Node when the node is not visible for the user

    Hi,
    Product: SAP records Management for Public Sector
    Version: 7.00
    is it possible to create a instance node when the model not is not visible for the active user?
    I looked in the CL_SRM_XML_REC_MODEL but every methode I used gave me no results with the special user.
    Regards and thanks for every beginning
    Fanninger Thomas

    Hi,
    here an example.
    When I use the method CL_SRM_XML_REC_INSTANCE->IF_SRM_XML_POID~GET_ALL( POID_TAB COUNT_USER_REST COUNT_POID_AUTH ).
    When I used the user with no right for viewing the invisible nodes I get no elements in the tabelle POID_TAB and 38 in the value COUNT_USER_REST.
    So did any one know a solution you can I create a nodes and change the restriction for the new node with the normal user?
    Regards
    Fanninger Thomas
    Edited by: Thomas Fanninger on Feb 5, 2008 8:15 AM

  • Completed items display even when I tell them not to

    Suddenly my ICal is showing selected (but not all) of my completed items from days past even though I DO NOT have "Show All Completed Items" selected. I do not want items I finished up last week lingering in my To-Do list (it's overwhelming enough).
    What can I do to resolve this?

    Hello scwest,
    I have to agree with ExJamJus, you need to do a BIOS update. 
    I also agree that there is a chance it is your Power Management driver or program.
    Here is a link to the Power Management and BIOS updates.
    http://support.lenovo.com/en_US/downloads/default.page
    If possible do a fresh install of the Ultranav utility and  driver.  In other words uninstall the current driver and install the new one from the link above.  It is located under the mouse and keyboard tab.
    I hope this helps,
    Alex
    Was this or another post on the forum helpful? Click the star on the left side of the screen to give kudos! Did someone solve the problem you encountered? Click Solution Provided to let us know!
    What we Do in Life will Echo through Eternity. -Maximus Aurelius

  • Flickery playback and export even when source footage is not flickery

    when premiere plays certain clips back it looks flickery
    these clips are not flickery to begin with,  but they become flickery when part of a premiere project, there seems to be no rhyme nor reason for it
    any ideas how i can solve it?

    there is no dialogue box coming up for me .....
    I choose 'add premiere pro sequence'  , it just says it is loading, a little yellow bar loads from left to right,  then nothing.   i can see a greyed out text belown stating "sequence not available" and what appears to be a tick box beside it, but i dont know what it refers to or how i shall correct that if it actually means the sequence is not avaIable.  I have , to the best of my knowedge, created a sequence within premiere by choosing the option "render in out"  , i dont know what else im supposed to do.

  • LR makes auto adjustments even when prefs are set not to

    Using LR 5.5 on a Mac with Mavericks.
    I import photos in LR then when I begin to look through them, one by one, in Library Module Loupe view, I can see the photo the way I took it (low contrast and saturation) for a second while it's "loading" then LR seems to make an adjustment. I looks like it adds a lot of contrast. I believe I have all of the auto adjustments turned off in preferences.
    I took a video of it below. The change happens quickly.
    http://nickdantonio.com/wp-content/uploads/2014/06/IMG_0173.mov
    What is happening here and how to do fix it?
    Thanks.

    After viewing the movie, what I saw is what I would expect to see with LR set to the defaults.
    After the image is imported, the initial view will use the JPG preview contained in the raw file, this JPG preview will have all your camera settings baked into it.. After the raw file is processed, all your camera settings are ignored and the default LR profile is applied to it. The default LR profile is the "Adobe Standard" profile, which does up the contrast and saturation.
    To prevent similar discrepancies, I created a user preset that applies the "camera neutral" profile and assigned that preset as the "apply during import".

Maybe you are looking for