X220, 6-cell vs 9-cell batt

I've been trying to find comparison pictures of the X220 with a 6-cell and 9-cell battery, without much luck. I want to see how much the 9-cell sticks out vs the 6-cell.
Has anyone seen such a picture anywhere?
| X220 i7-2620M | 12.5" IPS | Intel 520 Series 180GB Main SSD | Mushkin 120GB mSATA SSD | 8GB RAM | Intel 6205 WiFi | BT | Win7 Pro 64 SP1 |

Hi,
I'm going to buy a X220. I think I'll avoid the 9 cell battery just because it sticks out in the back. Anyway also the 6 cell it sticks out a little bit in the bottom, as you can see here, even if that doesn't give problems of stabilty as stated here. So I was wondering if buying a 4 cell battery, but before I'd like to know if the 4 cell battery is taller as the 6 cell one or less. Do you have any idea?

Similar Messages

  • Drag the component from one cell to another cell within JTable

    Hi All,
    I have one requirement to drag the component from JList to JTable cell. I am able to do it but once if i drag the component from list to table cell, table accepting the drop after this i am unable to move the same component from one cell to another cell within the table.
    Any advice.
    I have used the following logic for JTable and JList is drag enabled.
    DefaultTableModel tableModel=new DefaultTableModel(
                new Object [][] {
                    {null, null, null, null,null,null,null},
                    {null, null, null, null,null,null,null},
                    {null, null, null, null,null,null,null},
                    {null, null, null, null,null,null,null}
                new String [] {
                    "Title 1", "Title 2", "Title 3", "Title 4","Title 5","Title 6","Title 7"
            JTable table = new javax.swing.JTable(){
                public boolean isCellEditable(int row, int column)
                    return false;
            table.setModel(tableModel);
            table.setDragEnabled(true);
            table.setDropMode(DropMode.INSERT);
            table.setTransferHandler(new TransferHandler(){
                public boolean canImport(TransferHandler.TransferSupport info){
                    if (!info.isDataFlavorSupported(DataFlavor.stringFlavor)){
                        return false;
                    return true;
                public boolean importData(TransferSupport support) {
                    if (!support.isDrop()) {
                        return false;
                    if (!canImport(support)) {
                        return false;
                    JTable table=(JTable)support.getComponent();
                    DefaultTableModel tableModel=(DefaultTableModel)table.getModel();
                    // fetch the drop location
                    JTable.DropLocation dl = (JTable.DropLocation)support.getDropLocation();
                    int row = dl.getRow();
                    int col=dl.getColumn();
                    // fetch the data and bail if this fails
                    String data;
                    try {
                        data = (String)support.getTransferable().getTransferData(DataFlavor.stringFlavor);
                    } catch (UnsupportedFlavorException e) {
                        return false;
                    } catch (IOException e) {
                        return false;
                    calendarTableModel.setValueAt(data, row, col);
                    return true;
            });Thanks & Regards,
    Maadhav.
    Edited by: maadhav on Jun 23, 2009 12:29 AM

    Hi All,
    I fixed this issue with some additional logic which allow me to drag and drop the string component from one cell to another cell within in the JTable.
    I am attaching the new logic here, if any one needs use it.
    DefaultTableModel tableModel=new DefaultTableModel(
                new Object [][] {
                    {null, null, null, null,null,null,null},
                    {null, null, null, null,null,null,null},
                    {null, null, null, null,null,null,null},
                    {null, null, null, null,null,null,null}
                new String [] {
                    "Title 1", "Title 2", "Title 3", "Title 4","Title 5","Title 6","Title 7"
            JTable table = new javax.swing.JTable(){
                public boolean isCellEditable(int row, int column)
                    return false;
            table.setModel(tableModel);
            table.setDragEnabled(true);
            table.setDropMode(DropMode.USE_SELECTION);
            table.setTransferHandler(new TransferHandler(){
              public int getSourceActions(JComponent c) {
                    return DnDConstants.ACTION_COPY_OR_MOVE;
                public Transferable createTransferable(JComponent comp)
                    JTable table=(JTable)comp;
                    int row=table.getSelectedRow();
                    int col=table.getSelectedColumn();
                    String value = (String)table.getModel().getValueAt(row,col);
                    StringSelection transferable = new StringSelection(value);
                    table.getModel().setValueAt(null,row,col);
                    return transferable;
                public boolean canImport(TransferHandler.TransferSupport info){
                    if (!info.isDataFlavorSupported(DataFlavor.stringFlavor)){
                        return false;
                    return true;
                public boolean importData(TransferSupport support) {
                    if (!support.isDrop()) {
                        return false;
                    if (!canImport(support)) {
                        return false;
                    JTable table=(JTable)support.getComponent();
                    DefaultTableModel tableModel=(DefaultTableModel)table.getModel();
                   JTable.DropLocation dl = (JTable.DropLocation)support.getDropLocation();
                    int row = dl.getRow();
                    int col=dl.getColumn();
                    String data;
                    try {
                        data = (String)support.getTransferable().getTransferData(DataFlavor.stringFlavor);
                    } catch (UnsupportedFlavorException e) {
                        return false;
                    } catch (IOException e) {
                        return false;
                    tableModel.setValueAt(data, row, col);
                    return true;
            });Thanks & Regards,
    Maadhav..
    Edited by: maadhav on Jun 23, 2009 5:26 AM
    Edited by: maadhav on Jun 23, 2009 5:28 AM

  • Ok so i'm trying to do a conditional format on numbers if (cell a2) = greater than or text then make the same cell or another cell do something. Does anybody knows how to do that on numbers. thanks.

    hi I'm from Italy.
    ok so i'm trying to do a conditional format on numbers if "a cell" = greater than or text then make the same cell
    or another cell do something like insert a number or change color.
    Does anybody knows how to do that on numbers?. thanks.

    Among the things you'll learn from the User Guide:
    Conditional formatting can be used to change the style of the text in a cell and/or the fill colour of the cell.
    A formula may be used to set the value in a cell. In both cases, the format rule or the formula affects only the cell to which the rule is attached or which contains the formula. Neither values or formats may be 'pushed' onto another cell.
    Regards,
    Barry

  • Help cell or Auxillary cell in Cell editor

    Hi BW experts,
       Can anybody teach me the importance of HELP CELL or Auxillary cell in the Cell editor of reports.
    In which circumstances we use the cell editor ?

    Hi  vkid,
    >>All there is in my datatable is one value loaded. Here's my code, but how do i convert that datatable to a string?
    About convert datatable to a string, you can use the following code
    string res = String.Join(Environment.NewLine, table.Rows.OfType<DataRow>().Select(x => String.Join(" ; ", x.ItemArray)));
    But based on your title, How to get specific cell,  please check the following code
    string value = table.Rows[0].ItemArray[0].ToString();
    It means get the firstrow and first column value. You can get the specified cell which you want.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • HT4515 I want to buy an unlocked 4s from apple and use it permanently on a foreign CDMA cell service (IUSA Cell in Mexico).  I am getting conflicting information.  Thoughts?

    I want to buy an unlocked 4s from apple and use it permanently on a foreign CDMA cell service (IUSA Cell in Mexico).  I am getting conflicting information on whether this is possible.  Apple website says the phones are unlocked for GSM use only. 
    I called apple when i bought an Ipad to help decide on a GSM vs CDMA version and was told that if I went to Mexico with a CDMA version of the Ipad (2) that i would call the carrier give them some numbers and they would activate it.  When i returned I was to call Verizon and reactivate it in the US.  I ultimately got the GSM version so i never tested the theory. 
    I am now thinking of getting the 4S to use in Mexico permanently but want to use it on a CDMA carrier because it is half the cost per month.  But will this work?  Thoughts?

    There is no such thing as an unlocked CDMA iPhone. All CDMA iPhones are carrier locked and the carriers do not allow unlocking. All legitimatly unlocked iPhones are GSM only The CDMA side is completely disabled in them.
    You can only use a CDMA iPhone if the carrier you want to use offers one.

  • Single Cell Copy to Cell Range

    If I create a cell value/formula, then copy that cell, select a range of cells, and paste, in Excel it copies the source cell contents to all cells in the range (adjusting relative references in a formula). In Numbers, it copies only to one cell in the range. Having to paste one cell at a time is agonizing, and this operation is something I do all the time in editing an existing spreadsheet.
    The only alternative I see is to copy one cell to two, then select a two-cell range to copy and paste etc in geometric progression. Is there something simple I'm missing?

    I did a search in the help for "fill" & got this:
    Here are ways to autofill table cells:
    To paste the content and fill of a cell into adjacent cells, select the cell and then drag the Fill handle in its lower right corner over the cells into which you want to paste. You can drag to the right to add values to adjacent cells in the same row, or you can drag down to add values to adjacent cells in the same column.
    Any data, cell format, formula, or fill associated with the selected cell is pasted, but comments aren’t pasted.
    If the selected cell contains no data, autofilling clears data from target cells.
    You can also add values to cells based on value patterns. For example, if a cell contains a day of the week or a month, you can select the cell and then drag to the right or down to add the next day of the week or month to the adjacent cell.
    To create new values based on numeric patterns, select two or more cells before dragging. For example, if two selected cells contain 1 and 2, the values 3 and 4 are added when you drag through the adjacent two cells. And if two selected cells contain 1 and 4, the values 7 and 10 are added when you drag through the adjacent two cells (values are incremented by 3).
    This is similar to how I've done fill down or fill right in AppleWorks, so I think the relative references would copy.

  • Various cell renders for cells (not for columns only) in JTable

    Hello, I need to create a property list with some various values (strings, colors, booleans) just like in Netbeans do. I will use JTable component, but I found I cannot have various cell editors for cells. In JTable cell editors can be only changed for COLUMNS. What sould I do?
    ps - is there any JPropertyPanel avaiable for free on the web?

    I had a similar problem recently whilst working on a Swing GUI designer (you're not doing the same are you? ;o). Presuming you already know how to create TableCellEditors you can use a very simple hack to achieve your goal.
    Either extend the JTable class and override the getCellEditor(int row, int column) method, or override the same method when constructing the JTable (this is what I did). You would need to write something like:
    JTable myTable = new JTable(){
        public TableCellEditor getCellEditor(int row, int column) {
            TableModel model = getModel();
            Object data = model.getValueAt(row, column);
            return getDefaultEditor(data.getClass());
    }The getCellEditor method is called by JTable whenever a cell is to edited, normally it would check to see if the TableColumn has an editor associated with it and return that, if there wasn't one it would get the class of data for the column and return the default editor for that type of class, which is similar to what it does here except it returns the default editor for the class of an individual item of datum.
    Now all you need to do is associate your TableCellEditors with the class types they are to edit with the setDefaultEditor(Class c, TableCellEditor editor) method of JTable. If, for instance, you had an editor for the Color class you would have a line something like:
    myTable.setDefaultEditor(Color.class, new ColorCellEditor());Good luck, and I hope this helps.
    MS.

  • DATAGRID FOCUS ISSUE: Focus got lost, while moving from one cell to another cell using tab key.

    Problem: Focus got lost, while moving from one cell to another cell using tab key.
    Example: In an AdvanceDataGrid, there are three columns having custom ItemRenderer with Spark TextInput control (editable=true & focusEnabled=true).
    When I try to move the focus in with in 2nd, 3rd & 4th column using tab key, focus got lost. Most of the time it’s working, but some time it doesn’t work. There’s no clue as to how may rows/columns the focus has jumped to; or whether the focus has gone out of the data grid altogether.
    Observations: I am not sure whether this problem is because of custom component implementation or it is because of some issue related to Flex Component.
    It only occurs when we perform some actions like some server call, some complex logic execution etc. at the focus out event of itemrenderer.
    There is one property of datagrid i.e. editedItemPosition which contains row & column index of datagrid. On the focus out event, it gets null when focus got lost. We tried to set it, but it didn’t work.
    Steps Performed:-
    1. Currently focus is in 2nd column i.e. Apply to #.
    2. Once I press tab key from 2nd column, it goes to 3rd column which is correct.
    3. Now if I press tab key from 2nd column i.e. Payment #, focus should go to 3rd column, but it goes out of data grid and set the focus of button which is outside data grid.

    http://search.java.sun.com/search/java/index.jsp?qp=&nh=10&qt=%2Bjtable+%2Btab+%2B%22enter+key%22&col=javaforums

  • Formula to deduct one cell from another cell - simple equation - cant find the answer, formula to deduct one cell from another cell - simple equation - cant find the answer

    Could anyone tell me how to deduct one cell from another cell in the numbers application.
    Thank you!

    to subtract one cell from another you enter a formula in a cell by:
    1) click the cell where you want the result to be
    2) click the cell that contains on of the operands
    3) type the minus sign ("-")
    4) click the other cell with the other operand
    e.g.  if cell A1 contains 5, cell B1, contains 2 and you want the difference of those two cells to be in cell C1....
    you would click cell C1 and then type: "=A1-B1" then type the enter key OR
    click cell C1 and then type "=", then click cell A1, then type "-", then click cell B1, then type the "enter" key

  • PLEASE HELP-JTable cell editor-change one cell, changes all cells of column

    for example i have 3 rows 4 columns, column 3 and 4 are dates. now if i change the date to a new value (eg for of column 3)
    for any row, and then i click on any other cell. All cell values ie all rows for that column are changed to that new value.
    ie it changed column 3 for all rows 1, 2 and 3 to that new value which i changed in only one cell of that column.
    PLEASE HELP me , tell me what change i make to the code to fix it ....
    this is my cell renderer for date
    class DateCellRenderer extends JbcDateTimeChooser implements TableCellRenderer {
      protected Border m_noFocusBorder;
      public DateCellRenderer() {
        super();
        setStylePattern(JbcDateTimeChooser.MEDIUM);
        m_noFocusBorder = new EmptyBorder(1, 2, 1, 2);
        setOpaque(true);
        setBorder(m_noFocusBorder);
      public Component getTableCellRendererComponent(JTable table,
       Object value, boolean isSelected, boolean hasFocus,
       int row, int column)
      if(value instanceof Date) {
          Date b = (Date)value;
          setDate(b);
        setFont(table.getFont());
        setBorder(hasFocus ? UIManager.getBorder(
          "Table.focusCellHighlightBorder") : m_noFocusBorder);
        return this;
    }I have this custom cell editor date
    class DateCellEditor extends AbstractCellEditor implements TableCellEditor {
      protected JbcDateTimeChooser editor;
      public DateCellEditor() {
        super();
        editor = new JbcDateTimeChooser();
        editor.setStylePattern(JbcDateTimeChooser.MEDIUM);
      public Object getCellEditorValue() {
        return editor.getDate();
      public Component getTableCellEditorComponent(JTable table,
       Object value, boolean isSelected, int row, int column)
        if(value instanceof Date) {
          editor.setDate((Date)value);
        return editor;
    }and this is how i defined in jtable
        lnnTableModel = new CellSiteLNNTableModel();
        lnnTable.setModel(lnnTableModel);
        lnnTableModel.addColumn("ABC");
        lnnTableModel.addColumn("DEF");
        lnnTableModel.addColumn("Date From");
        lnnTableModel.addColumn("Date To");
        for(int k = 0; k < lnnTableModel.getColumnCount(); k++) {
          TableColumn col = lnnTable.getColumn(lnnTableModel.getColumnName(k));
          TableCellRenderer renderer;
            DefaultTableCellRenderer textRenderer = new DefaultTableCellRenderer();
            renderer = textRenderer;
          TableCellEditor editor;
          JTextField textColumn = new JTextField();
          if((k == CellSiteLNN.DATE_FROM) || (k == CellSiteLNN.DATE_TO)) {
            editor = new DateCellEditor();  //  this is the cell editor
         renderer = new DateCellRenderer(); // this is the assigned cell renderer
          } else {
            editor = new DefaultCellEditor(textColumn);
          col.setCellRenderer(renderer);
          col.setCellEditor(editor);
        }

    table model is extended from AbstractTableModel
    and have these methods
    do you see anything wrong here.....
      public Object getValueAt(int row, int column) {
        Vector rowVector = (Vector)dataVector.elementAt(row);
        return rowVector.elementAt(column);
      public void setValueAt(Object aValue, int row, int column) {
        Vector rowVector = (Vector)dataVector.elementAt(row);
        rowVector.setElementAt(aValue, column);
        // generate notification
        fireTableChanged(new TableModelEvent(this, row, row, column));
      } // end method (setValueAt)

  • 6 Cell or 9 Cell Battery !!

    Hi I wanted a 6 cell or 9 cell battery for Paivilion N037tx NoteBook location Pakistan help me to purchase a battery if its available in my country ?<script charset="UTF-8" type="application/javascript" src="chrome://hdv/content/hdv.js"></script>

    Yes.
    Per the Lenovo web site, for each battery, "Its compatible design allows it to be in the system when the system is connected to ThinkPad X200 UltraBase."
    Message Edited by bananaman on 10-11-2008 09:30 PM
    I don't work for Lenovo. I'm a crazy volunteer!

  • 3 cells or 6 cells?

    Hi. I have an issue: how can I tell the type of battery I have to a S10e; it says on the back of it: 11.1 V - 28 Wh - 2.38 Ah
    Does it have 3 cells or 6 cells? thank you. 

    Yours is a 3 cell as the 6 cells will show the same voltage of 11.1V but with 52Wh (or around that, depending on the actual make of the batery).
    View my Blog on the Lenovo S10

  • 3 cell vs 6 cell battery for Netbook

    I am going to buy a Netbook in the next couple weeks and had a question about the difference betwween the 6 cell and 3 cell lithium battery. Things like weight and runtime especially.
    Thanks to all who reply.

    The weight difference between different size Netbook batteries depends on the model. And also whether it is from a third party vendor which presents other issues (may not fit as well, and may not deliver advertised battery life0. The official manufacturer batteries are best, but at times I have dabbled in third party like for my Asus EEE where I bought the big 9-cell from the company in the Netherlands. It  looked very nice and does work, but never approached the longevity advertised and it also is tricky to latch on one side (and when your battery slips and you're not plugged in, it is a bummer).
    Specs on weights are difficult to come by from third party companies as they don't want to scare off folks who have a svelte netbook. Original netbook vendors' specs are easier to find.
    Some models of the Acer Aspire netbooks have a 2.19 pound 3-cell and a 2.78 pound 6-cell. A jump to a 9-cell may approach double the weight of a 3-cell. One thing to be aware of is the bigger battery is slightly uglier, so you pay for the extra juice. It may interfere with fully reclining the screen also although normal viewing angles are fine.
    The question I have is...what Netbook are you considering? I have seen a few models (Dell, HP, Toshiba, Asus, Acer). Out of those I like the Asus and Toshiba best for battery life and reliability and the Dell and HP lagging a bit. I don't think I would buy an Acer based on some I have come across, but YMMV and the price is definitely attractive. In any case budget $50 to imemdiately pull the little 1 GB RAM module out and get a 2 GB replacement. It will be 15% faster and well worth it.

  • Need help with choosing a 6 cell and 9 cell battery (mo06, mo09)

    Hey hi all,
    I have a pavilion m6 series notebook which comes with mo06(6 cell) battery by default.
    I need to replace the battery with a new one and I've come across a mo09 (9 cell) battery with the same price as that of mo06.
    I've no idea if mo09 batteries can be used instead of mo06.
    If anyone who knows anything about this please help me choose.
    Here's the link
    http://hpshopping.in/Accessories/Batteries
    Thanks a lot in advance

    Hi
    Sorry was the delay wanted to make sure the battery should work fine for your unit.
    672412-001  SPS-BATT 9C 100WHr 3.0AH LI MO09100-CL  
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • How to get an empty cell when SUM cells are empty?

    When doing a SUM, I want the result to be blank if there are no numbers yet. In Excel, if you have =SUM(A6:A30) with empty cells, the result is an empty cell.
    In Numbers, it's a zero.
    I know you can use =IF(SUM(A6:A30)>0,SUM(A6:A30),"") to put an empty string in the cell if there's nothing to add, but this doesn't work for negative numbers.
    I tried =SUMIF(A6:A30,"count(A6:A30)>0") and it puts a zero there even if all the cells are blank, and I don't think it's correct anyway.
    =IF(SUM(A6:A30)>0,SUM(A6:A30),(IF(SUM(A6:A30)<0,SUM(A6:A30),"")))
    works, but it seems rather cumbersome.
    Is there a better way?
    Ideas?

    Terrell Smith wrote:
    =IF(SUM(A6:A30)>0,SUM(A6:A30),(IF(SUM(A6:A30)<0,SUM(A6:A30),"")))
    works, but it seems rather cumbersome.
    </div>
    Hello
    The best way I found to solve your problem is:
    =IF(COUNT(A6:A30),SUM(A6:A30),"")
    Which reads:
    if at least one cell of the range (A6:A30) contains a numeric value returns SUM(A6:A30)
    else
    returns a blank cell.
    Of course, if the sum is nil the displayed [thanks you Barry ;-)] value will be a zero.
    Maybe it's what schubladenschrank was offering but I don't read Deutsch.
    Just for info, your formula may be shorten as:
    =IF(SUM(A6:A30)=0,"",SUM(A6:A30))
    Yvan KOENIG (from FRANCE samedi 2 février 2008 13:55:43)

Maybe you are looking for

  • HEX to CHAR conversion in ECC 6.0

    Hi All, We have upgraded the client system from 4.6C to ECC 6.0. In one of the program the code was as below: c_code1(1) TYPE x VALUE '23', c_code2(1) TYPE x VALUE 'E1'. i_uml-uml = c_code1.   APPEND i_uml.   i_uml-uml = c_code2.   APPEND i_uml. LOOP

  • MRP type: PD

    When using PD for MRP planning, I found some interesting things. For example:Material A,  Safety Stock=12, current stock is 5 and there is a PO of 10 due July 15, today is July 13. Run MRP today, MRP generate exception message 20 to cancel the PO and

  • LOV (attribute updatable while new)

    hi, I have a question about the following code : // jButton1.setModel(PanelLOVPersonView.createLovBinding(new JUPanelBinding("sec100.MypackageModule", this), jButton1, "UsrdefPersonView", null, "UsrdefPersonViewiewIter", new String[] {"Perid"}, "LOVP

  • Windows 7 boot freezes

    When i try to boot Windows 7 it freezed with a white screen.  This happens when I use "Boot Disk" in Preferences or select the drive after booting with the "Option" key.  Any ideas, please?

  • MATSHlTA UJ8E2 DVD Code 19 error Windows 8

    Hi, I have a Toshiba Satellite C55-A with Window's 8 and the DVD drive is a Mat**bleep**a UJ8E2. The drive is not working and is giving me a code 19 error. The message says "Windows cannot start this hardware device because its configuration informat