How do I make this program generate a new problem once the button is hit

Here is the code... appreciate any help given
How do I make this program generate a new set of problem when the "NEXT" button is clicked and continue until the END button is hit
package javaapplication3;
import java.awt.GridLayout;
import java.awt.Window;
import javax.swing.*;
import java.awt.event.*;
* @author Sylvester Saulabiu
class Grid extends JFrame{
    final int score = 0;
    final int total = 0;
    Grid(){
        //Set Layout of Flashcard
        setLayout(new GridLayout(4, 4, 2 , 2));
        //Create Panels
        JPanel p2 = new JPanel();
        JPanel p3 = new JPanel();
        final JPanel p1 = new JPanel();
        //Create Radio buttons & group them
        ButtonGroup group = new ButtonGroup();
        final JRadioButton ADD = new JRadioButton("Addition");
        final JRadioButton SUB = new JRadioButton("Subtraction");
        final JRadioButton MUL = new JRadioButton("Multiplication");
        final JRadioButton DIV = new JRadioButton("Division");
        p2.add(ADD);
        p2.add(SUB);
        group.add(ADD);
        group.add(SUB);
        group.add(MUL);
        group.add(DIV);
        p2.add(ADD);
        p2.add(SUB);
        p2.add(DIV);
        p2.add(MUL);
        //Create buttons
        JButton NEXT = new JButton("NEXT");
        JButton END = new JButton("End");
        //Create Labels
        JLabel l1 = new JLabel("First num");
        JLabel l2 = new JLabel("Second num");
        JLabel l3 = new JLabel("Answer:");
        JLabel l4 = new JLabel("Score:");
        final JLabel l5 = new JLabel("");
        JLabel l6 = new JLabel("/");
        final JLabel l7 = new JLabel("");
        //Create Textfields
        final JTextField number = new JTextField(Generator1());
        final JTextField number2 = new JTextField(Generator1());
        final JTextField answer = new JTextField(5);
        //Add to panels
        p1.add(l1);
        p1.add(number);
        p1.add(l2);
        p1.add(number2);
        p1.add(l3);
        p1.add(answer);
        p1.add(l4);
        p1.add(l5);
        p1.add(l6);
        p1.add(l7);
        p3.add(NEXT);
        p3.add(END);
        //Add panels
        add(p2);
        add(p1);
        add(p3);
        //Create Listners
  NEXT.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
         int answer1 = 0;
         //Grab the numbers entered
         int numm1 = Integer.parseInt(number.getText());
         int numm2 = Integer.parseInt(number2.getText());
         int nummsanswer = Integer.parseInt(answer.getText());
         //Set the score and total into new variabls
         int nummscore = score;
         int nummtotal = total;
         //Check if the add radio button is selected if so add
         if (ADD.isSelected() == true){
             answer1 = numm1 + numm2;
         //otherwise check if the subtract button is selected if so subtract
         else if (SUB.isSelected() == true){
             answer1 = numm1 - numm2;
         //check if the multiplication button is selected if so multiply
         else if (MUL.isSelected() == true){
             answer1 = numm1 * numm2;
         //check if the division button is selected if so divide
         else if (DIV.isSelected() == true){
             answer1 = numm1 / numm2;
         //If the answer user entered is the same with th true answer
         if (nummsanswer == answer1){
             //add to the total and score
             nummtotal += 1;
             nummscore += 1;
             //Convert the input back to String
             String newscore = String.valueOf(nummscore);
             String newtotal = String.valueOf(nummtotal);
             //Set the text
             l5.setText(newscore);
             l7.setText(newtotal);
         //Otherwise just increase the total counter
         else {
             nummtotal += 1;
             String newtotal = String.valueOf(nummtotal);
             l7.setText(newtotal);
  //Create End listener
END.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        // get the root window and call dispose on it
        Window win = SwingUtilities.getWindowAncestor(p1);
        win.dispose();
String Generator1(){
     int randomnum;
     randomnum = (1 + (int)(Math.random() * 20));
     String randomnumm = String.valueOf(randomnum);
     return randomnumm;
public class Main {
     * @param args the command line arguments
    public static void main(String[] args) {
        // TODO code application logic here
        JFrame frame = new Grid();
        frame.setTitle("Flashcard Testing");
        frame.setSize(500, 200);
        frame.setLocationRelativeTo(null);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
}Edited by: SirSaula on Dec 5, 2009 4:39 PM

Extract code into methods, so that when an action is performed a method is called. That way you can reuse the method for purposes such as resetting textfields to their default values, scores to default values, etc.
You can go one step further and seperate the GUI layer from the processing layer, by deriving classes that for example maintain and calculate a score.
Mel

Similar Messages

  • How do I make this code generate a new pro when the "NEXT" button is pushed

    How do I make this code generate a new set of problem when the "NEXT" Button is pushed
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    /* Figure out how to create a new set of problms
    * Type a list of specifications, include a list of test cases
    * DONE :]
    package javaapplication1;
    import java.awt.GridLayout;
    import java.awt.Window;
    import javax.swing.*;
    import java.awt.event.*;
    * @author Baba Akinlolu -
    class Grid extends JFrame{
        int done = 0;
        final int score = 0;
        final int total = 0;           
            //Create Panels
            JPanel p2 = new JPanel();
            JPanel p3 = new JPanel();
            final JPanel p1 = new JPanel();
            //Create Radio buttons & group them
            ButtonGroup group = new ButtonGroup();
            final JRadioButton ADD = new JRadioButton("Addition");
            final JRadioButton SUB = new JRadioButton("Subtraction");
            final JRadioButton MUL = new JRadioButton("Multiplication");
            final JRadioButton DIV = new JRadioButton("Division");
            //Create buttons
            JButton NEXT = new JButton("NEXT");
            JButton END = new JButton("End");
            //Create Labels
            JLabel l1 = new JLabel("First num");
            JLabel l2 = new JLabel("Second num");
            JLabel l3 = new JLabel("Answer:");
            JLabel l4 = new JLabel("Score:");
            final JLabel l5 = new JLabel("");
            JLabel l6 = new JLabel("/");
            final JLabel l7 = new JLabel("");
            //Create Textfields
            final JTextField number = new JTextField(Generator1());
            final JTextField number2 = new JTextField(Generator1());
            final JTextField answer = new JTextField(5);
        Grid(){
            setLayout(new GridLayout(4, 4, 2 , 2));
            p2.add(ADD);
            p2.add(SUB);
            group.add(ADD);
            group.add(SUB);
            group.add(MUL);
            group.add(DIV);
            p2.add(ADD);
            p2.add(SUB);
            p2.add(DIV);
            p2.add(MUL);
            //Add to panels
            p1.add(l1);
            p1.add(number);
            p1.add(l2);
            p1.add(number2);
            p1.add(l3);
            p1.add(answer);
            p1.add(l4);
            p1.add(l5);
            p1.add(l6);
            p1.add(l7);
            p3.add(NEXT);
            p3.add(END);
            //Add panels
            add(p2);
            add(p1);
            add(p3);
            //Create Listners
            Listeners();
    void Listeners(){
          NEXT.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
             int answer1 = 0;
             //Grab the numbers entered
             int numm1 = Integer.parseInt(number.getText());
             int numm2 = Integer.parseInt(number2.getText());
             int nummsanswer = Integer.parseInt(answer.getText());
             //Set the score and total into new variabls
             int nummscore = score;
             int nummtotal = total;
             //Check if the add radio button is selected if so add
             if (ADD.isSelected() == true){
                 answer1 = numm1 + numm2;
             //otherwise check if the subtract button is selected if so subtract
             else if (SUB.isSelected() == true){
                 answer1 = numm1 - numm2;
             //check if the multiplication button is selected if so multiply
             else if (MUL.isSelected() == true){
                 answer1 = numm1 * numm2;
             //check if the division button is selected if so divide
             else if (DIV.isSelected() == true){
                 answer1 = numm1 / numm2;
             //If the answer user entered is the same with th true answer
             if (nummsanswer == answer1){
                 //add to the total and score
                 nummtotal += 1;
                 nummscore += 1;
                 //Convert the input back to String
                 String newscore = String.valueOf(nummscore);
                 String newtotal = String.valueOf(nummtotal);
                 //Set the text
                 l5.setText(newscore);
                 l7.setText(newtotal);
             //Otherwise just increase the total counter
             else {
                 nummtotal += 1;
                 String newtotal = String.valueOf(nummtotal);
                 l7.setText(newtotal);
      //Create End listener
    END.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            // get the root window and call dispose on it
            Window win = SwingUtilities.getWindowAncestor(p1);
            win.dispose();
    //new Grid();
    String Generator1(){
         int randomnum;
         randomnum = (1 + (int)(Math.random() * 100));
         String randomnumm = String.valueOf(randomnum);
         return randomnumm;
    public class Main {
         * @param args the command line arguments
        public static void main(String[] args) {
            // TODO code application logic here
            JFrame frame = new Grid();
            frame.setTitle("Flashcard Testing");
            frame.setSize(500, 200);
            frame.setLocationRelativeTo(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
    }Edited by: SirSaula on Dec 7, 2009 10:17 AM

    Not only are you continuing to post in the wrong forum but now you are multiposting: [http://forums.sun.com/thread.jspa?threadID=5418935]
    If people haven't answered you other posting its probably because we don't understand the question. Quit cluttering the forum by asking the same question over and over and then next time you have a new question post it in the proper forum. Your first posting was moved becuase you didn't post it properly.

  • HT1473 i just purchased a new desktop computer.  I had downloaded music from CD's on my old computer.  How do I get this music on my new computer.  The music is on my iPhone, can I download from my phone?

    I just purchased a new desktop computer.  I had downloaded music from CD's on my old computer.  How do I get this music on my new computer?  The music is on my iphone, can I download from my phone?

    btkamp wrote:
    I just purchased a new desktop computer.  I had downloaded music from CD's on my old computer.
    From your OLD computer...
    Copy your ENTIRE iTunes FOLDER to an External Drive... and then from the External Drive to your New Computer..
    Full Details Here  >  http://support.apple.com/kb/HT1751
    An Added Bonus is that you will have a Backup of iTunes.
    btkamp wrote:
    The music is on my iphone,
    If you do not have access to the iTunes Library on your Old computer... or its Backup...
    See  https://discussions.apple.com/docs/DOC-3991

  • I just bought a new mac. I have Acrobat pro on my windows PC. How can I reinstall this program into my new mac?

    I just bought a new mac. I currently have acrobat pro X on my Windows pc that I don't intend to use any more. How can I reinstall this into my mac?

    Hi George,
    Platform swap is available only for currently shipping version products( in this case Acrobat 11)
    Please check Adobe's Platform swap policy at: Order product | Platform, language swap
    Regards,
    Rave

  • How do I make this Applescript dig trough All subfolders of the Parent folder?

    Im using a script to batch convert a bunch of m4v´s to a set framesize, and im using this script with automator as a Finder Service. However, if theres a folder inside my parentfolder (Omkodning) with its own folder, it doesn't look inside that folder. Since my heriarchi is deeper then just one folder, this script isn't working all the way. How do I change it to search the entire content of my parent folder (Omkodning), subfolders and the missing part, sub-subfolders ?
    --on adding folder items to this_folder after receiving these_items with timeout of (720 * 60) seconds tell application "Finder" --Get all m4v files that have no label color yet, meaning it hasn’t been processed set allFiles to every file of entire contents of ("FIRSTHD:Users:jerry:Desktop:Omkodning" as alias) whose ((name extension is "m4v") and label index is 0) --Repeat for all files in above folder repeat with i from 1 to number of items in allFiles set currentFile to (item i of allFiles) try --Set to gray label to indicate processing set label index of currentFile to 7 --Assemble original
    and new file paths set origFilepath to quoted form of POSIX path of (currentFile as alias) set newFilepath to (characters 1 thru -5 of origFilepath as string) & "mp4'" --Start the conversion set shellCommand to "nice /Applications/HandBrakeCLI -i " & origFilepath & " -o " & newFilepath & " -e ffmpeg4 -b 1200 -a 1 -E faac -B 160 -R 29.97 -f mp4 –crop 0:0:0:0 crf 24 -w 640 -l 480 ;" do shell script shellCommand --Set the label to green in case file deletion fails set label index of currentFile to 6 --Remove the old file set shellCommand to "rm -f " & origFilepath do shell script shellCommand on error errmsg --Set the label to red to indicate failure set label index of currentFile to 2 end try end repeat end tell end timeout --end adding folder items to
    Message was edited by: Jayboys

    Telling the Finder to get the entire contents of a folder will also get the contents of subfolders (unless they are aliases).
    Note that the attached folder and the items that were added are passed to the adding folder items to handler in the this_folder and these_items parameters.

  • HT4356 I have an older HP connected to the usb port of my Time Machine, and have it shared.  I want to print from my iPhone on the network, but it can not be found in airport?  How do I make this work?

    I have an older HP connected to the usb port of my Time Machine, and have it shared.  I want to print from my iPhone on the network, but it can not be found in airport?  How do I make this work?

    AirPrint printers connected to the USB port of the Apple AirPort Base Station or Time Capsules are not supported with AirPrint.
    Read through this for information about Airprint printers and how to use them:
    http://support.apple.com/kb/ht4356

  • I upgraded to 10.9.2 and now my Canon MX870 won't print.  Their driver site only listed drivers for 10.6.  How do I make this work?

    I upgraded to 10.9.2 and now my Canon MX870 won't print.  Their driver site only listed drivers for 10.6.  How do I make this work?

    I just looked at the Canon site and it has Mavericks drivers.
    http://www.usa.canon.com/cusa/macosx_lion/multifunction_printers/pixma_mx_series /pixma_mx870?selectedName=DriversAndSoftware

  • My husband made the mistake of "upgrading" to IOS 7 last night.  Now he is receiving every text message that I send or receive.  How do I make this stop?

    My husband made the mistake of "upgrading" to IOS 7 last night.  Now he is receiving every text message that I send or receive.  How do I make this stop.  We have always shared the same Apple ID in the past and never had any problems.  I've seen posts where they say to create separate Apple ID's, but that means that whichever one of us does that, is gonna lose access to everything that is in our current ITunes account, correct? 

    My husband made the mistake of "upgrading" to IOS 7 last night.  Now he is receiving every text message that I send or receive.  How do I make this stop.  We have always shared the same Apple ID in the past and never had any problems.  I've seen posts where they say to create separate Apple ID's, but that means that whichever one of us does that, is gonna lose access to everything that is in our current ITunes account, correct? 

  • Just upgraded to mountain lion, when I open iphoto or photoshop, the monitor color changes.  How can I make this stop?

    For some reaon, when I launch iphoto, or any other photo program, my monitor changes to a different scheme.  How can I make this stop?  Thanks.

    try disabling it, take a took at these snaps from my phone. Might not be really clear but can give you an idea
    Hope this is clear,
    Thanks for the suppport
    Nazmul

  • I want to buy lightroom 5 as standalone product. I do not want creative cloud. How can I make this possible?

    I want to buy lightroom 5 as standalone product. I do not want creative cloud. How can I make this possible?

    Thanks YKaan,
    I do not like and do not want to pay monthly, also I do not need Photoshop just want lightroom. I want to know if I can just buy and download Lightroom or if I buy the retail package I can just have the program as standalone product.

  • Every time I click on a web page an advertisement or MAC Keeper page opens up.  I have pop-up blocker on. How do I make this stop?

    Every time I click on a web page an advertisement or MAC Keeper page opens up.  I have pop-up blocker on. How do I make this stop?

    There is no need to download anything to solve this problem.
    You may have installed the "VSearch" trojan. Remove it as follows.
    Malware is always changing to get around the defenses against it. These instructions are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data before proceeding.
    Step 1
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot," "Trovi," or "Conduit" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Reset the home page and default search engine in all the browsers, if it was changed.
    Step 2
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "com.vsearch.agent.plist" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /System/Library/Frameworks/VSearch.framework
    ~/Library/Internet Plug-Ins/ConduitNPAPIPlugin.plugin
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    The problem may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the Internet criminal behind VSearch has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing has not done so, even though it's aware of the problem. This failure of oversight has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Firefox 6 will not load when I click the icon. I have tried to uninstall it, both through the control panel and geong straight to help.exe. In both cases nothing happens. How do I uninstall this program?

    Firefox 6 will not load when I click the icon. I have tried to uninstall it, both through the control panel and going straight to help.exe. In both cases nothing happens. How do I uninstall this program?

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • When Firefox loads, a second window opens that is just a counter. How do I make this stop? I can send the page info if it would help.

    When Firefox loads for the first time, a second window opens that is just a counter. I've downloaded a lot of add-ons. I thought it might be the piano add-on so I removed it but that didn't stop it. How do I make this stop? I can send the page info if it would help.

    Sounds like malware on your PC.
    Install, update, and run these programs in this order. They are listed in order of efficacy.<br />'''''(Not all programs detect the same Malware, so you may need to run them all to solve your problem.)''''' <br />These programs are all free for personal use, but some have limited functionality in the "free mode" - but those are features you really don't need to find and remove the problem that you have.<br />
    ''Note: If your Malware infection is bad enough and you are mis-directed to URL's other than what is posted, you may have to use a different PC to download these programs and use a USB stick to transfer them to the afflicted PC.''
    Malwarebytes' Anti-Malware - [http://www.malwarebytes.org/mbam.php] <br />
    SuperAntispyware - [http://www.superantispyware.com/] <br />
    AdAware - [http://www.lavasoftusa.com/software/adaware/] <br />
    Spybot Search & Destroy - [http://www.safer-networking.org/en/index.html] <br />
    Windows Defender: Home Page - [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx]<br />
    Also, if you have a search engine re-direct problem, see this:<br />
    http://deletemalware.blogspot.com/2010/02/remove-google-redirect-virus.html
    If these don't find it or can't clear it, post in one of these forums for specialized malware removal help: <br />
    [http://www.spywarewarrior.com/index.php] <br />
    [http://forum.aumha.org/] <br />
    [http://www.spywareinfoforum.com/] <br />
    [http://bleepingcomputer.com]

  • How can I make my program Run forever?

    I would like to know how can I make my program execute some method while the GUI still open. I have something like this.
      public static void main(String args[]) {
        System.out.println("****************************");
        System.out.println("    PACKET READER CONSOLE   ");
        System.out.println("****************************");
        IPDetector window = new IPDetector(); // IPDetector is the JFrame
        window.setTitle("IPDetector Analyzer");
        window.pack();
        window.show();
        PortListener pl = new PortListener();// Is my portlistener class
        PacketReader c = new PacketReader();
        while(JFrame still open){// I dont know how to put a statemente here
          pl.start();// this method reads from a port and returns a string
          String cc = pl.data;// gets the string from the port listener
          while(!cc.equals("")){
            c.portWriter(cc);// writes the string into a file
      }I want that my portlistener keeps reading all the time, and if is something in the socket information.
    Should I use a thread? Any ideas? thanks.
    Chris

    I still not understanding how to make it thread. My main class is this one IPDetector. and it looks like this.
    public class IPDetector extends JFrame {
      // Declaration of the instance variables
      private static ArrayofDisplay  ad = new ArrayofDisplay();
      private ArrayofCreators database = new ArrayofCreators();
      JLabel sourceLabel;//etc..
      public IPDetector() {
        IPDetectorLayout customLayout = new IPDetectorLayout();
        getContentPane().setFont(new Font("Helvetica", Font.PLAIN, 12));
        getContentPane().setLayout(customLayout);
        sourceLabel = new JLabel("Source IP Add.");
        getContentPane().add(sourceLabel); 
        addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
            System.exit(0);
      // I get confused here...
      private boolean alive; // Do I need to declared here?
      public void setAlive(boolean val) { // This one also?
        alive = val;
      // IPDetector Methods...
      public void displayCaller(ArrayofDisplay aD){  }
      public void setAndReplace(String text)  {    }
      public void refresh(){ }
      public boolean action(Event evt, Object arg){ }
      //etc...
      public static void main(String args[]) {
        System.out.println("***********************************************");
        IPDetector window = new IPDetector();
        window.setTitle("IPDetector");
        window.pack();
        window.show();
        PortListener pl = new PortListener();
        PacketReader c = new PacketReader();
        while (alive) {// Is this correct here?
          pl.start();
          String cc = pl.data;
          while(!cc.equals("")){
            c.portWriter(cc);
            window.refresh();
            cc = "";
    class IPDetectorLayout implements LayoutManager {
      public IPDetectorLayout() {  }
      public void addLayoutComponent(String name, Component comp) {  }
      public void layoutContainer(Container parent) {  }
    }

  • How can i make simple program to match colors ?(photos taken by camera)

    how can i make simple program to match colors ?(photos taken by camera)

    Hi khaledyr,
    use a "random number" and compare for ">0.5" to get a (1 or 0) signal
    What exactly are you searching for?
    - Hints for choosing hardware?
    - How to output voltage or relais signals?
    - Help on using DAQ(mx)?
    - Help on generating (boolean) waveforms?
    Message Edited by GerdW on 04-16-2010 08:15 AM
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

Maybe you are looking for

  • ITunes Store won't open and iTunes goes incredibly slow when i connect my iPod

    Hadn't used iTunes for a while until a few weeks ago. Updated it but now when i try to open the iTunes Store the loading bar gets less than halfway before it gives up and just goes to a blank screen with "iTunes Store" written on it. Also when i conn

  • Calling a report from an existing form

    hi all, i am new to this forms and reports. i have created a report which gives information about an employee. and name it as activity report. i am using reports Report Builder 10.1.2.0.2. i have also created a form. my purpose is " i will enter the

  • Message- Print No pages from the document were selected to be printed

    I have had this application for some time, simply never used it.  Last night I tried converting a PDF file to word, unsuccessfully, I might add. Today, whilst printing a page, my printing settings appear to have been reset because when I selected Pri

  • OWB 11gR2 - Template Mapping execution failed: ORA-00936 (DB2 to Oracle)

    I've created a mapping to load data from a DB2 table (using JDBC) and import into an Oracle table. In the "Execution View", I've associated the LCT_SQL_TO_ORACLE code template to the DB2 execution unit, and the ICT_ORACLE_INCR_UPD code template to th

  • Oracle Periodic Alert..

    Hello every one.. I am having 1 problem.. if have created a one periodic alert.. its working perfectly.. when i am checking it through request ---check emails are coming .. but when i am scheduling it through periodic alert (complete procedure..)...