Friday, August 12, 2011

Deleting The List Item

The Program To Delete A List Item import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; public class DeleteListItem { JFrame jf; JScrollPane sp; JList list; DefaultListModel model; MyListListener listener; JLabel lb; DeleteListItem() { jf=new JFrame("Delete List Item"); model=new DefaultListModel(); addElementsToModel(); list=new JList(model); listener=new MyListListener(); list.addListSelectionListener(listener); list.addKeyListener(new DeleteListener()); list.addMouseListener(new ListMouseListener()); lb=new...

Sunday, August 7, 2011

Splash Screen

Below is the Example that shows the splash screen without using any special class:import javax.swing.*;import java.awt.*;import java.awt.event .*;import java.io.*;import javax.swing.border.*;public class Splash{JFrame frame;JPanel jf;JLabel lb,imglb,locklb;JPasswordField pw;Splash(){try{UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"); }catch(Exception e){}frame=new JFrame("Splash");jf=new JPanel();lb=new JLabel("Enter Password:");imglb=new JLabel(new ImageIcon(".//bg.gif"));pw=new JPasswordField();pw.setFont(new...

setUndecorated before setVisible

As we seen in the post,we can show the frame without the Title Bar by calling the method setUndecorated(true) on a JFrame.One thing that should be noted is that we should call this method before calling the method setVisible(true); on a JFrame eotherwise we will not be able to draw the frame without Title Bar..as it will throw IllegalComponentStateException if we call setUndecorated(true) after calling the setVisible(true) method on a JFrame...So,be sure that you call setUndecorated method before calling the setVisible method....

Saturday, August 6, 2011

JFrame Without TitleBar

import javax.swing.*;import java.awt.*;import java.awt.event .*;import java.io.*;import javax.swing.border.*;public class Login implements ActionListener{JFrame frame;JPanel jp;JLabel lb;JLabel imglb;JPasswordField pw;Login(){frame=new JFrame("Login");jp=new JPanel();lb=new JLabel("Enter Password:");imglb=new JLabel(new ImageIcon(".//bg.gif"));pw=new JPasswordField();pw.setFont(new Font("comic sans ms",Font.BOLD,18));jp.setLayout(null);lb.setBounds(265,30,150,30);lb.setForeground(Color.white);lb.setFont(new...

Welcome Back

Hello Friends!!!!!!!!! Welcome back after a long time... In the mean while was busy in finding a job,exams and all..... Got placed in Sasken Communication Technologies. but still waiting for the DOJ...Free at home trying to do something beneficial Recently created a project for the Vets (named it as Pet Treatment System)or in their language you can call it a software...... Technology used --Pure Core Java, Database--MS-ACCESS.. Learnt a lot from the project ,its very hard to complete the need of a client that keeps on changing day by day,have...