Jdialog box with textfield

Jdialog box with textfield

View Answers

July 28, 2009 at 1:16 PM

Hi Friend,

Try the following code:

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

class MyFrame
{
JDialog d;
JLabel label1=new JLabel("Enter Name");
JTextField text1 = new JTextField(10);
JLabel label2=new JLabel("Enter Address");
JTextField text2 = new JTextField(10);
JPanel panel=new JPanel(new GridLayout(3,2));
public MyFrame(JFrame parent)
{
JButton button = new JButton("OK");
d = new JDialog(parent);
panel.add(label1);
panel.add(text1);
panel.add(label2);
panel.add(text2);
panel.add(button);
d.getContentPane().add(panel,BorderLayout.CENTER);
d.setTitle("JDialog");
d.setModal(true);
d.pack();
d.setSize(300,100);

button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ae){
d.dispose();
}
});
d.setVisible(true);

}

public String getName(){
return text1.getText();
}
public String getAddress(){
return text2.getText();
}


}
class ModelFrame
{
JLabel label1 = new JLabel();
JLabel label2 = new JLabel();
JPanel panel=new JPanel(new GridLayout(3,2));
public void buildGUI()
{
JButton button = new JButton("Click here to enter name and address");
panel.add(label1);
panel.add(label2);
panel.add(button);
final JFrame f = new JFrame();
f.getContentPane().add(panel,BorderLayout.CENTER);
f.pack();
f.setLocationRelativeTo(null);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setVisible(true);
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ae){
label1.setText("Name = "+new MyFrame(f).getName());
label2.setText("Address = "+new MyFrame(f).getAddress());
}
});
}
public static void main(String[] args)
{
new ModelFrame().buildGUI();

}
}

Thanks









Related Tutorials/Questions & Answers:
Jdialog box with textfield - Java Beginners
Jdialog box with textfield  i have to create a dialog box with 2...*; import java.awt.*; import java.awt.event.*; class MyFrame { JDialog d...(JFrame parent) { JButton button = new JButton("OK"); d = new JDialog
JDialog
JDialog  hi ... please help me in creatin a JDialog box that contains two buttons of minimization and exit with simple code and comments
Advertisements
JDialog to create a customized dialog box for entering text data
JDialog to create a customized dialog box for entering text data   Hello sir I wanted to know the code to generate a JDialog to create a customized dialog box for entering text data. The dialog can be split into panes, left pane
JDialog return value to JDialog ????
JDialog return value to JDialog ????  hello all.... legend. JD1 = JDialog1 JD2 = JDialog2 JD1 open JD2......JD2 has any values, how I return this values to JD1 ???ADS_TO_REPLACE_1 // JD1 open JD2 JD2 jd2 = new JD2(null
JDialog return value to JDialog ????
JDialog return value to JDialog ????  hello all.... legend. JD1 = JDialog1 JD2 = JDialog2 JD1 open JD2......JD2 has any values, how I return this values to JD1 ???ADS_TO_REPLACE_1 [code] // JD1 open JD2 JD2 jd2
TextField
;new TextField("Type in the box");    ... TextField      ... as the TextField. In the example given below, shown a textfield in the applet by creating its
how to open jdialog form in jinternalframe and transfer data from jdialog to jinternalform and vice-versa - Java Beginners
and jdialog box please reply.. thanks...how to open jdialog form in jinternalframe and transfer data from jdialog... application for acounts . in one form i want to use jdialog frame to search the record
TextField on the Image
TextField on the Image  how we set label or textfield etc. on the Image
TextField validations
TextField validations  I want to know How to check first letter capital or not in a text field and also check all are characters or not in same textfield? and also want to know how to check all digits or not in a textfield? ex
TextField validations
TextField validations  I want to know How to check first letter capital or not in a text field and also check all are characters or not in same textfield? and also want to know how to check all digits or not in a textfield? ex
textfield selected text
textfield selected text  How to select text in text field
Java textfield validaton
Java textfield validaton  Sir... i'm new to java. In java JTextfield when we entered a negative value after pressing one button it have to display an error message dialog of textfield and also the textfield should accept
Java textfield validaton
Java textfield validaton  Sir... i'm new to java. In java JTextfield when we entered a negative value after pressing one button it have to display an error message dialog of textfield and also the textfield should accept
Simple Java applet that need usernam, password and textfield.
a textfield box. Anything that been input to that textbox will be transfer to DB2...Simple Java applet that need usernam, password and textfield.  Hi. Anyone can help me on this matter: I need to create a small application
s:textfield - Struts
s:textfield  I am using the s:textfield tag in an appication and need... this?  Hi friend, Textfield Tag Example Textfield Tag Example
IPhone-UIPicker Data to TextField
IPhone-UIPicker Data to TextField  When I select the textfield, a picker view must come in form of action sheet and the data selected from that picker view must be populated in the text field. can anyone help me on this please
how to set the value of textfield constant
how to set the value of textfield constant  how to set the value of textfield constant
get textfield value in javascript
get textfield value in javascript  How to get and the set value of text field in JavaScript?   Get the text field value in JavaScript <html> <head> <script type="text/javascript"> <
ModuleNotFoundError: No module named 'textfield-parser'
ModuleNotFoundError: No module named 'textfield-parser'  Hi, My... named 'textfield-parser' How to remove the ModuleNotFoundError: No module named 'textfield-parser' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'textfield-parser'
ModuleNotFoundError: No module named 'textfield-parser'  Hi, My... named 'textfield-parser' How to remove the ModuleNotFoundError: No module named 'textfield-parser' error? Thanks   Hi, In your
java textfield problem
java textfield problem  I want to navigate the content of text field from one class to another and viceversa through button but when I am getting the text from first class I am getting null value.please help me..here is the code
how to set size of button,textfield.
how to set size of button,textfield.  how we set size of button textfield etc and reduce problem when click maximize button the text or textfield get large how to set as a preferd size in the panel or frame .when we click
How to Type in japanese in java Textfield?
How to Type in japanese in java Textfield?  Hello Sir/madam; Am creating an application in java in which i want to get a japanese String input from... in textfield ..Please help me and tell me how to write in japanese
how to move pointer in Textfield to newline
how to move pointer in Textfield to newline  consider my case...; class Table1 extends Frame implements ActionListener{ TextField tf1,tf2,tf3..."); l2.setBounds(100,50,200,20); tf1=new TextField(); tf1.setBounds(100,80,200,20
How to pass value of a link to a textfield
How to pass value of a link to a textfield  Dear Sir, in my project I'm initially making a value of the textfield as a link. Now, I want to pass the value of the link in the textfield after clicking the link and dont want to open
Getting content of alert message into textfield
Getting content of alert message into textfield  how to get content of alert message into textfield using javascript   Getting content of alert message into text field 1)If you want the code in java, then here
Getting content of alert message into textfield
Getting content of alert message into textfield  how to get content of alert message into textfield using javascript   Getting content of alert message into text field 1)If you want the code in java, then here
ModuleNotFoundError: No module named 'box-box'
ModuleNotFoundError: No module named 'box-box'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'box-box' How to remove the ModuleNotFoundError: No module named 'box-box
ModuleNotFoundError: No module named 'box-box'
ModuleNotFoundError: No module named 'box-box'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'box-box' How to remove the ModuleNotFoundError: No module named 'box-box
data to the textfield by means of an actionListener - Java Beginners
data to the textfield by means of an actionListener  how can i put the data of the database 1 at a time to the textfields by means of an actionlisteners and can be view by next or previous
autocompletion in textfield fetching from database in jsp
autocompletion in textfield fetching from database in jsp  hi i want to retrieve country name from mysql db to textfield.. maeans if anyone type... i caant able to select particular name to textfield... it should be in jsp
Textfield Tag (Form Tag) Example
Textfield Tag (Form Tag) Example       In this section, we are going to describe the textfield tag. The textfield tag is a UI tag that is used to render an HTML input field of type text. Add
Validate textfield in Java Swing
Validate Jtextfield in Java Swing In this section,you will learn how to validate the textfield by allowing only numbers to enter. For this purpose, we have used the keyEvent class.Using the method getKeyChar() of keyEvent class, we have
HTML in the box
HTML in the box  Can I use any HTML in the box
input box
input box  give me the code of input box in core java
input box
input box  give me the code of input box in core java
how can u reduce the size of textfield?
how can u reduce the size of textfield?  how can u reduce the size of textfield? thanks in advance   import javax.swing.*; public class ReduceTextField extends JFrame { public static void main(String
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
textfield should not allow the user to fill the date in it.
textfield should not allow the user to fill the date in it.  I got a requirement like this, I am dislaying a text field along with a calendar. Here user should not fill the date inside the text field manually. If he tries
dropdown box
dropdown box  i need to have country,state and city in drop down box using ajax and use db2 database   Have a look at the following link: JSP dependent dropdown
Not able to filter rows of jtable with textfield in netbeans
Not able to filter rows of jtable with textfield in netbeans  DBOperations objDB; ArrayList alstStock; public TableRowSorter sorter; public void... of implementing row filter to the 4th column of jtable with a textfield but its
Not able to filter rows of jtable with textfield in netbeans
Not able to filter rows of jtable with textfield in netbeans  DBOperations objDB; ArrayList alstStock; public TableRowSorter sorter; public void... of implementing row filter to the 4th column of jtable with a textfield but its
Hollow Box
Hollow Box  Write an application program that will draw a hollow box (a box with empty space in between). The program will ask the user to key... to exit. For example, if the user keys in 8, the hollow box (of length and width
Designing of textfield arrays in Netbeans IDE - Swing AWT
Designing of textfield arrays in Netbeans IDE  Respected sir, Sir I want to create an array of Jtextfield in Jframe Form in Swing GUI in NetBeans IDE.... How can i do this.........???? I have a code which
dialog box
dialog box to ask to quit or continue  hello. write an application that displays a series of at least four interview questions and each question... of the interview, use a dialog box to ask whether the user wants to - enter another set
dialog box
dialog box to show latest question  hello. write an application that displays a series of at least four interview questions and each question should... of the interview, use a dialog box to ask whether the user wants to - enter another set
combo box
combo box  Hi, [_|] dropdown box [ ] [INCLUDE... a screen like this using jsp-servlet(or DAO,DTO),in that drop down box i should get
dialog box
dialog box  hello. write an application that displays a series of at least four interview questions and each question should have at least three possible numeric choice answers. at the end of the interview, use a dialog box
dialog box
dialog box  hello. write an application that displays a series of at least four interview questions and each question should have at least three possible numeric choice answers. at the end of the interview, use a dialog box
dialog box
dialog box  hello. write an application that displays a series of at least four interview questions and each question should have at least three possible numeric choice answers. at the end of the interview, use a dialog box

Ads