Multiple Validations on jTestFields
Hi,
I am working on an window application in which I have to validate the data of text fields, like if textbox1 is empty then it prompt for filed should not be empty, and if data is entered then it should check whether it is valid or not. Unless all the validations are not successful in textfield1 it should not move to second text Field.
I have tried it using if Else If ladder but not fulfill, please put an Example ASAP.
Thanks in Advance
View Answers
September 20, 2012 at 6:00 PM
Here is an example that validates single field. You can validate other fields in the same way.
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class SwingProgram{
public static void main(String args[]){
SwingProgram p=new SwingProgram();
}
public SwingProgram(){
JLabel label=new JLabel("Enter Name:");
final JTextField text=new JTextField(15);
JButton button=new JButton("Submit");
JFrame f=new JFrame();
f.getContentPane().setLayout(null);
label.setBounds(50,50,80,20);
text.setBounds(150,50,150,20);
button.setBounds(50,80,80,20);
f.add(label);
f.add(text);
f.add(button);
f.setSize(400,150);
f.setVisible(true);
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
String name=text.getText();
if((name.equals(""))||(name.equals(null))){
JOptionPane.showMessageDialog(null,"Please enter the field","Error",JOptionPane.ERROR_MESSAGE);
}
else{
JOptionPane.showMessageDialog(null,"Welcome "+name);
}
}
});
}
}
Ads
Related Tutorials/Questions & Answers:
Multiple Validations on jTestFields
Multiple Validations on jTestFields Hi,
I am working on an window application in which I have to validate the data of text fields, like if textbox1... then it should check whether it is valid or not. Unless all the
validations
validations
validations How to get All Client and server side
validations in spring using jsp
Please visit the following link:
Spring Validation Example
Advertisements
validations - Struts
validations log in page with
validations user name must be special character and one number and remining is alphabetes in struts
Spring Validations
Spring Validations Hi..
i need code for
validations using spring annotations
listbox and textbox validations
listbox and textbox validations hi,
any one please tell me how to set
validations for listbox and textboxes using bean classes?
thank you
Please visit the following link:
http://www.roseindia.net/jsp/user
Javascript validations problem
Javascript
validations problem i have attached two jsp files 1.sports1.jsp and sports.jsp files
Here when i run my sports.jsp file my validation works correctly but when my validation fails i am getting an alert window and i am
select box and text box validations
select box and text box validations hi,
any one please tell me how to set
validations for select box and text boxes using bean classes?
thank you
Please visit the following link:
http://www.roseindia.net/jsp/user
multiple inheritance
multiple inheritance why java doesn't support
multiple inheritance? we can achieve this by using interface but not with classes? what is the main reason that java community implemented like
Multiple Inheritance
Multiple Inheritance Why Java Doesn't have
Multiple Inheritance It is Advantage or Disadvantage.........
Hi Friend,
When we extends... and inconsistencies Java does not support
Multiple Inheritance.
Thanks
Multiple Inheritance
Multiple Inheritance All are saying java doesn't support
multiple inheritance but by default Object class is super class for all the user defined... class so java any how do
multiple inheritance? Can you please explain
java validations
;
if (f.length<20)
{
alert("Address too short");
return false;
}
var
q=document.retailer.contact_no.value;
if (
q==null ||
q=="")
{
alert...
q=document.retailer.contact_no.value;
if (
q==null ||
q=="")
{
alert
multiple inhertence
multiple inhertence package start;
class A
{
protected void a() //a method in A
{
System.out.println("Class A");
}
}
class B extends A
{
public B()
{
super
multiple inhertence
multiple inhertence package start;
class A
{
protected void a() //a method in A
{
System.out.println("Class A");
}
}
class B extends A
{
public B()
{
super
multiple select values
multiple select values can you provide an example for
multiple select values for html:select tag
Remove multiple elements in arraylist
Remove
multiple elements in arraylist how can we remove
multiple values in arrayList?
only remove method we used for single remove.but i want to delete
multiple value in arrayList
multiple choice questions
multiple choice questions how can i store 10
multiple choice questions in one class with using java language