Re: Decent browser component?

2003-06-18 Thread Sachin Hejip
Hi, If I am not mistaken there are is a pretty easy way to integrate the browser component of IE into a Swing frame. I vaguely remember reading it. Of course we are talking native stuff here. Regards Sachin - Original Message - From: "Frank D. Greco" <[EMAIL PROTECTED]> To: <[EMAIL PROTEC

Re: suspend the awt thread

2003-06-11 Thread Sachin Hejip
swing thread         }     }     new Thread(runnable).start(); } - Original Message - From: Sachin Hejip To: Deblauwe, Wim ; [EMAIL PROTECTED] Sent: Wednesday, June 11, 2003 12:33 PM Subject: Re: suspend the awt thread Yes, create the dialog and start the progress

Re: suspend the awt thread

2003-06-11 Thread Sachin Hejip
do this in the swing thread         }     }     new Thread(runnable).start(); }   Hope this helps. Regards Sachin   - Original Message - From: Deblauwe, Wim To: 'Sachin Hejip' ; [EMAIL PROTECTED] Sent: Wednesday, June 11, 2003 12:18 PM Subject: RE: suspe

Re: suspend the awt thread

2003-06-10 Thread Sachin Hejip
Title: suspend the awt thread Sorry - sent it before completing my sentence - I meant to say a) seems the best way . :-) - Original Message - From: Sachin Hejip To: Deblauwe, Wim ; [EMAIL PROTECTED] Sent: Wednesday, June 11, 2003 12:14 PM Subject: Re: suspend the

Re: suspend the awt thread

2003-06-10 Thread Sachin Hejip
Title: suspend the awt thread Hey,   From what I understood what you wish to achieve is that the UI should continue to repaint but the user should not be able to interact with it while you complete your task? You can - a) Show a modal dialog that says "Please Wait" or shows a progress bar pr

Re: Prompt user before exiting (usability question)

2003-01-15 Thread Sachin Hejip
It depends on the application (startup time, loss of data, irritation for the user if he didnt intend to do that) but in my personal experience with my own product as well as other products there are several times when I have closed the application without intending to. In all these cases it would

Re: JTable as a data entry screen

2002-12-03 Thread Sachin Hejip
One simple way, if all you want to do is fix the way it looks, is to set a renderer for that column that will convert the Number to the appropriate String representation. @see Table.setDefaultRenderer @see TableColumn.setCellRenderer Regards Sachin - Original Message - From: "Shomal Bafn

Re: Set different node's height in JTree

2002-09-18 Thread Sachin Hejip
Hi,   The way I do it is to set the preferredsize of the TreeCellRenderer for each cell it is rendering. e.g. in my application I have to show a node with text and arbitrary amount of detail below it. So, I have a JPanel with a JLabel and a JTextArea in a BorderLayout as my TreeCellRenderer.