Results 1 to 5 of 5
Thread: Images in AWT frame
- 12-02-2008, 04:53 AM #1
Member
- Join Date
- Oct 2008
- Posts
- 30
- Rep Power
- 0
Images in AWT frame
how can I put an image in an AWT frame that is run outside of an applet?
Heres the code for my frame:
Java Code:Frame f=new Frame("Music Info:"); f.setBackground(Color.yellow); f.setVisible( true ); TextArea textArea=new TextArea("Come Clarity by In Flames",2,30); textArea.setEditable(False); f.add(textArea); f.setLayout(new FlowLayout()); f.setSize(250,250);
-
Just curious, why AWT and not Swing? One reason for the question: I know Swing but really don't know AWT, and from what I know, most don't use it as much.
- 12-02-2008, 05:32 AM #3
Member
- Join Date
- Oct 2008
- Posts
- 30
- Rep Power
- 0
im using AWT because I am being taught in that form. I have no idea how to use swing and I dont have the time to relearn java.
- 12-02-2008, 06:29 AM #4
From your question
> how can I put an image in an AWT frame that is run outside of an applet?
I'll have to guess that you do know how to put an image in an Applet.
For a standalone AWT application, you would use a Canvas and override paint(Graphics g) in exactly the same way as for an Applet. Then add the Canvas to the Frame, using an appropriate Layout Manager.
And if you're spending money to be taught AWT and not Swing, you're being ripped off. AWT is legacy. Swing has been around long enough that it should be used for all new applications.
db
- 12-02-2008, 06:37 AM #5
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Not a huge thing to learn Swing lol. Just read about Swing on the Suns' official web site. Java Swing
Similar Threads
-
Getting internal frame out
By rad in forum New To JavaReplies: 8Last Post: 08-11-2008, 02:33 AM -
Frame to other Frame
By Aswq in forum New To JavaReplies: 2Last Post: 07-19-2008, 04:27 PM -
close a frame..
By tajinvillage in forum New To JavaReplies: 5Last Post: 04-27-2008, 10:22 PM -
Frame Query
By Daniel in forum AWT / SwingReplies: 1Last Post: 07-05-2007, 06:27 PM -
Frame problems
By gary in forum AWT / SwingReplies: 2Last Post: 06-20-2007, 01:21 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks