User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the Java section within the Software Development category of DaniWeb, a massive community of 397,615 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,467 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Java advertiser: Lunarpages Java Web Hosting
Views: 5211 | Replies: 3
Reply
Join Date: Jul 2004
Posts: 6
Reputation: bobinson is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
bobinson bobinson is offline Offline
Newbie Poster

Drawing A Table On A Container(Panel)

  #1  
Aug 1st, 2004
Hi,
Pls how can I draw a table on a panel with java.The table with five rows and ten columns.
Thank you.
Bobinson.
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Jul 2004
Location: Pakistan
Posts: 1,673
Reputation: nanosani is an unknown quantity at this point 
Rep Power: 8
Solved Threads: 49
Colleague
nanosani's Avatar
nanosani nanosani is offline Offline
Unauthenticated Liar

Re: Drawing A Table On A Container(Panel)

  #2  
Aug 8th, 2004
try using JTable .... study the JTable APIs and you'll know what you have to do.
Reply With Quote  
Join Date: Jul 2004
Posts: 6
Reputation: bobinson is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
bobinson bobinson is offline Offline
Newbie Poster

Re: Drawing A Table On A Container(Panel)

  #3  
Aug 17th, 2004
/*Hello everybody out there!,

I found out that JTable class of the swing package allows one to draw a table on a container.It's as simple as creating the object of the class and passing two arguments into its construct,the first being number of rows and the second the number of columns.Then you go on ahead to add the object on to the container.(panel)

something like this...*/

import javax.swing. *;

class DrawTable
{
static JPanel panel;
static JTable table;
static JFrame frame;

public static void main(String args[])
{
panel=new JPanel();
table=new JTable(4,6);
panel.add(table);
frame = new JFrame("Table");
frame.getContentPane().add(panel);
frame. setSize(230,230);
frame.setVisible(true);

}
}

/*Now here's my problem.
How can I go about inserting values into the table?
Also,can I increase the size(width and height) of the cells?,
Is there any other thing I could do with this table apart fro inserting values and increasing its size?

I'll quite appreciate your contributions.Thanks */
Reply With Quote  
Join Date: Jul 2004
Location: Pakistan
Posts: 1,673
Reputation: nanosani is an unknown quantity at this point 
Rep Power: 8
Solved Threads: 49
Colleague
nanosani's Avatar
nanosani nanosani is offline Offline
Unauthenticated Liar

Re: Drawing A Table On A Container(Panel)

  #4  
Aug 19th, 2004
see the JTable methods in the APIs... you'll find how to resize and insert in the cells of the table.
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

DaniWeb Java Marketplace
Thread Tools Display Modes

Similar Threads
Other Threads in the Java Forum

All times are GMT -4. The time now is 8:02 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC