Advertisement
|
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002.
If you wish to participate in discussions, please visit the new
Artima Forums.
Message:
reply ----- How to create button in an appelet ???
Posted by Y.M.Sudarsan on August 07, 2000 at 10:57 AM
> How to create button in an appelet ??? import java.awt.*; import java.applet.*; public class sample extends Applet { Button b1; public void init() { b1 = new Button("A sample button"); add(b1); } }
Replies:
- java denesh December 14, 2001 at 7:34 AM
(0)
- java denesh December 14, 2001 at 7:33 AM
(1)
- Image Map Matt Gerrans December 14, 2001 at 10:24 PM
(0)
- .... wally July 12, 2001 at 7:11 PM
(0)
- rap abidoullah February 27, 2001 at 10:03 AM
(0)
|