How can i add a button in applet in java ???
Answers were Sorted based on User's Feedback
Answer / s.krishna veni
buttons should be declared..
coding to add a button :
Button b1;
b1=new Button("ok");
add(b1);
and after declaring the button..,we should add it to the
applet window..
so that a button is added at run time..
| Is This Answer Correct ? | 3 Yes | 0 No |
Button b1=new Button("OK");
add(b1);
| Is This Answer Correct ? | 0 Yes | 0 No |
Does substring start with 0?
What is Gang of four design patterns
What about main() method in java ?
What is the byte order of byte buffer?
What is the purpose of the runtime class in java programming?
Explain about object oriented programming and its features?
What is the difference between the synchronized() & static synchronized()?
What are the limitations of procedural programming approach?
What are order of precedence and associativity, and how are they used?
What are inbuilt functions?
How can u create the Object of class Without using "New" opertor?
What is remote method invocation (rmi)?