comp.lang.java.gui
  Home FAQ Contact Sign in
comp.lang.java.gui only
 
Advanced search
July 2008
motuwethfrsasuw
 123456 27
78910111213 28
14151617181920 29
21222324252627 30
28293031    31
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
comp.lang.java.gui Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  JTextPane - add tabulator after line wrap         


Author: Manuel Blanquett
Date: Jul 19, 2008 16:12

Hello Community,

I was wondering if it is possible to setup a character that will be
inserted afer a line wrap within a JTextPane.

Example:

09:40:32 user: hello im writing a long text, now comes the new line
and here the text continues!

Something like a \t character.

Yours, Manuel
1 Comment
  java interview books         


Author: ammu
Date: Jul 18, 2008 19:01

Show full article (1.17Kb)
1 Comment
  Gridbag layout.         


Author: Paul.Lee.1971
Date: Jul 18, 2008 12:49

I've come up with the following code for my JApplet, which seems to
work. With one exception, and I don't know whether its anything to do
GridBagLayout. What I'm trying to do is create a Panel surrounded by
buttons, like this:
http://www.paullee.com/layout.jpg

The following code nearly does what I want:

private void initialisegridbaglayout( Container pane )
{

pane.setLayout(new GridBagLayout());
GridBagConstraints c = new GridBagConstraints();

JButton button;

button = new JButton("");
button.setPreferredSize(new Dimension( 420, 30));
c.gridx = 1;
c.gridy = 0;
pane.add(button, c);
Show full article (3.57Kb)
1 Comment
  3d graphics, AWT         


Author: armuser
Date: Jul 18, 2008 02:01

Hi

I'm looking for a java library that allows to rendering 3d graphics
using AWT component not using OpenGl.
Do you know such libraries? I tryed to find something but I found only
libraries using Java3d or OpenGl.

Regards
Jacek
no comments
  Keeping GUI responsive without worker thread ?         


Author: Alex
Date: Jul 17, 2008 06:36

Hi everybody,

I do some lengthy calculations in the event handling thread and
therefore my GUI is not responsive.
I know I could run the calculations in a worker thread, but I wonder
if there is not a simpler way.

In C++ with the Qt class library there is a 'processEvents()' methods
that can be called from the event handling thread to process pending
(GUI) events. Is there something equivalent in Java or do I absolutely
need a worker thread?

Many thanks
2 Comments
  Free Money Making Website         


Author: kowsi
Date: Jul 16, 2008 18:40

Still Not Earning Any Money Online? We Will Pay You $150 Per Day

http://shana-frnd4u.page.tl/
no comments
  Applet won't display.         


Author: Paul.Lee.1971
Date: Jul 16, 2008 07:39

Hi,
This is probably very simple, but I can't get this to work. I am
writing an Applet that will display two panels, the first one being a
panel to display graphics, and the other panel displaying the controls
to manipulate the graphics panel.

Derived from JApplet, my init() method has the following:

Container content=getContentPane();

display = new JPanel();
controls = new JPanel();

displayPanel = new DataDisplayPanel( this );
displayPanel.setPreferredSize(new Dimension( 840, 712 ));
displayPanel.setBackground( Color.BLACK );

display.add( displayPanel );

content.add( display );
content.add( controls );
Show full article (1.68Kb)
1 Comment
  Listener for opening Windows         


Author: Volker Raum
Date: Jul 15, 2008 23:45

Hi all,
i am looking for a way to register a listener to be informed whenever a window (Dialog) is opened in
my application.
I do not want to keep track in may placec for that.
I am interested in a central place.

I hope you can help me.

Greetings
Volker
3 Comments
  all about java threads         


Author: pavan
Date: Jul 12, 2008 18:48

Show full article (1.05Kb)
2 Comments
  Properties Dump         


Author: Andrew Thompson
Date: Jul 11, 2008 18:04

I am writing an app. that dumps the most common JRE/system
properties for inspection.

So far it includes..
- System.getProperties()
- System.getenv() // environment
- Toolkit.getDefaultToolkit().getDesktopProperty("win.propNames")
- Basic information on the GraphicsEnvironment and GraphicsDevices
- Locales
- Fonts

I have not yet looked closely at the information available from..
- InetAddress
- CookieManager
- KeyManagerFactory
- LogManager
..but am thinking the last managers are for managing things
created by the application (CookieManager), or specific to
the application invocation environment (LogManager).

Are there any 'must have' properties that I missed?
Show full article (0.72Kb)
1 Comment
 
1 2 3 4 5 6 7 8 9