Code Newbie
News     Forums     Search     Members     Sign Up    

My Code Newbie
Username

Password

Articles/Snippets
ASP Classic
ASP.NET
C
C#
C++
HTML / CSS
Java
Javascript
Linux / BSD
Perl
PHP
Python
Ruby
SQL
VB 6
VB.NET

C.N. Friends
  Planet Rome

Link to Us!
Code Newbie
  Code Newbie
    forums
Old 04-02-2003, 07:33 PM   #1 (permalink)
Apodysophilia
Regular Contributor
 
Apodysophilia's Avatar
 
Join Date: Apr 2003
Location: noWhere, PA
Posts: 104
Apodysophilia is on a distinguished road
Send a message via AIM to Apodysophilia
Swing?

what is it? all i know you can make window programs in it(i think)

any and all info would help, and some tutorials if you have some, thank you
Apodysophilia is offline   Reply With Quote
Old 04-03-2003, 05:44 AM   #2 (permalink)
sno2dude
Registered User
 
sno2dude's Avatar
 
Join Date: Apr 2003
Location: Michigan Tech
Posts: 38
sno2dude is on a distinguished road
Send a message via AIM to sno2dude Send a message via Yahoo to sno2dude
I am assuming that you are talking about import javax.swing.awt.*; or something along those lines. what it is is a collection of classes that allows you to use certain tools. Yes, one of those tools is the JFrame which is windowed programs. If you want more clarification you can go to the java documentation page here and at the top there will be a link for javax.swing.
sno2dude is offline   Reply With Quote
Old 04-03-2003, 07:14 AM   #3 (permalink)
Apodysophilia
Regular Contributor
 
Apodysophilia's Avatar
 
Join Date: Apr 2003
Location: noWhere, PA
Posts: 104
Apodysophilia is on a distinguished road
Send a message via AIM to Apodysophilia
thanks, i am still wondering if it is usefull to learn how to use swing?
Apodysophilia is offline   Reply With Quote
Old 04-03-2003, 07:16 AM   #4 (permalink)
sno2dude
Registered User
 
sno2dude's Avatar
 
Join Date: Apr 2003
Location: Michigan Tech
Posts: 38
sno2dude is on a distinguished road
Send a message via AIM to sno2dude Send a message via Yahoo to sno2dude
Definately useful. I use it all the time for my programming class and stuff. check out the documentation there are tons of useful tools there.
sno2dude is offline   Reply With Quote
Old 04-03-2003, 07:50 AM   #5 (permalink)
sno2dude
Registered User
 
sno2dude's Avatar
 
Join Date: Apr 2003
Location: Michigan Tech
Posts: 38
sno2dude is on a distinguished road
Send a message via AIM to sno2dude Send a message via Yahoo to sno2dude
Basically, if you want to make programs that are going to be running outside of the command prompt, you need to learn to use javax.swing because that is all the items you need. (buttons, menus, Frames, etc)
sno2dude is offline   Reply With Quote
Old 04-03-2003, 11:42 AM   #6 (permalink)
Apodysophilia
Regular Contributor
 
Apodysophilia's Avatar
 
Join Date: Apr 2003
Location: noWhere, PA
Posts: 104
Apodysophilia is on a distinguished road
Send a message via AIM to Apodysophilia
any good place to get tutorials on that?? (i say good because anyone can do a google search:p ) or just any place to start?
Apodysophilia is offline   Reply With Quote
Old 04-04-2003, 06:15 AM   #7 (permalink)
sno2dude
Registered User
 
sno2dude's Avatar
 
Join Date: Apr 2003
Location: Michigan Tech
Posts: 38
sno2dude is on a distinguished road
Send a message via AIM to sno2dude Send a message via Yahoo to sno2dude
sadly that is one that i cannot answer because all that i learned about swing was from my CS1121 and 1122 courses. Try the library though, any book on Java programming should cover swing.... if you can find the book by Dave Poplawski, thats the one we use for the class... hes also the teacher.... coincidence? i think not! anyways though, if you know how to read the java documentation, you really can learn from that somewhat.
sno2dude is offline   Reply With Quote
Old 04-04-2003, 06:59 AM   #8 (permalink)
Apodysophilia
Regular Contributor
 
Apodysophilia's Avatar
 
Join Date: Apr 2003
Location: noWhere, PA
Posts: 104
Apodysophilia is on a distinguished road
Send a message via AIM to Apodysophilia
oh well, cool thanks , i love this forum more everyday :rock:
Apodysophilia is offline   Reply With Quote
Old 04-06-2003, 06:16 PM   #9 (permalink)
keeper
Registered User
 
keeper's Avatar
 
Join Date: Apr 2003
Location: Italy
Posts: 1
keeper is on a distinguished road
If you did a google search you surely found
http://java.sun.com/docs/books/tutorial/uiswing

I've started coding swing about one week ago, and I basically needed just this url (and java api documentation) to make a quite complex GUI
keeper is offline   Reply With Quote
Old 04-06-2003, 06:29 PM   #10 (permalink)
Apodysophilia
Regular Contributor
 
Apodysophilia's Avatar
 
Join Date: Apr 2003
Location: noWhere, PA
Posts: 104
Apodysophilia is on a distinguished road
Send a message via AIM to Apodysophilia
yeah i found that last night
Apodysophilia is offline   Reply With Quote
Old 04-06-2003, 07:09 PM   #11 (permalink)
jeff
Registered User
 
Join Date: Apr 2003
Posts: 2
jeff is on a distinguished road
Swing is a user interface toolkit - buttons, tables, and trees (oh my!).

Now, I'll admit that I'm just a tad biased - I'm one of the development engineers on the project at Sun - but one of the spiffiest things about Swing is that since the source code is fully available, and the toolkit is entirely written in Java, you can easily extend/modify the base components to your heart's desire.

Oh, also check out The Swing Connection for lots of in-depth articles written by the the engineers who wrote the toolkit.

http://java.sun.com/products/jfc/tsc

jeff
jeff is offline   Reply With Quote
Old 04-06-2003, 07:22 PM   #12 (permalink)
Apodysophilia
Regular Contributor
 
Apodysophilia's Avatar
 
Join Date: Apr 2003
Location: noWhere, PA
Posts: 104
Apodysophilia is on a distinguished road
Send a message via AIM to Apodysophilia
Quote:
Originally posted by jeff
Swing is a user interface toolkit - buttons, tables, and trees (oh my!).

Now, I'll admit that I'm just a tad biased - I'm one of the development engineers on the project at Sun - but one of the spiffiest things about Swing is that since the source code is fully available, and the toolkit is entirely written in Java, you can easily extend/modify the base components to your heart's desire.

Oh, also check out The Swing Connection for lots of in-depth articles written by the the engineers who wrote the toolkit.

http://java.sun.com/products/jfc/tsc

jeff
cool thanx:rock:
Apodysophilia is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Swing And Database grfxer Java 1 07-09-2004 12:25 PM
Java Swing - Multiple Perspectives unwiseone Java 1 05-18-2004 03:08 PM
Converting Applications To Applets thunderflash Java 7 04-23-2003 05:55 PM


All times are GMT -8. The time now is 10:56 PM.


Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.0.0 RC8





Copyright © 2000-2008, Milano Interactive
Web Hosting provided by Portal 360 Web Hosting