frames...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • treck
    New Member
    • Feb 2008
    • 5

    frames...

    Hi! can somebody tell me how can i make my frame( in Java ) be on its default size. Some say that i shoul add the .pack(). Thanks for the help!
  • jimhawkss
    New Member
    • Feb 2008
    • 10

    #2
    FIrst a few questions.
    1:What do you mean by Default Size?
    2:Are you trying to Set it's size? aka use .setSize(800,60 0);
    3:Or are you trying to make it unresizable by the user? aka .setResizable(f alse);

    Comment

    • BigDaddyLH
      Recognized Expert Top Contributor
      • Dec 2007
      • 1216

      #3
      Take the Swing tutorial: http://java.sun.com/docs/books/tutor...ing/index.html

      Comment

      Working...