Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]4 Replies - 51 Views - Last Post: Today, 07:50 PM
#1
Reputation: 0
- Posts: 4
- Joined: 18-March 13
Posted Today, 12:59 PM
Look through the source code and insert comment marks at the beginning of all lines involving any of the message boxes, except for the MessageBox declaration statements. Directly underneath the lines that are commented out, insert new code to generate JOptionPane dialog boxes that replace the message boxes. Use the same titles, prompts, and buttons. Do not forget to import the necessary Swing packages.import java.io.*; import java.awt.*; import java.awt.event.*; public class Flora extends Frame implements ActionListener { MessageBox savedBox; MessageBox errorBox; DataOutputStream output; //Construct components Panel dataFields = new Panel(); Panel firstRow = new Panel(); Panel secondRow = new Panel(); Panel thirdRow = new Panel(); Panel fourthRow = new Panel(); Panel fifthRow = new Panel(); Panel sixthRow = new Panel(); Panel buttonArea= new Panel(); Button newSticker = new Button("New Sticker"); Button renewal = new Button("Renewal"); Label vinLabel = new Label("Enter Vehicle VIN number: "); TextField vin = new TextField(20); Label yearLabel = new Label("Year: "); TextField year = new TextField(4); Label makeLabel = new Label("Make: "); TextField make = new TextField(10); Label modelLabel = new Label("Model:"); TextField model = new TextField(10); Label firstNameLabel = new Label("Enter First Name: "); TextField firstName = new TextField(15); Label lastNameLabel = new Label("Enter Last Name:"); TextField lastName = new TextField(20); Label addressLabel = new Label("Enter Flora Address:"); TextField address = new TextField (35); public static void main(String[] args) { Flora window = new Flora(); window.setTitle("Flora City Stickers"); window.setSize(450, 250); window.setVisible(true); } public Flora() { //Set background and layout managers setBackground(Color.magenta); setLayout(new BorderLayout()); dataFields.setLayout(new GridLayout(6,1)); FlowLayout rowSetup = new FlowLayout(FlowLayout.LEFT,5,2); firstRow.setLayout(rowSetup); secondRow.setLayout(rowSetup); thirdRow.setLayout(rowSetup); fourthRow.setLayout(rowSetup); fifthRow.setLayout(rowSetup); sixthRow.setLayout(rowSetup); buttonArea.setLayout(new FlowLayout()); //Add fields to rows firstRow.add(vinLabel); firstRow.add(yearLabel); firstRow.add(makeLabel); firstRow.add(modelLabel); secondRow.add(vin); secondRow.add(year); secondRow.add(make); secondRow.add(model); thirdRow.add(firstNameLabel); thirdRow.add(lastNameLabel); fourthRow.add(firstName); fourthRow.add(lastName); fifthRow.add(addressLabel); sixthRow.add(address); //Add rows to panel dataFields.add(firstRow); dataFields.add(secondRow); dataFields.add(thirdRow); dataFields.add(fourthRow); dataFields.add(fifthRow); dataFields.add(sixthRow); //Add buttons to panel buttonArea.add(newSticker); buttonArea.add(renewal); //Add panels to frame add(dataFields, BorderLayout.NORTH); add(buttonArea, BorderLayout.SOUTH); //Add functionality to buttons newSticker.addActionListener(this); renewal.addActionListener(this); //Open the file try { output = new DataOutputStream(new FileOutputStream("Sticker.dat")); } catch(IOException c) { System.exit(1); } //Construct window listener addWindowListener( new WindowAdapter() { public void windowClosing(WindowEvent e) { System.exit(0); } } ); } public void actionPerformed(ActionEvent e) { String arg = e.getActionCommand(); String code; if (arg == "New Sticker") code = "N"; else code = "R"; if ( (vin.getText().compareTo("")<1) || (year.getText().compareTo("")<1) || (make.getText().compareTo("")<1) || (model.getText().compareTo("")<1) || (firstName.getText().compareTo("")<1) || (lastName.getText().compareTo("")<1) || (address.getText().compareTo("")<1) ) {
Is This A Good Question/Topic? 0
Replies To: Creating JOptionPane boxes
#2
Reputation: 9032
- Posts: 33,508
- Joined: 27-December 08
Re: Creating JOptionPane boxes
Posted Today, 01:02 PM
What exactly is your question? Also, please adopt a readable indentation convention. It makes it easier for you and for us to read, and therefore debug, your code.
#3
Reputation: 0
- Posts: 4
- Joined: 18-March 13
Re: Creating JOptionPane boxes
Posted Today, 01:05 PM
I am unsure of where the message boxes are located in the code, or how to even tell.
#4
Reputation: 9032
- Posts: 33,508
- Joined: 27-December 08
Re: Creating JOptionPane boxes
Posted Today, 01:51 PM
Um, did you even read the code? Look here MessageBox savedBox;. It clearly tells you the type.
#5
Reputation: 8021
- Posts: 31,132
- Joined: 06-March 08
Re: Creating JOptionPane boxes
Posted Today, 07:50 PM
ITnerdybird, on 20 May 2013 - 04:05 PM, said:
I am unsure of where the message boxes are located in the code, or how to even tell.
So you cut & paste that code from some site and want to make it work ?
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/321463-creating-joptionpane-boxes/
houston texans Joe Webb Fiesta Bowl Jeanie Buss NFL playoff schedule 2013 Bronson Pelletier andy reid
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.