signing applets

2001-04-25 Thread telcik
From: [EMAIL PROTECTED] > > This raises another question. How to sign applets using JDK 1.3 ? > You can use Sun's jarsigner or Netscape's signtool. Take a look at: Trail: Security in Java 2 SDK 1.2 http://java.sun.com/docs/books/tutorial/security1.2/index.html and NETSCAPE OBJECT SIGNING h

adding a row to jtable

2001-04-25 Thread Ravi Prakash
HI, I have three rows of data in the table and i am using table model to setvalue and getvalue of table rows. The problem is when i delete the second row in the table, the third row moves to second row - fine as expected but when i add another row to the table it is adding to the fourth row not

JTable Problem!

2001-04-25 Thread Guendalina Fazioli
I have this problem:   when I make double click on a row of my JTable this become enabled and a user can modify the value contained. All the datas in the row must be visible but not enabled for some modification.   I have tried with the methos setEnable(false) but don't work.   Please help m

RE: Help with JTable column width

2001-04-25 Thread Wagner, Urs
If I understand Your problem correctly then Your JTable size is too large. The inital sizing of JTable is something strange. You can try out the following: TableColumnModel columnModel = table.getColumnModel(); columnModel.getColumn(0).setPreferredSize(20); columnModel.

Re: Help with JTable column width

2001-04-25 Thread Bill Tschumy
No, that doesn't help but thanks for the suggestion. I have found a partial solution, but I don't know why my original method fails. When I would change the host status I need to update the icon in column 0. To do so I used the following code. public void statusChanged(RemoteHost host)

Re: Help with JTable column width

2001-04-25 Thread Christian Pesch
Bill Tschumy schrieb: > Why is the table allocating so much space to the column? How about trying to set the second column to be resizable? > column = getColumnModel().getColumn(0); > column.setPreferredWidth(20); > column.setMinWidth(20); > column.setMaxWidt

Re: Advanced-swing digest, Vol 1 #82 - 2 msgs

2001-04-25 Thread S Uma
This raises another question. How to sign applets using JDK 1.3 ? [EMAIL PROTECTED] wrote: > Send Advanced-swing mailing list submissions to > [EMAIL PROTECTED] > > To subscribe or unsubscribe via the World Wide Web, visit > http://eos.dk/mailman/listinfo/advanced-swing > or, vi