On 10. juli. 2008, at 11.18, [EMAIL PROTECTED] wrote:
but i want to Draw it....
Try something like:
@Override
protected void paintComponent(Graphics g) {
...
String html = ...;
JLabel label = new JLabel(html);
label.setBounds(getBounds());
label.setVisible(true);
label.paint(g);
...
}
Feels a little hackish, but should work...
.k
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA2D-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".