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
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
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
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
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
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
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
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.