comp.lang.java.gui
  Home FAQ Contact Sign in
comp.lang.java.gui only
 
Advanced search
September 2008
motuwethfrsasuw
1234567 36
891011121314 37
15161718192021 38
22232425262728 39
2930      40
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
  see for jobs         


Author: revathi
Date: Sep 18, 2008 07:52

no comments
  About the UI of Project         


Author: ÑØC†URÑÄL
Date: Sep 18, 2008 01:37

Hi All,
When I run my project, which has some UI components, like Button,
edit box etc, get default swing look n feel; and when I preview the
same form from IDE It gets windows default look n feel.

My question is, What should i do to get the windows look n feel in my
project after I run it?

I am uploading 2 images to give you a clear picture of this.
File1 = PreviewFromIDE.png
File2 = AfterLaunchingJAR.png
2 Comments
  auto font resize in JTextComponent?         


Author: aksel.schmidt
Date: Sep 17, 2008 23:48

hi ng

my cell phone is able to auto scale the font size when the number of
entered digits changes (small number of digits=large font, more digits
-> smaller font)

has anyone seen this implemented in JTextField or JTextArea?

thanks!

/aksel, denmark
1 Comment
  Java - Jobs, Interview Questions, Certification         


Author: Naveen
Date: Sep 12, 2008 08:39

Hi,

In the very fast moving IT Industry, there is a need for the people
to keep a note of what is happening in the field, what are the latest
Jobs available and in which technologies they are available and what
companies and also in which cities.

And also when applying for Jobs, it is obvious for people to look for
Interview Questions in their Technologies and if they are able to
find it all at one place, then they can concentrate on studying or
doing R&D further on those questions and answers available.

And for a better pay pack people are always in a mood of doing
certification and at that time they are on a lookout for
certification material and dumps and also if this is available in a
click or two, then they are the happiest people.

There is a Forum especially for the people from the IT Industry
prepared considering all the above mentioned points and it is

www.itjobguru.com/forum/index.php

And also the main features of the site are
Show full article (1.91Kb)
1 Comment
  JTable         


Author: mamta81
Date: Sep 12, 2008 02:02

Hi all,
My swing application uses a JTable.when i select any row of the
JTable and perform some other work in the same application the row
gets deselected. How can i keep the row selected
2 Comments
  compile SWT program using J2sdk1.5         


Author: Praveen
Date: Sep 12, 2008 00:26

hi,
i am trying to compile the swt program on windows using jdk1.5.
Show full article (0.83Kb)
no comments
  JLabel property - setBounds         


Author: Sriram
Date: Sep 12, 2008 00:15

Hi

I am new to Swing and I am trying to break a string of labels that
I have used the setBounds property (I am also failrly new to this) for
setting the labels above the JTextFields... Is it possible to set the
labels above the required positionof the textfield and upon adding
more fields assign a label correctly in the position above a
textfield. Sometimes I see that the labels are misaligned and not in
their proper place when I tr

something like this

Label 1 Label2
Label3 ....adding more textfields and labels

should be set automatically in their

correct position
JTextField1 JTextField2 JTextField

I hope this is clear. I am thinking about how to make this work. Any
sample ideas might help

Sriram
13 Comments
  SWT: Controls within Tables don't react well on mouse clicks         


Author: Peter Müller
Date: Sep 11, 2008 01:05

I have the problem that mouse clicks don't reach the selected control
using the following table:

Table table = new Table( group , SWT.SINGLE );
TableColumn column1 = new TableColumn( table , SWT.CENTER );
TableColumn column2 = new TableColumn( table , SWT.CENTER );
column1.setWidth( 100 );
column2.setWidth( 100 );

TableItem item = new TableItem( table , SWT.NONE );
Show full article (1.50Kb)
5 Comments
  Difficulty with Java Desktop Application type: components not displayed         


Author: Jonathan Wilson
Date: Sep 10, 2008 15:35

Hello,

(If this isn't the right forum for this question, please direct me to the
right place)

I am trying to learn Java and right now I'm working with NetBeans trying to
learn to design GUIs. I've been using various tutorials I can find on the
web, mostly on the netbeans.org web site.

Most of the tutorials have been using the "Java Application" project type.
Yesterday I started to do this tutorial:
http://wiki.netbeans.org/UsingGUIEditor
which uses the "Java Desktop Application" instead of the "Java Application".

The tutorial lacks a little detail (for example, it appears from the screen
shots that they must delete all the components from the Navigator, whereas
in the text they only say to delete the menu bar).
Show full article (1.95Kb)
3 Comments
  Detect when menu is chosen in JMenu         


Author: wx
Date: Sep 9, 2008 11:11

I'd like to implement a menu with JMenu which has submenus. I'd like
to be able to click on an item or choose it with the keyboard with
enter or accelerator. This applies to both leaf menu items (without
submenus), but I'd also like to be able to choose JMenus (which have
submenus) and perform some action in that case. How to detect when a
JMenu is chosen? I tried adding an ActionListener, but that did not
work. I can implement mouse listener and key listener, but is there an
unified way to get "menu chosen" event, regardless of the method the
menu item has been chosen? I.e. is there something similar to
ItemListener, with the difference that the event should be fired when
the menu was actually chosen (e.g. mouse click, keyboard enter), not
only selected (e.g. mouse over, keyboard arrows)?
15 Comments
1 2 3