Anyone know when 1.5 is scheduled for release?

2003-02-06 Thread Vella, John
I've been out of Java developement for a few months. Does Sun have a location on the web site that provides information on future releases? Thanks, John ___ Advanced-swing mailing list [EMAIL PROTECTED] http://eos.dk/mailman/listinfo/advanced-swing

How do you set a custom cursor on a table header?

2002-07-17 Thread Vella, John
I'm using my own renderer component for my table's column headers. For some reason using setCursor on the header components doesn't work(ie the default arrow cursor is always used). Is there some special magic that needs to be done? I can set a custom cursor on the JTable itself but I can't

Is it possible to use a JTree as the drop down list for a JComboBox?

2002-05-30 Thread Vella, John
I don't know if this is technically possible with the JComboBox, but I was wondering if I could have a JTree pop down instead of a JList? I'm using 1.3.1_02. Thanks, John ___ Advanced-swing mailing list [EMAIL PROTECTED]

Anyone know why Shift-Tab doesn't work with HP-UX?

2002-05-16 Thread Vella, John
I've noticed that Shift-Tab doesn't work with Java apps when I'm running on HP-UX 11 with Java 1.3.1_02(you can see this by using Tab navigation within dialog boxes). It works fine on Solaris and Windows. Anyone know why this is or more importantly, how to fix it? Thanks, John

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

2002-04-28 Thread Vella, John
Is there anyone on this list that can help with this? -Original Message- From: Vella, John Sent: Friday, April 26, 2002 4:46 PM To: [EMAIL PROTECTED] Subject: PLEASE HELP: Need best technique to avoid missing font warnings My 1.3.1_02 product will be shipping soon and I'm faced

PLEASE HELP: Need best technique to avoid missing font warnings

2002-04-26 Thread Vella, John
My 1.3.1_02 product will be shipping soon and I'm faced with figuring out the best way to avoid those darned missing font warnings that usually happen when executing on Solaris and remote displaying(especially when using a PC X server). Does anyone know a fairly rock solid technique to work

Test message -- please ignore

2002-01-02 Thread Vella, John
Testing my new subscription ___ Advanced-swing mailing list [EMAIL PROTECTED] http://eos.dk/mailman/listinfo/advanced-swing

How to get my app's toolbar to wrap the buttons?

2002-01-02 Thread Vella, John
I'm trying to update my application's toolbar so that it will automatically wrap to use multiple rows for the buttons if the width of the application session window becomes too narrow to show them all in a single row. The following testcase represents what I'm trying to do. Can anyone get this

RE: multi-lined labels?

2001-07-06 Thread Vella, John
You can use this: public static final JComponent createMultiLineLabel(String text) { // Count the number of newline characters in the text StringTokenizer st = new StringTokenizer(text, \n); int lines = st.countTokens(); JTextArea ta = new JTextArea(text, lines, 0);

Anyone up for this Swing repaint challenge? (Please, I need your help)

2001-05-02 Thread Vella, John
I have a repaint problem that involves needing to manage the repaint of one component entirely from the repaint code of another component. For architectural reasons of my app, I have the following layout configuration(both components are just extended JPanels): __

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

2001-04-03 Thread Vella, John
You can also see an example of how this can be done at http://www2.gol.com/users/tame/swing/examples/JTabbedPaneExamples2.html John -Original Message- From: Wilson AJ [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 5:59 AM To: [EMAIL PROTECTED] Subject: RE: forcing a single

FW: What's the easiest way to add press-and-drag multi selection supp ort to JList?

2001-03-01 Thread Vella, John
Can anyone on this list answer my question? -Original Message- From: Vella, John [mailto:john_vella] Sent: Monday, February 26, 2001 8:38 PM To: Swing (E-mail) Subject: What's the easiest way to add press-and-drag multi selection supp ort to JList? I want all of my JLists to support

What's the easiest way to add press-and-drag multi selection support to JList?

2001-02-26 Thread Vella, John
I want all of my JLists to support "press and drag" multiple selection, so users don't have to use the keyboard to get multiple items selected(which SHOULD BE THE DEFAULT BEHAVIOR). What's the least amount of code to allow doing this? Thanks, John (using 1.3)