G'Day, We are using JSpell and are very happy with it. You can find it at http://www.wallstreetwise.com check it out. Have a great day. Jon Message: 1 From:...
Jon Hansen
Jon.Hansen@...
Jun 1, 2001 2:47 pm
2271
I am trying to prevent JFileChooser from scanning all the drives/directories. Even when I specify the directory name in the constructor, it still seems to scan...
Reynshteyn, Leonid
leonid.reynshteyn@...
Jun 4, 2001 9:40 pm
2272
... What JDK v.? _______________________________________________ Advanced-swing mailing list Advanced-swing@... ...
Dmitry Beransky
dberansky@...
Jun 4, 2001 9:49 pm
2273
Hello everyone, My data varies and it does't have fixed rows. Every time the rows has to be increased based on the data for e.g i initialize the no of rows to...
ravi prakash
ravi@...
Jun 5, 2001 12:45 am
2274
Typically we run our apps from a Jar although for various reasons there are special occasions where we have parallel directory structures ahead in the class...
Steve Barrett
sjbjava@...
Jun 5, 2001 4:11 am
2275
Did you or anyone else evaludate JSpell by "The Solution Cafe"? How did you like this product? ... From: Pradeep, Chinnaswamiah [mailto:cprad@...] ...
Reynshteyn, Leonid
leonid.reynshteyn@...
Jun 5, 2001 5:56 pm
2276
Does anyone know of a way to validate that the date format entered by the user in the JTextField corresponds to a specific date format. For example, I want to...
Reynshteyn, Leonid
leonid.reynshteyn@...
Jun 5, 2001 7:11 pm
2277
Hello to everybody, I have a question that is related with java programming in general. I have a class with a constructor in myClass: public myClass{ public...
Omar Diego Vera Ustariz
verad@...
Jun 6, 2001 12:30 am
2278
I am attempting to fabricate a JTable to get behavior similar to Windows Explorer in Icons view mode. I am able to rebuild the model, shrinking and growing...
CLARK,RAND (HP-Rosevi...
rand_clark@...
Jun 6, 2001 1:13 am
2279
Please limit the Swing mailing lists to Swing questions. ... John Zukowski, Strategic Java Consulting JZ Ventures, Inc. - http://www.jzventures.com Java...
John Zukowski
jaz@...
Jun 6, 2001 1:16 am
2280
SimpleDateFormat defaults to lenient date parsing (if it can find any way of constructing a valid date from the entered date it will). This behaviour can be...
PMcMahon@...
Jun 6, 2001 5:55 am
2281
Thank you for entering. You have been specially selected to qualify for the following: Grand prize - Florida Bahamas vacation and cruise 1st prize - Airline...
estok@...
Jun 6, 2001 8:07 am
2282
We've already paid out over a cool MILLION DOLLARS to WINNERS just like YOU. Enter the Finest, Highest Paying Casino Online $25,000 WINNERS are cashing in at...
tigger6003@...
Jun 6, 2001 10:27 am
2283
Hello, I'd like to make a JList which displays different tooltips depending on which item the mouse is on. Is there any simple way to do this, I did not find...
Arnaud Hallais
arnaud.hallais@...
Jun 6, 2001 3:11 pm
2284
How about using JComponent.getToolTipText(MouseEvent event) ? Jonathan -- Jonathan Oddy SERVICEPower Business Solutions Ltd Petersgate House - St Petersgate -...
Jonathan Oddy
J.Oddy@...
Jun 6, 2001 3:22 pm
2285
IIRC DefaultListCellRenderer returns JLabels cast to Component. So, simply cast them to JComponent, to set the tool tip text. ... From: Arnaud Hallais...
Greg Munt
greg@...
Jun 6, 2001 3:46 pm
2286
Well I tryed your solution, and ...... back to the same point,No tooltips! the JList component behaves like if it has one of these transparent panel on top to...
Arnaud Hallais
arnaud.hallais@...
Jun 7, 2001 7:09 am
2287
Hi, Remember, you have to tell the Tooltipmanager that it's supposed to pay attention: ToolTipManager.sharedInstance().registerComponent(this); // "this" is a ...
Marijn H. van der Ploeg
marijn@...
Jun 7, 2001 8:07 am
2288
Ok swingers I found the (at least one) solution in the Sun Community discussion archive "Mr jay_suri had the same problem way back in 1999" I needed to...
Arnaud Hallais
arnaud.hallais@...
Jun 7, 2001 8:52 am
2289
Dear advanced-swing@..., What Company is Predicted to do $1 Billion Within 36 Months? FREE Membership & Income Opportunity FREE Website & Virtual Office ...
sales@...
Jun 8, 2001 2:16 am
2290
Hi, I am running my applet in the browser, the client has to popup a window by using functional keys CTRL+ALT+A. then the window pops up and the user on...
ravi prakash
ravi@...
Jun 8, 2001 5:02 pm
2291
Question: Why is it that DefaultMutableTreeNode contains an Object, and the value parm DefaultTreeCellRenderer.getTreeCellRendererComponent is an Object, but...
KC_Eilander@...
Jun 8, 2001 6:16 pm
2292
class ComponentTreeCellRenderer extends DefaultTreeCellRenderer { public Component getTreeCellRendererComponent(JTree aTree,Object aValue,boolean...
Premal Jhaveri
premal@...
Jun 8, 2001 7:44 pm
2293
Hi, I would like to know if there is any way to run a thread inside an "actionPerformed" event. The point is to return the control after the button is pressed...
Jose Antonio Lamas
jalamas@...
Jun 11, 2001 5:47 pm
2294
Jose, Which JDK are you using ? invokeLater() is available from even dispatch thread. Following is an exerpt from JavaDoc of invokeLater(). If invokeLater is...
Ajit Bhingarkar x5495
abhingar@...
Jun 11, 2001 7:30 pm
2295
I need to write out simple 16 x 16 color BMP files. I know the Java Advanced Image API supports this, but it's huge and requires an extra install whine,...
Steve Barrett
sjbjava@...
Jun 11, 2001 9:49 pm
2296
Hi again, I'm using JDK 1.3, and the problem is that the "actionPerformed" event blocks the GUI and I can't do anything else. I've tried with invokeLater(),...
Jose Antonio Lamas
jalamas@...
Jun 12, 2001 8:53 am
2297
I'm not working with applets. In an application You can do the following Button1ActionPerformed (ActionEvent evt) { Runnable afterRunner = new Runnable() { ...
Wagner, Urs
urs.wagner@...
Jun 12, 2001 9:04 am
2298
I have not done much with applets but I assume threads work about the same as in applications. The SwingWorker API is a great little tool for spinning off...
Jon Hansen
Jon.Hansen@...
Jun 12, 2001 12:37 pm
2299
Hi, I am trying to capture events Ctrl+Alt+a, i had went through the forums and i haven't found a solution for this, Could any help me in this with sample...