java help

can you be more specific?
(as in appear in an app, software, web broswer? are you creating your own java app with a program & want to place a button somewhere?)
 
malbolgia take a look these classes inside the Sun's api:
BorderLayout, GridLayout, FlowLayout.
Also there has some tutorials with any type of layout have a look at theme.

If i am right you want to specify the layout of some buttons inside a container or an inheritance of it. Such as swing (JPanel...), Applet, simple graphic application.

I hope i help my friend!

;)
 
have a look here it is a web development fourms nice and helpfull here /http://www.4-blue.net/cgi-bin/ultimatebb.cgi and see if any one there can help you :)
 
just came across another solution if the problem still exists:
before adding the button with add(Buttonname); set the position with:

Buttonname.setBounds(pos_x,pos_y,width,height);

FortiTude
 
Top