-
/*--------------------------------------------------------------------------
-
Demo4 class
-
*****************
-
By: HappyFace http://www.engineeringserver.com
-
Contact: info [@] engineeringserver.com
-
Version: unknown
-
Last updated: 06/August/2008
-
"*****************
-
Note:
-
//----------------------------------------------------------------------*/
-
import java.awt.event.ActionEvent;
-
import java.awt.event.ActionListener;
-
import javax.swing.JButton;
-
import javax.swing.JFrame;
-
import javax.swing.JLabel;
-
import javax.swing.JOptionPane;
-
import javax.swing.JPasswordField;
-
import javax.swing.JTextField;
-
-
import engineeringservercomUtilityPackage.AdsPanel;
-
-
-
AdsPanel cb2 = new AdsPanel();
-
AdsPanel cb1 = new AdsPanel();
-
-
-
-
-
-
-
-
-
public static void main
(String[] args
){
-
Demo4 m = new Demo4();
-
//AdsPanel cb1 = new AdsPanel();
-
//cb1.copyRight();
-
m.showGui();
-
}
-
-
public void showGui(){
-
setTitle("Demo: 4 - www.engineeringserver.com");
-
-
cb2.setBanner("http://www.engineeringserver.com/Software/banner.gif");
-
cb2.setBounds(5, 0, 470, 70);
-
-
add(cb2);
-
nameLbl.setBounds(7, 77, 105, 21);
-
add(nameLbl);
-
-
nameTf.setBounds(105, 77, 371, 21);
-
add(nameTf);
-
-
passwordLbl.setBounds(7, 105, 105, 21);
-
add(passwordLbl);
-
-
cb1.setBounds(290, 140, 100, 20);
-
cb1.setLink("Lost password?","http://www.engineeringserver.com/pass.txt", 0 ,0,255);
-
add(cb1);
-
-
passwordTf.setBounds(105, 105, 371, 21);
-
add(passwordTf);
-
-
submitBtn.setBounds(399, 133, 77, 28);
-
submitBtn.addActionListener(this);
-
add(submitBtn);
-
-
setLayout(null);
-
setDefaultCloseOperation(EXIT_ON_CLOSE);
-
setLocationRelativeTo(null);
-
setSize(500, 200);
-
setResizable(false);
-
setVisible(true);
-
}
-
-
-
if(nameTf.getText().equals("HappyFace") && passwordTf.getText().equals("12345")){
-
-
-
}
-
else{
-
-
}
-
}
-
}
[...] supports (colored) links as well and optimized the code. A video demo can be seen here + download Engineeringserver.com | AdsPanel video, add banners, logo’s and links to any Java Swing application! ps dont mind the popup, i needed to put that there as per requirement from one of the sponsers of [...]
[...] in any java application this is your lucky day because you can download my adspanel software here: Engineeringserver.com | AdsPanel video, add banners, logo’s and links to any Java Swing application! comes with a demo video that shows how it works. __________________ Java open source software [...]