Numeric Row Height Value Fixed but Different

Hi Everyone,
On my front panel, I have a 1D array (column) of Numerics next to a 1D array (column) of strings. I need them to line up. I believe that the row height for numerics is not changeable, but for strings you can change it.
Here is my problem, on different PCs I have found that the numeric row heights have different fixed values. On my development PC (LabVIEW 2011, 32 bit), the row height is 22 pixels. On all other test PCs (also LabVIEW 2011, 32 bit) the row height is 20 pixels. I need the arrays to line up on all PCs, but it looks different.
Does anyone have any suggestions on how I can fix this issue?
Solved!
Go to Solution.

"Get Text rect.vi"will tell you how big the bounding rectangle is for text rendered using the font you choose while also concidering "Bold" etc.
Using that function should give you a way of dtermining how large the text ends-up being and then you JUST* have to sett all of the proeprties to match.
Ben
* yes, the word "JUST" is a four letter word in my book as well.
Ben Rayner
I am currently active on.. MainStream Preppers
Rayner's Ridge is under construction

Similar Messages

  • I have looked all over on how to get the close tab x back on the tabs including disabling all addon, safemode, and about config value fix but cannot get x's back on tab. What next?

    Title says it all.

    Look at the pref browser.tabs.closeButtons on the <b>about:config</b> page.
    * http://kb.mozillazine.org/browser.tabs.closeButtons
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    Create a new profile as a test to check if your current profile is causing the problems.
    See:
    * [[Basic Troubleshooting#Make_a_new_profile|Basic Troubleshooting&#58; Make a new profile]]
    If that new profile works then you can transfer some files from the old profile to that new profile (be careful not to copy corrupted files)
    See:
    * http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Fixing the row height in table

    Hi All,
    In my table column i am displaying address.  Address field is of type STRING_TABLE. (This is needed to display address in the format shown in the example below) As a result of this the row height changes depending on the length of the address.
    Hence all the rows in the table are of different heights.
    For Example i am displaying the output as shown below.
    39 Car Street,
    abcdefg,
    pincode
    india,
    ph no.
    Now is it possible set the height of the row so that all the rows in the table are of fixed height?
    Please help.
    Thanks in advance.

    closed

  • Comparing row values in two different tables

    Hello,
    Does anyone know if it is possible to compare (and possibly highlight - which I know can be done) row values in two different tables?
    I have a ZIP Code column in table A that I want to compare to a ZIP Code column in table B and highlight those ZIP Codes that are present in table B but not in table A etc. Is this possible?
    Thanks,
    Kenneth

    To be able to apply conditional formatting, I must edit the formulas this way.
    =IF(ISBLANK(B)," ",IF(ISERROR(VLOOKUP(B,Tableau 2 :: B,1,0))," ",VLOOKUP(B,Tableau 2 :: B,1,0)))
    =IF(ISBLANK(B)," ",IF(ISERROR(VLOOKUP(B,Tableau 1 :: B,1,0))," ",VLOOKUP(B,Tableau 1 :: B,1,0)))
    I replaces the four empty strings by strings containing one space character.
    In the field supposed to contain the text which is not contained I just entered a single space character.
    Yvan KOENIG (from FRANCE vendredi 12 septembre 2008 20:52:11)

  • Better approach for checking column values between two different rows

    My requirement is to find best Approach to find difference between column values of two different rows.Below I've mentioned two different
    approaches I'm thinking of,but I'd like to know is there any other better approach.
    version details
    SQL> SELECT *
      2  FROM V$VERSION;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    CORE    11.1.0.7.0      Production
    TNS for Solaris: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - ProductionTable creation script
    CREATE TABLE R_DUMMY
       (CA_ID VARCHAR2(16) NOT NULL ENABLE,
         CA_VER_NUM NUMBER(4,2) NOT NULL ENABLE,
         BRWR_SHORT_NAME VARCHAR2(25 CHAR),
         sic_code     number,
         FAC_ID VARCHAR2(10) NOT NULL ENABLE
    / insert script
    insert into r_dummy (CA_ID, CA_VER_NUM, BRWR_SHORT_NAME, sic_code, FAC_ID)
    values ('CA2001/11/0002', 2.00, 'Nandu',1234, 'FA000008');
    insert into r_dummy (CA_ID, CA_VER_NUM, BRWR_SHORT_NAME, sic_code, FAC_ID)
    values ('CA2001/11/0002', 3.00, 'SHIJU',456, 'FA000008');Desired O/P :
    ca_id               fac_id          column_name          previous name          after_modification
    CA2001/11/0002          FA000008     BRWR_SHORT_NAME          Nandu               SHIJU
    CA2001/11/0002          FA000008     sic_code          1234               456My approach
    select      ca_id,fac_id,column_name,
         decode(column_name,'BRWR_SHORT_NAME',lg_brwr,lg_sic) previous_name ,
         decode(column_name,'BRWR_SHORT_NAME',ld_brwr,ld_sic) after_modification
    from
         select
                   case
                        when ld_brwr != lg_brwr then
                        'BRWR_SHORT_NAME'
                        when ld_brwr != lg_brwr then
                        'sic_code'
                   end
              ) column_name,ca_id,fac_id,lg_brwr,ld_brwr,ld_sic,lg_sic
         from     (
              select ca_id,fac_id,lag_brwr,ld_brwr,ld_sic,lag_sic
              from
                        Select      lead(brwr_short_name,1) over(partition by ca_id,fac_id) ld_brwr,
                             lag(brwr_short_name,1) over(partition by ca_id,fac_id) lg_brwr,
                             lead(sic_code,1) over(partition by ca_id,fac_id) ld_sic,
                             lag(sic_code,1) over(partition by ca_id,fac_id) lg_sic,
                             ca_id,fac_id
                        from r_dummy
              where (ld_brwr != lg_brwr or ld_sic != lg_sic)
    )2nd Approach :
    =============
    select      ca_id,fac_id,column_name,
         decode(column_name,'BRWR_SHORT_NAME',lg_brwr,lg_sic) previous_name ,
         decode(column_name,'BRWR_SHORT_NAME',ld_brwr,ld_sic) after_modification
    from
         select
                   case
                        when ld_brwr != lg_brwr then
                        'BRWR_SHORT_NAME'
                        when ld_brwr != lg_brwr then
                        'sic_code'
                   end
              ) column_name,ca_id,fac_id,lg_brwr,ld_brwr,ld_sic,lg_sic
         from     (
              select ca_id,fac_id,brwr_short_name,sic_code
              from
                        Select      ca_id,fac_id,brwr_short_name lg_brwr,sic_code lg_sic
                        from     r_dummy
                        where     ca_ver_num = '2.00'
                   )o,(
                        Select      ca_id,fac_id,brwr_short_name ld_brwr,sic_code ld_sic
                        from     r_dummy
                        where     ca_ver_num = '3.00'
                              )n
              where      0.ca_id = n.ca_id
                   and 0.fac_id = n.fac_id
                   and (ld_brwr != lg_brwr or ld_sic != lg_sic)
    )Hi Experts,
         I've provided sample data where I'm checking for just two columns viz brwr_short_name ,sic_code,but in real time
    I've to check for 8 more columns so please suggest me with a better approach.
    I appreciate your precious suggestions.

    Hi,
    Thanks for posting the CREATE TABLE and INSERT statements; that really helps!
    Here's one wa. Like your 2nd approach, this uses a self-join:
    WITH     got_r_num     AS
         SELECT  ca_id
         ,     ROW_NUMBER () OVER ( PARTITION BY  ca_id
                                   ,                    fac_id
                             ORDER BY        ca_ver_num
                                 )    AS r_num
         ,     brwr_short_name
         ,     TO_CHAR (sic_code)     AS sic_code
         ,     fac_id
    --     ,     ...     -- Other columns (using TO_CHAR if needed)
         FROM     r_dummy
    ,     unpivoted_data     AS
         SELECT     *
         FROM     got_r_num
         UNPIVOT     INCLUDE NULLS
              (    txt
              FOR  column_name IN ( brwr_short_name          AS 'BRWR_SHORT_NAME'
                            , sic_code               AS 'SIC_CODE'
    --                        , ...     -- Other columns
    SELECT       p.ca_id
    ,       p.fac_id
    ,       p.column_name
    ,       p.txt          AS previous_name
    ,       a.txt          AS after_modification
    FROM       unpivoted_data   p
    JOIN       unpivoted_data   a  ON  p.ca_id     = a.ca_id
                           AND p.fac_id     = a.fac_id
                         AND p.column_name     = a.column_name
                         AND p.r_num      = a.r_num - 1
                         AND p.txt || 'X' != a.txt || 'X'
    ORDER BY  a.r_num
    ;To include other columns, add them in the 2 places where I put the comment "Other columns".
    Ca_ver_num can have any values, not just 2.00 and 3.00.
    This will show cases where a value in one of the columns changed to NULL, or where NULL changed to a value.
    There ought to be a way to do this without a separate sub-query like got_r_num. According to the SQL Language manual, you can put expressions in the UPIVOT ... IN list, but when I tried
    ...     UNPIVOT     INCLUDE NULLS
              (    txt
              FOR  column_name IN ( brwr_short_name          AS 'BRWR_SHORT_NAME'
                                 , TO_CHAR (sic_code)     AS 'SIC_CODE'
              )I got the error "ORA_00917: missing comma" right after TO_CHAR. Perhaps someone else can show how to eliminate one of the sub-queries.

  • How to fix the row-height in excel using ole2

    hi
    I want to fix row height in excel using ole2.
    i wrote the below code but no effect. please help me.
    Arg := ole2.create_arglist;
         ole2.add_arg(Arg,1);
         rrow := ole2.get_obj_property(WorkSheet,'Rows',Arg);
         ole2.destroy_arglist(arg);
         ole2.set_property(rrow,'Height',50);
    kanish

    It's solved
         ole2.set_property(rrow,'RowHeight',30);
    kanish

  • LinkedHashMap problem (Same key but different value)

    Dear Friends,
    There is problem in LinkedHashMap for same key but different values.
    I want both values of same key as Output.
    Plz help me from an example code & it's output
    LinkedHashMap<Object, LinkedList<Object>> linkhash = new LinkedHashMap<Object, LinkedList<Object>>();
    LinkedList<Object> ll6 = new LinkedList<Object>();
              LinkedList<Object> ll7 = new LinkedList<Object>();
              LinkedList<Object> ll9 = new LinkedList<Object>();
    objectName="Listitem";
              ll6.add("id\tlisti");
              ll6.add("tag\tlistcell");
              ll6.add("tag\tlistcell");
              linkhash.put(objectName, ll6);
              System.out.println("List is "+linkhash);
              objectName="Listcell";
              ll7.add("id\tlistc");
              ll7.add("label\tCEO");
              linkhash.put(objectName, ll7);
              System.out.println("List is "+linkhash);
              objectName="Listcell";
              ll9.add("id\tlistc1");
              ll9.add("label\tNKC");
              linkhash.put(objectName, ll9);
              System.out.println("List is "+linkhash);
    output is
    List is {Listitem=[id     listi, tag     listcell, tag     listcell]}
    List is {Listitem=[id     listi, tag     listcell, tag     listcell], Listcell=[id     listc, label     CEO]}
    List is {Listitem=[id     listi, tag     listcell, tag     listcell], Listcell=[id     listc1, label     NKC]}
    I want output as
    List is {Listitem=[id  listi, tag  listcell, tag  listcell],Listcell=[id   listc, label CEO], Listcell=[id     listc1, label  NKC]}
    Plz help me
    Thanks Friend
    Edited by: kkcnkc on Apr 1, 2009 6:47 AM

    Double post. Locking.

  • Different row heights in one table - is this possible?

    I want the height of each row in a table to be set to fit the contents of that particular row.
    The column which drives the cell height uses the cell formatting options "Wrap Text" and "Row by Row Auto Fit". These options will set the row height of all rows to that which fits the tallest cell. What I prefer is to have one row height be 4, if that's all it needs, while the next row may have a height of 32 because of a long line of wrapped text.
    Can this be done with DeskI XI 3.1?

    In BO XIR3.1 the row height does not appear to be based on individual rows. Instead the row height is the same for each row in the table. Is there some setting that I need to adjust here?

  • Resizing a JList with variable row heights, not updating the "picture"

    Firstly I would like to apologize for posting this Swing question here, but I was unable to find the Swing category, if someone could direct me to that I would be most grateful.
    Ok, so in abstract what I am trying to do is have a JList with resizable rows to act as a row header for a JTable (exactly like the row headers in OO Calc or MS Excel).
    What I have is a RowHeaderRenderer:
    public class RowHeaderRenderer extends JLabel implements ListCellRendererand it has a private member:
    private Vector<Integer>        _rowHeights            = new Vector<Integer>();which contains a list of all the variable row heights.
    Then there is my getListCellRendererComponent method:
        public Component getListCellRendererComponent(    JList         list,
                                                          Object        value,
                                                          int           index,
                                                          boolean       isSelected,
                                                          boolean       cellHasFocus)
            // Make sure the value is not null
            if(value == null)
                this.setText("");
            else
                this.setText(value.toString());
            // This is where height of the row is actually changed
            // This method is fed values from the _rowHeights vector
            this.setPreferredSize(new Dimension(this.getPreferredSize().width, _rowHeights.elementAt(index)));
            return this;
        }And then I have a row header:
    public class RowHeader extends JList implements TableModelListener, MouseListener, MouseMotionListenerand you may be interested in its constructor:
        public RowHeader(JTable table)
            _table = table;
            _rowHeaderRenderer = new RowHeaderRenderer(_table);
            this.setFixedCellWidth                        (50);
            this.setCellRenderer                        (_rowHeaderRenderer);
            // TODO: grab this value from the parent view table
            JScrollPane panel = new JScrollPane();
            this.setBackground(panel.getBackground());
            this.addMouseMotionListener                    (this);
            this.addMouseListener                        (this);
            this.setModel                                (new DefaultListModel());
            table.getModel().addTableModelListener        (this);
            this.tableChanged                            (new TableModelEvent(_table.getModel()));
        }and as you can see from my mouse dragged event:
        public void mouseDragged(MouseEvent e)
            if(_resizing == true)
                int resizingRowHeight = _rowHeaderRenderer.getRowHeight(_resizingRow);
                _rowHeaderRenderer.setRowHeight(_resizingRow, resizingRowHeight + (e.getPoint().y - _cursorPreviousY));
                _cursorPreviousY = e.getPoint().y;  
        }all I am doing is passing the rowHeaderRenderer the values the currently resizing row should be, which works fine. The values are being changed and are accurate.
    The issue I am having is that while this dragging is going on the row does not appear to be resizing. In other words the "picture" of the row remains unchanged even though I change the values in the renderer. I tried calling:
    this.validate();and
    this.repaint();at the end of that mousedDragged method, but to no avail, neither of them worked.
    Again, I verified that I am passing the correct data in the RowHeaderRenderer.
    So, anyone have any ideas how I should get the image of the RowHeader (JList) to update after calling my MouseDragged event?
    Thank you for your time,
    Brandon

    I was able to fix this some time ago. Here is the solution:
         public void mouseDragged(MouseEvent e)
              if(_resizing == true)
                   int newHeight = _previousHeight + (e.getPoint().y - _cursorPreviousY);
                   if(newHeight < _minRowHeight)
                        newHeight = _minRowHeight;
                   _rowHeaderRenderer.setRowHeight(_resizingRow, newHeight);
                   _table.setRowHeight(_resizingRow, newHeight);
              this.updateUI();
         }

  • Table row height larger in firefox

    My table rows 1,3 &5 have a height that is 2x bigger FF
    than it should be. IE7 is perferct. Also, the font is the same size
    in both browsers. Any suggestions are greatly appreciated.
    http://www.wholesalebingosupplies.com/bingo-game-kits.html
    main div code:

    Thank Tim.
    I added
    p {margin: 2px;}
    to my CSS and that fixed the larger top rows to my tables but
    that did not change the margin to my very bottom row and my footer
    <div> which is too close.
    http://www.wholesalebingosupplies.com/family-gatherings.html
    Any suggestions?
    I am reviewing the site that you requested to fix my
    different users text size. Thanks for that insight.
    John
    quote:
    Originally posted by:
    Newsgroup User
    Hello,
    Different browsers use different default margins for certain
    tags if you
    don't define a margin using CSS.
    One of these tags is the <p> tag. Your links are in
    them, with no margin
    defined.
    <p><strong><a
    href="kit-mini.html">Mini-Bingo
    Kit</a></strong></p>
    Add this to your CSS:
    p {margin: 2px;}
    I'm afraid this isn't the only problem.
    Take a look at the page in FF with the browser's text size
    setting at 1
    level larger than what you have been using.
    ( ctrl+ + to enlarge )
    Here's a screen shot:
    http://tnsgraphics.com/tempscreenshot.htm
    Here's info on the trouble (see "The Problem with Layers")
    http://apptools.com/examples/pagelayout101.php
    Take care,
    Tim
    "Ehd24" <[email protected]> wrote in message
    news:[email protected]...
    > My table rows 1,3 &5 have a height that is 2x bigger
    FF than it should be.
    > IE7
    > is perferct. Also, the font is the same size in both
    browsers. Any
    > suggestions
    > are greatly appreciated.
    >
    >
    http://www.wholesalebingosupplies.com/bingo-game-kits.html
    >
    > main div code:
    >
    >
    >
    > <div id="main-content" align="left">
    > <div class="scrollerArea">
    > <h1>Bingo Game Kits </h1>
    > <p class="style1">We offer a variety of bingo game
    kits for whatever
    > your needs and size of your party. ? </p>
    > <table width="500" border="1" cellpadding="5"
    align="center">
    > <tr bgcolor="#F58030">
    > <th scope="col"><div align="center">
    > <p><strong><a
    > href="kit-mini.html">Mini-Bingo
    Kit</a></strong></p>
    > </div></th>
    > <th scope="col"><div align="center"><a
    > href="kit-gold.html">Gold Bingo
    Kit</a></div></th>
    > </tr>
    > <tr>
    > <th scope="col"><div align="center"
    > class="style2">
    > <div align="center"></div>
    > <div align="center"><a
    > href="kit-mini.html"><img
    src="images/kits/mini-bingo-kit-small-bingo.jpg"
    > width="250" height="188" /></a></div>
    > </div></th>
    > <td><div align="center"><a
    > href="kit-gold.html"><img
    src="images/kits/gold-bingo-kit-small-bingo.jpg"
    > width="250" height="187"
    /></a></div></td>
    > </tr>
    > </table>
    > <table width="500" border="1" cellpadding="5"
    align="center">
    > <tr bgcolor="#F58030">
    > <th scope="col"><div align="center">
    > <p><strong><a
    > href="kit-platinum.html">Platinum Bingo
    Kit</a></strong></p></div></th>
    > <th scope="col"><div align="center">
    > <p><strong><a
    > href="kit-gold-professional.html">Gold Professional
    Bingo
    > Kit</a></strong></a></p>
    > </div></th>
    > </tr>
    > <tr>
    > <th height="203" scope="col"><div
    > align="center"
    > class="style2">
    > <div align="center"><a
    > href="kit-platinum.html"><img
    > src="images/kits/platinum-bingo-kit-small-bingo.jpg"
    width="250"
    > height="188"
    > border="0" /></a></div>
    > <div align="center"></div>
    > </div></th>
    > <td><div align="center"><a
    > href="kit-gold-professional.html"><img
    > src="images/kits/gold-professional.jpg"
    > width="250" height="190"
    /></a></div></td>
    > </tr>
    > </table>
    > <table width="250" border="1" cellpadding="5"
    align="left">
    > <tr bgcolor="#F58030">
    > <th bgcolor="#F58030" scope="col"> <p
    > align="center"><strong><a
    >
    href="kit-gold-professional.html"></a></strong><strong><a
    > href="kit-platinum-professional.html">Platinum
    Professional Bingo
    > Kit</a></strong></p></th>
    > </tr>
    > <tr>
    > <td><div align="center"><a
    > href="kit-platinum-professional.html"><img
    > src="images/kits/platinum-professional.jpg" alt=""
    width="250"
    > height="190"
    > /></a></div></td>
    > </tr>
    > </table>
    > <p> </p>
    > <p> </p>
    > <p> </p>
    > <p> </p>
    > <p> </p>
    > <p> </p>
    > <p> </p>
    > </div>
    > </div>
    >
    > <!-- End main-content -->
    >

  • Row height of a JTree

    Hi There,
    I have set the laf of my application to be Windows Look And Feel.
    In case of windows laf, the Row Height of the JTree is not changing from the default one. I want All my Leaf to be of Different height than the Nodes.
    I have rendred my cells to JLabel. Even if i am setting the preferredSize of leaf and node to different values, stil it is not working!!!!!:-(
    In case of Metal (Swing Default laf) it is not a problem.
    Is there any solutions?

    Well I could but I have a very busy time now. I can tell you that your Renderer is ok and all you need to do is to notify your model on node change at the moment you need to change node's height (this moment could be node selection / unselection). Everything else is automated for you.
    You can use my library to have an easy way your model to be notified.
    Denis Krukovsky
    http://sourceforge.net/projects/dotuseful/

  • Report Generation Toolkit Table Row Height-MS Word

    I am having trouble setting the table row height in the report generation toolkit. I can set the column width fine, but the row height seems to remain the same no matter what I set it to. I have attached the VI that generates and formats the table, and the printout it is resulting in. I have also attached the template file I am using.
    Any tips to get this to work right? I am trying to make the cells exactly the same height as the text inside. 
    Solved!
    Go to Solution.
    Attachments:
    AddMarkersToReport.vi ‏20 KB
    badFormatting.pdf ‏179 KB
    splitter.docx ‏13 KB

    Hi,
    So I tried .2  and it didn't work.  So I went to Word to manually change it, and it did not work either.  There is a selection box in word, for the table properties, that seems to default to the value "at least".  When I changed this manually to "exactly" in word, no problem with the .2 manually in Word.
    Hopefully this can be set within the template, for all new inserted tables.  I'm not sure the report generator VI's expose this property.  Well, this is a start for the issue.
    Edit ****
    You can go into the add table VI and expose the property.  See pic.   However, you have to decide if you want to "upgrade" this VI permanently to expose this property or make a copy with the property exposed.   I haven't messed with the new class reports too much, so not sure of the ins and outs with this.
    I think this is the issue with the row size becoming smaller.
    Mark Ramsdale

  • Same 4MEM/9/40000000 , but different aka (hopefully) the complete guide to this error code and changing RAM

    Hello world,
    finally, after having been reading here for years I decided to break silence and join the most venerable Apple discussions community!
    First of all, I'm no native speaker, so if I at one point don't express myself correctly, I'm sorry. If you don't understand please ask what exactly I meant since it's very important that we know exactly what each one of us is talking about, thank you.
    Important, too:
    I know there are a lot of posts with this topic and I sifted through a lot of them but none of them captures exactly what my problem or rather my questions are and unfortunately in a lot of them there is no real feedback from the original poster how it all worked out or not. So, I intend this thread to be that one helpful thread which more or less concentrates the knowledge of the other threads, where people with similar problems can go to in future.
    I ask one thing of you: Please DON'T answer with just one phrase à la "U got bad RAM, send it back" or "Contact Apple Customer Support Service whatever thingy" without explaining why this would be the only viable option (because I think it is not, at least at the moment).
    All the questions I 'd like answered are green, for you to not lose track. I hope this becomes a good discussion so everyone of us can learn a lot!
    Following problem:
    Initial situation:       
    My Computer: MacBookPro 8.2, early 2011, 15", 2,2 GHz i7; Mavericks 10.9.5    (yet without this bash fix but ¯\_(ツ)_/¯ )
           - Upgraded RAM from onboard 4 (2 x 2) GB to the "unofficially" possible 16 (2 x 8) GB 
    Ordered RAM on Amazon.de with the right Specs: 204 pin DDR3 SO-DIMM (1333 MHz, PC3-10600S, CL9),
    Manufacturer: CSX (http://www.csx-memory.com , while it's maybe not the most renown seller, it was described on another website as reliable )
        HERE (hope the link doesn't  change):               http://www.amazon.de/gp/product/B0084SH6WA/ref=oh_aui_detailpage_o01_s00?ie=UTF8 &psc=1
           - Installed it, booted Mac without problem, what does System Profiler say? I have full 16 GB   1600 MHz   Memory installed
    - Obviously sent me the "wrong" RAM (or can System Profiler be wrong??), funny thing: It works,
         --> after a LOT of research checked here http://guides.macrumors.com/Buying_RAM      my i7 is 2720QM, so supports it, lucky me
       Btw, if i go to About this Mac > more information > memory,  the Text there even says it can hold 1600 MHz, has this been written there like this all along?!
    - Which RAM do I have installed exactly now? since the sticker on it showed the originally ordered Specs.., moreover how do I determine the CAS latency of my installed RAM?
    Crashes:
    Didn't really have any, except..... well,  
    - In some instances Firefox (I think 32.02. or sth., the latest Version at this moment) reproduceably keeps crashing, for example right now, can't even start it,  that's why I can't tell you the exact version, maybe I edit that later. Safari so far hasn't crashed.
    - Once I had a System Crash, but it happened when I wanted to reboot after updating the firmware of a hooked on external WD drive to be usable again as time machine backup volume under mavericks (without endangering my data).
    The RAM seems to work fine; for example when I was doing a long overdue backup of 77GB on said drive, Activity Monitor showed a RAM Usage of  15,99 GB and nothing crashed. Only the fans were powering at some point but i thought that normal..
    - Actually produced two more Crashes when trying to run Apple Hardware Test (AHT), the one on the second disc that originally came with my Computer (probably made for OS 10.6.x    x= 6 or sth., don't remember which version my MBP was shipped with), which leads to
    Tests:
    Memtest86
    - I put Memtest86 v.5.01 on a USB Stick and bootet from that and let it test "the whole" RAM 
    (btw Do you know how you can put the bootable USB image of Memtest only to one (of a few) partition of my 32 GB USB Stick? The instructions (command line stuff) only let me put it on the whole Stick which makes it otherwise useless as a volume; ok here I'm not sure if I'm using the correct technical terms....)
    - I let Memtest86 do 3 and a half passes with one pass consisting of 10 different tests, so it took over 8 hours! 
    --> RESULT:   0   (in words: zero)  ERRORS,         
    --> That is why I think my RAM is ok, because I think (think NB, don't know) Memtest86 does good testing,or do you know      better?
    AHT
    - After that, out of curiosity, I tried to run AHT from the DVD with said results, then I ran AHT (also called Apple Diagnostics under Mavericks) from the Internet, this worked, but produced the famous 4MEM/9/40000000 Error Code,
    first one for example was: 4MEM/9/40000000: 0x8477df98, the last part after the colon is variable, but stays the same in one instance, i.e. if you repeat the AHT directly. If you restart the Computer an rerun the test then it changes, e.g. some other it showed 0x84770a18
    - I did the short and the extended version, it took ca. 2-3  and 16 min respectively till producing the Error Code (only 1 at a time)
    - Did it 4 times or so; once in short/simple version it showed no error, the rest the 4MEM/9 s.
    some example of a simple test, results taken out of the System Profiler Window (fehlgeschlagen= failed):
    Apple Diagnostics:
    The usual self test on start up is always passed (bestanden), see for example:
    What other than bad RAM can 4MEM/9/40000000 mean? I hope there are a few tech and computer savvy people around this place who know what they are talking about and can give me a good answer, or at least help to narrow it down. Actually I also think, the RAM sticks are not loose, but before I screw open my MBP again I would like to explore the other possibilities.
    Is it probable that this Error Code has got sth. to do with me installing a) 16 GB of b) 1600 MHz RAM, or maybe with CAS Latency (i don't know the actual CL of this RAM)? and if so, is it only because some Apple Programmer/Developer/Technician wrote some values in a list on the System Level, so it doesn't accept RAM it would normally work with?? If it works fine and is faster, why change it?
    Final Words:
    I repeat, apart from the Firefox crashes, my Mac seems to be working fine, at least I don't notice anything, (well, that disk utility and System Profiler (or whatever it's called nowadays) sometimes take time to start up is nothing special i think, is it?)
    But now I'm scared that perhaps there could be a future danger for my computer I do not foresee...I hope you can at least exclude that.
    So I'd rather spend my time starting a discussion here with people who don't have to abide by some corporate policy (right?) than having the hassle of repeatedly screwing my Mac open and shut  and doing expensive calls with all the companies involved who won't tell me anything more in depth than "we have to send it there, do more tests and you get it back then".
    I hope that this thread won't rot in the wastelands of unanswered posts and that maybe all the people who take part in it learn sth. and all the people seeking help in future will find it here.
    Thanks for your patience!
    Waiting for your greatly appreciated answers,
    MuddyMic
    PS: Why is there no category Hardware, Components, RAM or sth similar? Not sure if it fits in Ports and Interfaces so I put it under Using a MBP

    Hello world,
    finally, after having been reading here for years I decided to break silence and join the most venerable Apple discussions community!
    First of all, I'm no native speaker, so if I at one point don't express myself correctly, I'm sorry. If you don't understand please ask what exactly I meant since it's very important that we know exactly what each one of us is talking about, thank you.
    Important, too:
    I know there are a lot of posts with this topic and I sifted through a lot of them but none of them captures exactly what my problem or rather my questions are and unfortunately in a lot of them there is no real feedback from the original poster how it all worked out or not. So, I intend this thread to be that one helpful thread which more or less concentrates the knowledge of the other threads, where people with similar problems can go to in future.
    I ask one thing of you: Please DON'T answer with just one phrase à la "U got bad RAM, send it back" or "Contact Apple Customer Support Service whatever thingy" without explaining why this would be the only viable option (because I think it is not, at least at the moment).
    All the questions I 'd like answered are green, for you to not lose track. I hope this becomes a good discussion so everyone of us can learn a lot!
    Following problem:
    Initial situation:       
    My Computer: MacBookPro 8.2, early 2011, 15", 2,2 GHz i7; Mavericks 10.9.5    (yet without this bash fix but ¯\_(ツ)_/¯ )
           - Upgraded RAM from onboard 4 (2 x 2) GB to the "unofficially" possible 16 (2 x 8) GB 
    Ordered RAM on Amazon.de with the right Specs: 204 pin DDR3 SO-DIMM (1333 MHz, PC3-10600S, CL9),
    Manufacturer: CSX (http://www.csx-memory.com , while it's maybe not the most renown seller, it was described on another website as reliable )
        HERE (hope the link doesn't  change):               http://www.amazon.de/gp/product/B0084SH6WA/ref=oh_aui_detailpage_o01_s00?ie=UTF8 &psc=1
           - Installed it, booted Mac without problem, what does System Profiler say? I have full 16 GB   1600 MHz   Memory installed
    - Obviously sent me the "wrong" RAM (or can System Profiler be wrong??), funny thing: It works,
         --> after a LOT of research checked here http://guides.macrumors.com/Buying_RAM      my i7 is 2720QM, so supports it, lucky me
       Btw, if i go to About this Mac > more information > memory,  the Text there even says it can hold 1600 MHz, has this been written there like this all along?!
    - Which RAM do I have installed exactly now? since the sticker on it showed the originally ordered Specs.., moreover how do I determine the CAS latency of my installed RAM?
    Crashes:
    Didn't really have any, except..... well,  
    - In some instances Firefox (I think 32.02. or sth., the latest Version at this moment) reproduceably keeps crashing, for example right now, can't even start it,  that's why I can't tell you the exact version, maybe I edit that later. Safari so far hasn't crashed.
    - Once I had a System Crash, but it happened when I wanted to reboot after updating the firmware of a hooked on external WD drive to be usable again as time machine backup volume under mavericks (without endangering my data).
    The RAM seems to work fine; for example when I was doing a long overdue backup of 77GB on said drive, Activity Monitor showed a RAM Usage of  15,99 GB and nothing crashed. Only the fans were powering at some point but i thought that normal..
    - Actually produced two more Crashes when trying to run Apple Hardware Test (AHT), the one on the second disc that originally came with my Computer (probably made for OS 10.6.x    x= 6 or sth., don't remember which version my MBP was shipped with), which leads to
    Tests:
    Memtest86
    - I put Memtest86 v.5.01 on a USB Stick and bootet from that and let it test "the whole" RAM 
    (btw Do you know how you can put the bootable USB image of Memtest only to one (of a few) partition of my 32 GB USB Stick? The instructions (command line stuff) only let me put it on the whole Stick which makes it otherwise useless as a volume; ok here I'm not sure if I'm using the correct technical terms....)
    - I let Memtest86 do 3 and a half passes with one pass consisting of 10 different tests, so it took over 8 hours! 
    --> RESULT:   0   (in words: zero)  ERRORS,         
    --> That is why I think my RAM is ok, because I think (think NB, don't know) Memtest86 does good testing,or do you know      better?
    AHT
    - After that, out of curiosity, I tried to run AHT from the DVD with said results, then I ran AHT (also called Apple Diagnostics under Mavericks) from the Internet, this worked, but produced the famous 4MEM/9/40000000 Error Code,
    first one for example was: 4MEM/9/40000000: 0x8477df98, the last part after the colon is variable, but stays the same in one instance, i.e. if you repeat the AHT directly. If you restart the Computer an rerun the test then it changes, e.g. some other it showed 0x84770a18
    - I did the short and the extended version, it took ca. 2-3  and 16 min respectively till producing the Error Code (only 1 at a time)
    - Did it 4 times or so; once in short/simple version it showed no error, the rest the 4MEM/9 s.
    some example of a simple test, results taken out of the System Profiler Window (fehlgeschlagen= failed):
    Apple Diagnostics:
    The usual self test on start up is always passed (bestanden), see for example:
    What other than bad RAM can 4MEM/9/40000000 mean? I hope there are a few tech and computer savvy people around this place who know what they are talking about and can give me a good answer, or at least help to narrow it down. Actually I also think, the RAM sticks are not loose, but before I screw open my MBP again I would like to explore the other possibilities.
    Is it probable that this Error Code has got sth. to do with me installing a) 16 GB of b) 1600 MHz RAM, or maybe with CAS Latency (i don't know the actual CL of this RAM)? and if so, is it only because some Apple Programmer/Developer/Technician wrote some values in a list on the System Level, so it doesn't accept RAM it would normally work with?? If it works fine and is faster, why change it?
    Final Words:
    I repeat, apart from the Firefox crashes, my Mac seems to be working fine, at least I don't notice anything, (well, that disk utility and System Profiler (or whatever it's called nowadays) sometimes take time to start up is nothing special i think, is it?)
    But now I'm scared that perhaps there could be a future danger for my computer I do not foresee...I hope you can at least exclude that.
    So I'd rather spend my time starting a discussion here with people who don't have to abide by some corporate policy (right?) than having the hassle of repeatedly screwing my Mac open and shut  and doing expensive calls with all the companies involved who won't tell me anything more in depth than "we have to send it there, do more tests and you get it back then".
    I hope that this thread won't rot in the wastelands of unanswered posts and that maybe all the people who take part in it learn sth. and all the people seeking help in future will find it here.
    Thanks for your patience!
    Waiting for your greatly appreciated answers,
    MuddyMic
    PS: Why is there no category Hardware, Components, RAM or sth similar? Not sure if it fits in Ports and Interfaces so I put it under Using a MBP

  • Openoffice 3.2 calc doesn't save row height in xls

    Hi All,
    I have upgraded to ooo 3.2 recently. I work with excels spreadsheets so  I have to save files into xls. Suddenly I realized that Calc doesn't save custom row height, when I open the file all rows are displayed with default height. It worked in the previous version, pacman log: upgraded go-openoffice (3.1.1.5-1 -> 3.2.0.4-1)
    I searched ooo forums, but didn't find anything.
    update:
    in case someone is interested, I have found a kind of work-around. Select sheet, Format / Rows / Optimal height -> increase value at least one step, in my case from 0.0 mm to 0.1 mm, then save. Reopen xls, rows will be displayed with the custom heights. Unfortunately one has to apply this workaround on every singe sheet in the workbook. :-/ No way I would do this with all my workbooks.
    Last edited by siriusb (2010-02-03 09:52:39)

    Workaround with downgrade: If someone successfully downgraded to 3.1.1 it wont start because depends on libjpeg.so.7.
    1. Create a script somewhere in your PATH and make it executable:
    #!/bin/bash
    LD_PRELOAD=/var/tmp/libjpeg.so.7.0.0 soffice -calc "$1"
    2. copy libjpeg.so.7.0.0 to the directory mentioned in the script (in this case /var/tmp)
    3. in your file manager e.g. nautilus right click on the xls, choose properties / Open with / custom command, and use the script's name.

  • DataGridCellStyle: Set Background of DataGridCell based on value in a Different DataGrid / DataTable

    Hi everyone
    I am trying to set the background of a cell in a datagrid based on a value in a different datagrid. Is it possible to specify this in the XAML through binding? I'm using the MVVM pattern and would like to minimise code in the code behind. Please note that
    the datagrids are the same dimension, but the dimension is unknown until runtime.
    I've copied an image of the two datagrids. Essentially, the second datagrid will contain values of 0 or 1. I would then like to color the cells in the first datagrid a different color based on these values. 
    CODE:
    <DataGrid Style="{StaticResource Style1}" ItemsSource="{Binding Table1, StringFormat=n}" AutoGenerateColumns="True" >
    <DataGrid.InputBindings>
    <MouseBinding MouseAction="LeftDoubleClick" Command="{Binding CommandWithParameter}" CommandParameter="{Binding .}"/>
    </DataGrid.InputBindings>
    <DataGrid.CellStyle>
    <Style TargetType="DataGridCell">
    <Setter Property="Background" Value="{Binding Table2, Converter={StaticResource WeightConverter} }"/>
    </Style>
    </DataGrid.CellStyle>
    </DataGrid>
    Thanks!

    You could use a DataTrigger that binds to a column of a row of the other DataGrid like this:
    <DataGrid x:Name="datagrid"></DataGrid>
    <DataGrid x:Name="datagrid2">
    <DataGrid.CellStyle>
    <Style TargetType="DataGridCell">
    <Style.Triggers>
    <DataTrigger Binding="{Binding Path=Items[0].num, ElementName=dataGrid}" Value="abc">
    <Setter Property="Foreground" Value="Red"/>
    </DataTrigger>
    </Style.Triggers>
    </Style>
    </DataGrid.CellStyle>
    </DataGrid>
    DataTable dt = new DataTable();
    dt.Columns.Add(new DataColumn("num") { DataType = typeof(string) });
    dt.Rows.Add("abc");
    datagrid.ItemsSource = dt.DefaultView;
    datagrid2.ItemsSource = new List<string> {"a", "b", "c" };
    Hope that helps.
    Please also remember to mark all helpful posts as answer to close your threads and please start a new thread if you have a new question.

Maybe you are looking for

  • HP laser 4000n Driver for Windows 8 32bit

    I am looking for driver for hp 4000n that work with windows 8. This question was solved. View Solution.

  • Problem with Navigation plugs

    Hi All I have 20 view in my application. Previously some them have given very good suggitions. but still my problem has not been resolved. I deleted last view from my application. Since than i have problem to see my application in my browser. i.e. "B

  • Why is the Hand not showing over button on one level?

    I have site with multiple .swf files working on levels.  many buttons working properly - but when I get to one level - the cursor is not changing to a hand over any of the buttons.  I don't know how to trouble shoot that at all.  I am using as2 Flash

  • HT4484 Changing country in apple account

    When I created my apple account a few years ago, the country was set to India. But now I have moved to the US and need to change the credit card, address info etc. to United States. How can I do that?

  • Can't connect to Airport Express since upgrading my router.

    I recently changed my router from an old Netgear 834 to a TP-Link W8961ND and now I keep losing the Airplay Speaker logo from my iphone4, ipad2, and itunes on my Windows 7 PC. When I unplug the AE and restart it connects but afer abour 30-40mins it d