Programming Code (840)
Scripts_Markup Code (257)
plzzzzzzzzz xplain this code import java.awt.*; import java.awt.event.*; public class Link extends Frame implements ActionListener { Label l1; Button b1; public static void main(String sr[]) { new Link().setVisible(true); } public Link() { super("Warning"); setSize(500,500); setBackground(Color.lightGray); setLayout(null); l1=new Label("There is no Link"); l1.setBounds(0,0,500,460); l1.setFont(new Font("TimesRoman",Font.BOLD,35)); l1.setAlignment(Label.CENTER); add(l1); b1=new Button("QUIT"); b1.setBackground(Color.orange); b1.setBounds(0,460,500,40); b1.addActionListener(this); add(b1); } public void actionPerformed(ActionEvent e) { this.dispose(); } }
Can I replace HTML with XML?
What is a cdata section in xml?
how to test pierrot divisor
How a web page can communicate with a web server while a user type characters in an input field.
What is the match merge ? compare data step match merge with proc sql merge - how many types are there ? data step vs proc sql
Common UI for Multiple web applications. Suppose there are 35 websites using same third party controls.These 3rd party controls are made together that all 35 websites can use these controls.If we put all 3rd party controls and use its dll in 35 websites,only class files will be accessable. But I want to use CSS,images also in all 35 websites. how I can design the N-tier solution for this project.
sample code to auto focusing the first field in a form
Code for Using Keyboard Events?
What is CDATA?
How can a procedure fetch data from FTP? I need a general code for this..
What is the functionality of GetWindow?
Write a program that will convert an integer pointer to an integer and vice-versa.
c# code to Count number of 1's in a given range of integer (0 to n)
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.