Re: Converting Complete Applet Project From Swing-Awt

2001-03-26 Thread Greg Munt
This is the least of your problems. (Incidentally, deploying as a CAB will mean only ppl on Windows platforms can use your applets.) Many Swing components do not have AWT counterparts. If someone asked me to convert Swing to AWT, I'd laugh in their face, pretty much. -Original Message-

Re: How can i develop a mailserver using swing.

2001-04-02 Thread Greg Munt
I don't see how a mailserver implementation requires a GUI. Unless you mean admin tools.. -Original Message- From: ravi kanth [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED]; [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Monday, April 02, 2001 09:21 Subject: How can i develop a

Re: forcing a single 'row' of tabs in a JTabbedPane

2001-04-03 Thread Greg Munt
If you don't like what BasicTabbedPaneUI implements, extend javax.swing.plaf.TabbedPaneUI, or override the public/protected method(s) that calculate the number of runs. Of course, you'll need to add arrow buttons to scroll your tabbed pane, now. This may warrant a custom component, I don't know.

Re: super layout manager help

2001-04-02 Thread Greg Munt
.. -Original Message- From: Steve Barrett [EMAIL PROTECTED] To: Greg Munt [EMAIL PROTECTED]; govind [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Monday, April 02, 2001 05:19 Subject: Re: super layout manager help Fair enough. We are porting a legacy DOS application and we are finding

Re: Problems Using JTable for Calendar

2001-05-29 Thread Greg Munt
-Original Message- From: Keith Bennett [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Saturday, May 26, 2001 08:25 Subject: Problems Using JTable for Calendar All - I'm implementing a calendar widget that allows a user to select a date with a familiar and (hopefully)

Re: Displaying Xml File in Java UI Component

2001-11-13 Thread Greg Munt
Erm.. If all you want to do is display the file, use a text area? Maybe (hopefully) I am missing something? - Original Message - From: Samivelu, Srinivasan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 13, 2001 10:36 AM Subject: Displaying Xml File in Java UI

Re: Urgent...!!!! Dockable Window

2002-01-31 Thread Greg Munt
Wait.. Why can't you use JToolbar? - Original Message - From: JAMSHEER [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 31, 2002 11:15 AM Subject: Urgent... Dockable Window Hi all , I need to develop a dockable window in Java.. How can I create a dockable window

Re: JApplet loading bar

2002-02-08 Thread Greg Munt
You could download a very small JAR which does nothing more than bring up a dialog and report on download progress of the 'real' big jar, via a JProgressBar. - Original Message - From: Alex Kravets To: Advanced Swing Sent: Friday, February 08, 2002 5:18 PM

Re: Refreshing the view of JTable.

2002-03-12 Thread Greg Munt
How are you changing the data? - Original Message - From: Reinstein, Lenny [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 3:36 PM Subject: Refreshing the view of JTable. I use a simple model that implements AbstractTableModel. I have a 2-dimensional String

Re: Problem in JMenu with no JMenu Item

2002-03-19 Thread Greg Munt
What is the point of a menu with no menu items in it? - Original Message - From: Senaka Suriyaarachchi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 18, 2002 11:28 AM Subject: Problem in JMenu with no JMenu Item Hi All When I created the JBenuBar with JMenu having no

Re: Lock the screen

2002-04-19 Thread Greg Munt
Wouldn't a simple modal dialog work? - Original Message - From: Andrei POSTOLACHE [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 18, 2002 4:31 PM Subject: Lock the screen How can i lock the screen with swing? Just like a screen saver does when ascking for a password.

Re: PLEASE HELP: Need best technique to avoid missing font warnings

2002-04-29 Thread Greg Munt
If you are commenting out lines in font.properties and getting a different font than you would usually get, I'd imagine you are commenting out too many lines. If you don't want to modify font.properties, require that the fonts being complained about are installed on the machine running the Java

Re: JRadioButton editor and renderer for JTable

2002-05-17 Thread Greg Munt
What is the question? Or is this a request to implement what you have described, and sent it to you free of charge? - Original Message - From: javac_za [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 16, 2002 10:46 AM Subject: JRadioButton editor and renderer for JTable

Re: Making parts of Text component uneditable.

2002-05-21 Thread Greg Munt
What are you trying to do? - Original Message - From: Reinstein, Lenny [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 21, 2002 3:57 PM Subject: Making parts of Text component uneditable. There's a simple setEditable(boolean) that make the whole JTextComponent uneditable.