Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / November 2005

Tip: Looking for answers? Try searching our database.

setLocation (AWT)

Thread view: 
Jack - 05 Nov 2005 05:05 GMT
Please compile the following code with Javac.
Look at the objects in your browser and you will see that they are not at
the right locations.
Why?
can you see what is wrong with setLocation?

import java.awt.*;
import java.applet.Applet;

public class ListSimpleTest extends Applet {
 public void init() {
   List list = new List(5, false);
   list.add("Seattle");
   list.add("Washington");
   list.add("New York");
   list.add("Chicago");
   list.add("Miami");
   list.add("San Jose");
   list.add("Denver");
   add(list);

   list.setSize(400, 420);

   list.setName("This is a name.");

   int height = list.getHeight();
   int width  = list.getWidth();

   TextField f1 = new TextField("1111");
   f1.setLocation(10, 10);
   add(f1);

   TextField f2 = new TextField("1111");
   f2.setLocation(20, 20);
   add(f2);

   TextField f3 = new TextField("1111");
   f3.setLocation(30, 30);
   add(f3);

   TextField f4 = new TextField("1111");
   f4.setLocation(80, 80);
   add(f4);

   f1.setText(Integer.toString(height));
   f2.setText(list.getName());

   f3.setText(Integer.toString(f2.getX()));
   f4.setText(Integer.toString(f2.getY()));

//http://java.sun.com/developer/onlineTraining/awt/contents.html#AWTScrollbar
 }
}
Benji - 05 Nov 2005 08:13 GMT
> can you see what is wrong with setLocation?

what's wrong is that you didn't take the advice already given to you and
just reposted your question.  =P

Signature

Of making better designs there is no end,
 and much refactoring wearies the body.

Jack - 05 Nov 2005 20:03 GMT
go away
pssshhhhh pssssshhhh

>> can you see what is wrong with setLocation?
>
> what's wrong is that you didn't take the advice already given to you and
> just reposted your question.  =P


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.