Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #14353

JTable size

From Hakan <H.L@softhome.net>
Newsgroups comp.lang.java.programmer
Subject JTable size
Date 2012-05-07 09:41 +0200
Organization Newsoffice.de - http://www.newsoffice.de
Message-ID <1336376488.66@user.newsoffice.de> (permalink)

Show all headers | View raw


 What do I need to add to control the size of a JTable? Nothing happens 
when I run the code quoted below, it stays the same size.

      Dimension tabledim=proTable.getSize();
            tabledim.setSize(2*tabledim.getWidth(), 
tabledim.getHeight());

   proTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
            proTable.setPreferredSize(tabledim);
      Dimension newtdim=new Dimension();
      newtdim.setSize(2*tabledim.getWidth(), tabledim.getHeight());
      proTable.setPreferredScrollableViewportSize(newtdim);

-- 
Newsoffice.de - Die Onlinesoftware zum Lesen und Schreiben im Usenet 
Die Signatur läßt sich nach Belieben anpassen ;-)

Back to comp.lang.java.programmer | Previous | NextNext in thread | Find similar | Unroll thread


Thread

JTable size Hakan <H.L@softhome.net> - 2012-05-07 09:41 +0200
  Re: JTable size "John B. Matthews" <nospam@nospam.invalid> - 2012-05-08 00:13 -0400
  Re: JTable size Roedy Green <see_website@mindprod.com.invalid> - 2012-05-08 07:51 -0700

csiph-web