Programming C, C++, Java, PHP, Ruby, Turing, VB
Computer Science Canada 
Programming C, C++, Java, PHP, Ruby, Turing, VB  

Username:   Password: 
 RegisterRegister   
 School project help
Index -> Programming, Java -> Java Help
View previous topic Printable versionDownload TopicSubscribe to this topicPrivate MessagesRefresh page View next topic
Author Message
Nezura




PostPosted: Wed Oct 20, 2004 11:53 pm   Post subject: School project help

Multiple Buttons
Your Task:
Write a program that asks the user 5 multiple choice questions about JAVA, each with at most 5 possible answers (but there must be a variety in the number of possible answers). The program should allow the user to click on an option, and then should tell them whether or not they have the correct answer and what the correct answer is. The user should only have one chance to answer the question. Keep track of their score and display it in a seperate frame if they click on the "display score" button. Include an appropriate picture, a nice title for the program, and a title in the frame's browser bar.

Ok, i've written the entire code for this program, logically, i think it's correct but i'm not 100% sure, maybe someone can comment. But when i try to run this code in "Ready To Program" it gives me a fatal error and crashes. It created a "Panic File" which stores the error and i have placed the code inside at the bottom. Could someone tell me what i've done wrong and perhaps suggestions on how to fix this?


code:
//Created by Howard Tse
//Multiple Buttons Task
//Last modified: October 19, 2004

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

public class multiple_buttons extends JApplet implements ActionListener
{
    static int scorecounter = 0;
    JButton score = new JButton ("Click here to display your score"); //button when clicked displays your score
    JButton[] buttons = new JButton [5]; //answer buttons
    JButton nextq = new JButton ("Press Me for next Question"); //I had to add in an extra button to go to the next question
    JLabel Qlabel = new JLabel (""); //question label          //because they did not include any method to alternate
    static int counter = 0; //counts the quesion number        //between each question. I assume they intended to wait
    JLabel Plabel = new JLabel (""); //label to store picture   //perhaps 5 seconds after the answer has been shown to switch
    //to the next question, we have not been taught how to do so
    //I have changed it.

    JLabel shownscore = new JLabel ("Your Score is:");
    JLabel empty = new JLabel (""); //empty space, used to change between checkmark and Xmark
    JFrame Questionframe = new JFrame ("Multiple Buttons Question"); //main frame with all questions and answers


    public void init ()
    {
        Icon check = new ImageIcon ("C:/Documents and Settings/Howard/Desktop/checkmark.bmp");
        Icon incorrect = new ImageIcon ("C:/Documents and Settings/Howard/Desktop/incorrect.bmp");
        Icon blank = new ImageIcon ("C:/Documents and Settings/Howard/Desktop/blank.bmp");

        questionframe.setSize (500, 800);
        questionframe.getContentPane ().setLayout (new GridLayout (5, 2));
        questionframe.getContentPane ().add (Qlabel);

        Qlabel.setText ("Who/What is known as the father of JAVA?");

        questionframe.getContentPane ().add (empty);
        questionframe.getContentPane ().add (score);


        for (int x = 0 ; x < 5 ; x++)
        {
            buttons [x] = new JButton (buttonLabels [x]);
            buttons [x].addActionListener (this);
            questionframe.getContentPane ().add (button [x]);
        }
        buttons [0].setText ("a) Sun MicroSystems");
        buttons [1].setText ("b) James Gosling");
        buttons [2].setText ("c) C++");
        buttons [3].setText ("d) Bill Gates");
        buttons [4].setText ("e) Microsoft");
        questionframe.getContentPane ().add (nextq);
        nextq.setEnable (false);
    }


    public void actionPerformed (ActionEvent e)
    {
        Container yourscore = new Container ();
        yourscore.setLayout (new FlowLayout ());
        yourscore.add (shownscore); //adds the label shownscore to the container
        yourscore.add (scorecounter); //adds the number of correct answers to the container
        JFrame scoreframe = new JFrame ("Your Score is...");
        scoreframe.setSize (400, 400);
        scoreframe.getContentPane ().add (yourscore); //adds the container to the new frame
        scoreframe.setVisible (false); //sets the frame invisible

        if (e.getSource () == nextq)
        {
            counter++;
        }

        else if (e.getSource () == score)
        {

            scoreframe.setVisible (true);
        }


        else if (counter == 0) //Question 1
        {
            if (e.getSource () == buttons [0])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (incorrect);
                Qlabel.setText ("b) James Gosling");
                nextq.setEnable (true);
            }

            else if (e.getSource () == buttons [1])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (check);
                scorecounter++;
                Qlabel.setText ("b) James Gosling");
                nextq.setEnable (true);
            }

            else if (e.getSource () == buttons [2])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (incorrect);
                Qlabel.setText ("b) James Gosling");
                nextq.setEnable (true);
            }

            else if (e.getSource () == buttons [3])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (incorrect);
                Qlabel.setText ("b) James Gosling");
                nextq.setEnable (true);
            }
            else if (e.getSource () == buttons [4])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (incorrect);
                Qlabel.setText ("b) James Gosling");
                nextq.setEnable (true);
            }
        }
        else if (counter == 1) //Question 2
        {
            for (a = 0 ; a < 5 ; a++) //All the values inside the question and answer are reset to those of question 2
            {
                buttons [a].setEnable (true);
            }
            empty.setIcon (blank);
            Qlabel.setText ("Which of the Following is an integer type?");
            buttons [0].setText ("a) boolean");
            buttons [1].setText ("b) double");
            buttons [2].setText ("c) chor");
            buttons [3].setText ("d) long");
            buttons [4].setText ("");
            buttons [4].setEnable (false);
            nextq.setEnable (false);

            if (e.getSource () == buttons [0])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (incorrect);
                Qlabel.setText ("d) long");
                nextq.setEnable (true);
            }

            else if (e.getSource () == buttons [1])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (incorrect);
                Qlabel.setText ("d) long");
                nextq.setEnable (true);
            }

            else if (e.getSource () == buttons [2])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (incorrect);
                Qlabel.setText ("d) long");
                nextq.setEnable (true);
            }

            else if (e.getSource () == buttons [3])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (check);
                scorecounter++;
                Qlabel.setText ("d) long");
                nextq.setEnable (true);
            }

        }

        else if (counter == 2) //Question 3
        {
            for (a = 0 ; a < 5 ; a++) //All the values inside the question and answer are reset to those of question 3
            {
                buttons [a].setEnable (true);
            }
            empty.setIcon (blank);
            Qlabel.setText ("Which of the following adds 5 spaces");
            buttons [0].setText ("a) /t");
            buttons [1].setText ("b) \t");
            buttons [2].setText ("c) \space");
            buttons [3].setText ("");
            buttons [4].setText ("");

            buttons [3].setEnable (false);
            buttons [4].setEnable (false);
            nextq.setEnable (false);

            if (e.getSource () == buttons [0])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (incorrect);
                Qlabel.setText ("b) \t");
                nextq.setEnable (true);
            }

            else if (e.getSource () == buttons [1])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (check);
                scorecounter++;
                Qlabel.setText ("b) \t");
                nextq.setEnable (true);
            }

            else if (e.getSource () == buttons [2])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (incorrect);
                Qlabel.setText ("b) \t");
                nextq.setEnable (true);
            }

        }
        else if (counter == 3) //Question 4
        {
            for (a = 0 ; a < 5 ; a++) //All the values inside the question and answer are reset to those of question 4
            {
                buttons [a].setEnable (true);
            }
            empty.setIcon (blank);
            Qlabel.setText ("!= means");
            buttons [0].setText ("a) not equal");
            buttons [1].setText ("b) equal");
            buttons [2].setText ("");
            buttons [3].setText ("");
            buttons [4].setText ("");

            buttons [2].setEnable (false);
            buttons [3].setEnable (false);
            buttons [4].setEnable (false);
            nextq.setEnable (false);

            if (e.getSource () == buttons [0])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (check);
                scorecounter++;
                Qlabel.setText ("a) not equal");
                nextq.setEnable (true);
            }

            else if (e.getSource () == buttons [1])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (incorrect);
                Qlabel.setText ("a) not equal");
                nextq.setEnable (true);
            }

        }

        else if (counter == 4) //Question 5
        {
            for (a = 0 ; a < 5 ; a++) //All the values inside the question and answer are reset to those of question 5
            {
                buttons [a].setEnable (true);
            }
            empty.setIcon (blank);
            Qlabel.setText ("Is JAVA a compiled or interpreted language?");
            buttons [0].setText ("a) Compiled");
            buttons [1].setText ("b) Interpreted");
            buttons [2].setText ("c) Neither");
            buttons [3].setText ("d) Both");
            buttons [4].setText ("");

            buttons [4].setEnable (false);
            nextq.setEnable (false);

            if (e.getSource () == buttons [0])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (check);
                scorecounter++
                    Qlabel.setText ("a) Compiled");
                nextq.setEnable (true);
            }

            else if (e.getSource () == buttons [1])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (incorrect);
                Qlabel.setText ("a) Compiled");
                nextq.setEnable (true);
            }

            else if (e.getSource () == buttons [2])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (incorrect);
                Qlabel.setText ("a) Compiled");
                nextq.setEnable (true);
            }

            else if (e.getSource () == buttons [3])
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setEnable (false);
                }
                empty.setIcon (incorrect);
                Qlabel.setText ("a) Compiled");
                nextq.setEnable (true);
            }


            else if (counter == 5) //All questions are answered page
            {
                for (a = 0 ; a < 5 ; a++)
                {
                    buttons [a].setText ("");
                }
                empty.setIcon (blank);
                Qlabel.setText ("You are now complete the quiz, Press score button");

                nextq.setText ("");
                nextq.setEnable (false);

            }
        }





code:
*** FATAL INTERNAL ERROR in "Ready" ***
Date: Oct 21 2004 12:43 AM

File Name: C:\Program Files\Ready\Ready.exe
Version: 1.6.0b  [11]
File Size: 2428967
File Date: Jan 17 2003 5:00 PM

Previous Operations:
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12064 - slFr:29:80:1692 - slTo:29:80:1692 - nlA:0
    Line Starts: 370:12041 371:12049 372:12051 373:12064
    Keystroke (2) - sz:373:12063 - slFr:1691 - slTo:1691 - nlA:0
    Line Starts: 370:12040 371:12048 372:12050 373:12063
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12063 - slFr:29:79:1691 - slTo:29:79:1691 - nlA:0
    Line Starts: 370:12040 371:12048 372:12050 373:12063
    Keystroke (2) - sz:373:12062 - slFr:1690 - slTo:1690 - nlA:0
    Line Starts: 370:12039 371:12047 372:12049 373:12062
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12062 - slFr:29:78:1690 - slTo:29:78:1690 - nlA:0
    Line Starts: 370:12039 371:12047 372:12049 373:12062
    Keystroke (2) - sz:373:12061 - slFr:1689 - slTo:1689 - nlA:0
    Line Starts: 370:12038 371:12046 372:12048 373:12061
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12061 - slFr:29:77:1689 - slTo:29:77:1689 - nlA:0
    Line Starts: 370:12038 371:12046 372:12048 373:12061
    Keystroke (2) - sz:373:12060 - slFr:1688 - slTo:1688 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12060 - slFr:29:76:1688 - slTo:29:76:1688 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
    Keystroke (2) - sz:373:12059 - slFr:1687 - slTo:1687 - nlA:0
    Line Starts: 370:12036 371:12044 372:12046 373:12059
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12059 - slFr:29:75:1687 - slTo:29:75:1687 - nlA:0
    Line Starts: 370:12036 371:12044 372:12046 373:12059
    Keystroke (2) - sz:373:12058 - slFr:1686 - slTo:1686 - nlA:0
    Line Starts: 370:12035 371:12043 372:12045 373:12058
  CMD: WM_CHAR [p] (D)
    Keystroke - Text: b88c48 - ch: 112
    Text - sz:373:12058 - slFr:29:74:1686 - slTo:29:74:1686 - nlA:0
    Line Starts: 370:12035 371:12043 372:12045 373:12058
    Keystroke (2) - sz:373:12059 - slFr:1687 - slTo:1687 - nlA:0
    Line Starts: 370:12036 371:12044 372:12046 373:12059
  CMD: WM_CHAR [/] (D)
    Keystroke - Text: b88c48 - ch: 47
    Text - sz:373:12059 - slFr:29:75:1687 - slTo:29:75:1687 - nlA:0
    Line Starts: 370:12036 371:12044 372:12046 373:12059
    Keystroke (2) - sz:373:12060 - slFr:1688 - slTo:1688 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
  CMD: WM_INITMENU (W)
  CMD: COMMAND_SAVE_FILE
    Save File (1) - Window: 1904ce - SaveAs: 0 - Sel: 0 - fileno: 0 - sizeptr: 0
    Save File (2) - name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java - fileno: 0 - sizeptr: 0
  CMD: WM_LBUTTONDOWN (D)
    Set Selection (1) - Text: b88c48 - L: 30 - C: 93
    Text - sz:373:12060 - slFr:29:76:1688 - slTo:29:76:1688 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
    Set Selection (2) - sz:373:12060 - slFr:1709 - slTo:1709 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
  CMD: WM_LBUTTONUP (D)
    Extend Selection - Text: b88c48 - L: 30 - C: 93
    Text - sz:373:12060 - slFr:30:8:1709 - slTo:30:8:1709 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
  CMD: WM_INITMENU (W)
  CMD: COMMAND_INDENT
    Indent (1) - Text: b88c48
    Text - sz:373:12060 - slFr:30:8:1709 - slTo:30:8:1709 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
    Set Selection (1) - Text: b88c48 - L: 30 - C: 0
    Text - sz:376:12726 - slFr:1709 - slTo:1709 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Set Selection (2) - sz:376:12726 - slFr:1585 - slTo:1585 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Indent (2) - sz:376:12726 - slFr:1585 - slTo:1585 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_INITMENU (W)
  CMD: COMMAND_SAVE_FILE
    Save File (1) - Window: 1904ce - SaveAs: 0 - Sel: 0 - fileno: 0 - sizeptr: 0
    Save File (2) - name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java - fileno: 0 - sizeptr: 0
  CMD: WM_LBUTTONDOWN (D)
    Set Selection (1) - Text: b88c48 - L: 28 - C: 117
    Text - sz:376:12726 - slFr:30:0:1585 - slTo:30:0:1585 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Set Selection (2) - sz:376:12726 - slFr:1493 - slTo:1493 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_LBUTTONUP (D)
    Extend Selection - Text: b88c48 - L: 28 - C: 117
    Text - sz:376:12726 - slFr:28:98:1493 - slTo:28:98:1493 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_LBUTTONDOWN (D)
    Set Selection (1) - Text: b88c48 - L: 358 - C: 10
    Text - sz:376:12726 - slFr:28:98:1493 - slTo:28:98:1493 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Set Selection (2) - sz:376:12726 - slFr:12335 - slTo:12335 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_LBUTTONUP (D)
    Extend Selection - Text: b88c48 - L: 358 - C: 10
    Text - sz:376:12726 - slFr:358:9:12335 - slTo:358:9:12335 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:376:12726 - slFr:12335 - slTo:12335 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Keystroke (2) - sz:376:12725 - slFr:12334 - slTo:12334 - nlA:0
    Line Starts: 373:12717 374:12723 375:12724 376:12725
  CMD: WM_INITMENU (W)
  CMD: COMMAND_INDENT
    Indent (1) - Text: b88c48
    Text - sz:376:12725 - slFr:358:8:12334 - slTo:358:8:12334 - nlA:0
    Line Starts: 373:12717 374:12723 375:12724 376:12725
    Set Selection (1) - Text: b88c48 - L: 358 - C: 0
    Text - sz:376:12765 - slFr:12334 - slTo:12334 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Indent (2) - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
  CMD: WM_INITMENU (W)
  CMD: COMMAND_INDENT
    Indent (1) - Text: b88c48
    Text - sz:376:12765 - slFr:358:0:12326 - slTo:358:0:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (1) - Text: b88c48 - L: 358 - C: 0
    Text - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Indent (2) - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
  CMD: WM_INITMENU (W)
  CMD: COMMAND_SAVE_FILE
    Save File (1) - Window: 1904ce - SaveAs: 0 - Sel: 0 - fileno: 0 - sizeptr: 0
    Save File (2) - name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java - fileno: 0 - sizeptr: 0
  CMD: WM_LBUTTONDOWN (D)
    Set Selection (1) - Text: b88c48 - L: 9 - C: 19
    Text - sz:376:12765 - slFr:358:0:12326 - slTo:358:0:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:223 - slTo:223 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
  CMD: WM_LBUTTONUP (D)
    Extend Selection - Text: b88c48 - L: 9 - C: 19
    Text - sz:376:12765 - slFr:9:1:223 - slTo:9:1:223 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
  CMD: WM_INITMENU (W)
  CMD: COMMAND_RUN
    Run (1) - Window: 1904ce - Ex: 1 - Args: 0 - Step: 0
    Find Next Error (1) - Text: 1904ce - Activate: 1
    Set Selection (1) - Text: b88c48 - L: 0 - C: -842150452
    Text - sz:376:12765 - slFr:223 - slTo:223 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:-842150452 - slTo:-842150452 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765



The environment has experienced an unexpected internal error.

This error is caused by a bug in the environment and is not your fault!
Details about the crash have been saved in the file "C:\Documents and Settings\Howard\My Documents\panic.log".

If possible, please e-mail this file to readybugs@hsa.on.ca

Here are some details about the error:
   Error = Ready has gone into an infinite loop.

Ready Internal State: 376 0 -1 0 -842150452 0 -33686019 0
---
--- (6051)
   File = src\edtext.c
   Line = 4141

All unsaved open files will be saved with a ".sav" or ".sv#" extension.

List of Modules:
    C:\Program Files\Ready\Ready.exe
    C:\WINDOWS\System32\ntdll.dll
    C:\WINDOWS\system32\kernel32.dll
    C:\WINDOWS\system32\USER32.dll
    C:\WINDOWS\system32\GDI32.dll
    C:\WINDOWS\system32\ADVAPI32.dll
    C:\WINDOWS\system32\RPCRT4.dll
    C:\WINDOWS\system32\comdlg32.dll
    C:\WINDOWS\system32\SHLWAPI.dll
    C:\WINDOWS\system32\msvcrt.dll
    C:\WINDOWS\system32\COMCTL32.dll
    C:\WINDOWS\system32\SHELL32.dll
    C:\WINDOWS\system32\VERSION.dll
    C:\WINDOWS\System32\WINMM.dll
    C:\WINDOWS\System32\IMM32.DLL
    C:\WINDOWS\System32\LPK.DLL
    C:\WINDOWS\System32\USP10.dll
    C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.10.0_x-ww_f7fb5805\comctl32.dll
    C:\WINDOWS\System32\shfolder.dll
    C:\WINDOWS\System32\uxtheme.dll
    C:\Program Files\Messenger Plus! 3\MsgPlusH.dll
    C:\WINDOWS\system32\ole32.dll
    C:\WINDOWS\system32\OLEAUT32.dll
    C:\WINDOWS\System32\MSCTF.dll
    C:\WINDOWS\System32\msctfime.ime
    C:\Program Files\Ready\Support\Bin\edjdll.dll
    C:\Program Files\Ready\Support\jre141_01\bin\client\jvm.dll
    C:\Program Files\Ready\Support\jre141_01\bin\hpi.dll
    C:\Program Files\Ready\Support\jre141_01\bin\verify.dll
    C:\WINDOWS\System32\Msimtf.dll
    C:\PROGRA~1\NEWDOT~1\NEWDOT~1.DLL
    C:\WINDOWS\system32\urlmon.dll
    C:\WINDOWS\System32\WS2_32.dll
    C:\WINDOWS\System32\WS2HELP.dll
    C:\WINDOWS\system32\WININET.dll
    C:\WINDOWS\system32\CRYPT32.dll
    C:\WINDOWS\system32\MSASN1.dll
    C:\WINDOWS\System32\SETUPAPI.dll
    C:\WINDOWS\system32\MPR.dll
    C:\WINDOWS\System32\WINTRUST.dll
    C:\WINDOWS\system32\IMAGEHLP.dll
    C:\Program Files\Ready\Support\jre141_01\bin\java.dll
    C:\Program Files\Ready\Support\jre141_01\bin\zip.dll
    C:\Program Files\Iolo\Macro Magic\eventhook.dll
    C:\Program Files\Ready\Support\jre141_01\bin\dt_shmem.dll
    C:\Program Files\Ready\Support\jre141_01\bin\net.dll
    C:\WINDOWS\System32\WSOCK32.dll
    C:\WINDOWS\System32\mswsock.dll
    C:\WINDOWS\System32\DNSAPI.dll
    C:\WINDOWS\System32\winrnr.dll
    C:\WINDOWS\system32\WLDAP32.dll
    C:\WINDOWS\System32\rasadhlp.dll
    C:\WINDOWS\system32\appHelp.dll
    C:\WINDOWS\System32\CLBCATQ.DLL
    C:\WINDOWS\System32\COMRes.dll
    C:\WINDOWS\System32\ntshrui.dll
    C:\WINDOWS\System32\ATL.DLL
    C:\WINDOWS\System32\NETAPI32.dll
    C:\WINDOWS\system32\USERENV.dll
    C:\WINDOWS\System32\LINKINFO.dll
    C:\WINDOWS\System32\dbghelp.dll



------------------------------------------
*** ENVIRONMENT CRASH ***

Date: Oct 21 2004 12:43 AM

File Name: C:\Program Files\Ready\Ready.exe
Version: 1.6.0b  [11]
File Size: 2428967
File Date: Jan 17 2003 5:00 PM

Cause of Crash: Access Violation

Previous Operations:
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12064 - slFr:29:80:1692 - slTo:29:80:1692 - nlA:0
    Line Starts: 370:12041 371:12049 372:12051 373:12064
    Keystroke (2) - sz:373:12063 - slFr:1691 - slTo:1691 - nlA:0
    Line Starts: 370:12040 371:12048 372:12050 373:12063
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12063 - slFr:29:79:1691 - slTo:29:79:1691 - nlA:0
    Line Starts: 370:12040 371:12048 372:12050 373:12063
    Keystroke (2) - sz:373:12062 - slFr:1690 - slTo:1690 - nlA:0
    Line Starts: 370:12039 371:12047 372:12049 373:12062
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12062 - slFr:29:78:1690 - slTo:29:78:1690 - nlA:0
    Line Starts: 370:12039 371:12047 372:12049 373:12062
    Keystroke (2) - sz:373:12061 - slFr:1689 - slTo:1689 - nlA:0
    Line Starts: 370:12038 371:12046 372:12048 373:12061
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12061 - slFr:29:77:1689 - slTo:29:77:1689 - nlA:0
    Line Starts: 370:12038 371:12046 372:12048 373:12061
    Keystroke (2) - sz:373:12060 - slFr:1688 - slTo:1688 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12060 - slFr:29:76:1688 - slTo:29:76:1688 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
    Keystroke (2) - sz:373:12059 - slFr:1687 - slTo:1687 - nlA:0
    Line Starts: 370:12036 371:12044 372:12046 373:12059
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12059 - slFr:29:75:1687 - slTo:29:75:1687 - nlA:0
    Line Starts: 370:12036 371:12044 372:12046 373:12059
    Keystroke (2) - sz:373:12058 - slFr:1686 - slTo:1686 - nlA:0
    Line Starts: 370:12035 371:12043 372:12045 373:12058
  CMD: WM_CHAR [p] (D)
    Keystroke - Text: b88c48 - ch: 112
    Text - sz:373:12058 - slFr:29:74:1686 - slTo:29:74:1686 - nlA:0
    Line Starts: 370:12035 371:12043 372:12045 373:12058
    Keystroke (2) - sz:373:12059 - slFr:1687 - slTo:1687 - nlA:0
    Line Starts: 370:12036 371:12044 372:12046 373:12059
  CMD: WM_CHAR [/] (D)
    Keystroke - Text: b88c48 - ch: 47
    Text - sz:373:12059 - slFr:29:75:1687 - slTo:29:75:1687 - nlA:0
    Line Starts: 370:12036 371:12044 372:12046 373:12059
    Keystroke (2) - sz:373:12060 - slFr:1688 - slTo:1688 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
  CMD: WM_INITMENU (W)
  CMD: COMMAND_SAVE_FILE
    Save File (1) - Window: 1904ce - SaveAs: 0 - Sel: 0 - fileno: 0 - sizeptr: 0
    Save File (2) - name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java - fileno: 0 - sizeptr: 0
  CMD: WM_LBUTTONDOWN (D)
    Set Selection (1) - Text: b88c48 - L: 30 - C: 93
    Text - sz:373:12060 - slFr:29:76:1688 - slTo:29:76:1688 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
    Set Selection (2) - sz:373:12060 - slFr:1709 - slTo:1709 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
  CMD: WM_LBUTTONUP (D)
    Extend Selection - Text: b88c48 - L: 30 - C: 93
    Text - sz:373:12060 - slFr:30:8:1709 - slTo:30:8:1709 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
  CMD: WM_INITMENU (W)
  CMD: COMMAND_INDENT
    Indent (1) - Text: b88c48
    Text - sz:373:12060 - slFr:30:8:1709 - slTo:30:8:1709 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
    Set Selection (1) - Text: b88c48 - L: 30 - C: 0
    Text - sz:376:12726 - slFr:1709 - slTo:1709 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Set Selection (2) - sz:376:12726 - slFr:1585 - slTo:1585 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Indent (2) - sz:376:12726 - slFr:1585 - slTo:1585 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_INITMENU (W)
  CMD: COMMAND_SAVE_FILE
    Save File (1) - Window: 1904ce - SaveAs: 0 - Sel: 0 - fileno: 0 - sizeptr: 0
    Save File (2) - name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java - fileno: 0 - sizeptr: 0
  CMD: WM_LBUTTONDOWN (D)
    Set Selection (1) - Text: b88c48 - L: 28 - C: 117
    Text - sz:376:12726 - slFr:30:0:1585 - slTo:30:0:1585 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Set Selection (2) - sz:376:12726 - slFr:1493 - slTo:1493 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_LBUTTONUP (D)
    Extend Selection - Text: b88c48 - L: 28 - C: 117
    Text - sz:376:12726 - slFr:28:98:1493 - slTo:28:98:1493 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_LBUTTONDOWN (D)
    Set Selection (1) - Text: b88c48 - L: 358 - C: 10
    Text - sz:376:12726 - slFr:28:98:1493 - slTo:28:98:1493 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Set Selection (2) - sz:376:12726 - slFr:12335 - slTo:12335 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_LBUTTONUP (D)
    Extend Selection - Text: b88c48 - L: 358 - C: 10
    Text - sz:376:12726 - slFr:358:9:12335 - slTo:358:9:12335 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:376:12726 - slFr:12335 - slTo:12335 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Keystroke (2) - sz:376:12725 - slFr:12334 - slTo:12334 - nlA:0
    Line Starts: 373:12717 374:12723 375:12724 376:12725
  CMD: WM_INITMENU (W)
  CMD: COMMAND_INDENT
    Indent (1) - Text: b88c48
    Text - sz:376:12725 - slFr:358:8:12334 - slTo:358:8:12334 - nlA:0
    Line Starts: 373:12717 374:12723 375:12724 376:12725
    Set Selection (1) - Text: b88c48 - L: 358 - C: 0
    Text - sz:376:12765 - slFr:12334 - slTo:12334 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Indent (2) - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
  CMD: WM_INITMENU (W)
  CMD: COMMAND_INDENT
    Indent (1) - Text: b88c48
    Text - sz:376:12765 - slFr:358:0:12326 - slTo:358:0:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (1) - Text: b88c48 - L: 358 - C: 0
    Text - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Indent (2) - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
  CMD: WM_INITMENU (W)
  CMD: COMMAND_SAVE_FILE
    Save File (1) - Window: 1904ce - SaveAs: 0 - Sel: 0 - fileno: 0 - sizeptr: 0
    Save File (2) - name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java - fileno: 0 - sizeptr: 0
  CMD: WM_LBUTTONDOWN (D)
    Set Selection (1) - Text: b88c48 - L: 9 - C: 19
    Text - sz:376:12765 - slFr:358:0:12326 - slTo:358:0:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:223 - slTo:223 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
  CMD: WM_LBUTTONUP (D)
    Extend Selection - Text: b88c48 - L: 9 - C: 19
    Text - sz:376:12765 - slFr:9:1:223 - slTo:9:1:223 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
  CMD: WM_INITMENU (W)
  CMD: COMMAND_RUN
    Run (1) - Window: 1904ce - Ex: 1 - Args: 0 - Step: 0
    Find Next Error (1) - Text: 1904ce - Activate: 1
    Set Selection (1) - Text: b88c48 - L: 0 - C: -842150452
    Text - sz:376:12765 - slFr:223 - slTo:223 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:-842150452 - slTo:-842150452 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765


Registers
  EAX=DDDDDDDD  EBX=00170073  ECX=00000007  EDX=7FFFFFFF  ESI=00000002
  EDI=00000000  EBP=00122B44  ESP=001226E8  EIP=77FA69C0  FLG=00010206
  CS=001B  DS=0023  SS=0023  ES=0023  FS=0038  GS=0000

TROUBLE!  You're already in the crash handler!

*** ENVIRONMENT CRASH ***

Date: Oct 21 2004 12:43 AM

File Name: C:\Program Files\Ready\Ready.exe
Version: 1.6.0b  [11]
File Size: 2428967
File Date: Jan 17 2003 5:00 PM

Cause of Crash: Access Violation

Previous Operations:
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12064 - slFr:29:80:1692 - slTo:29:80:1692 - nlA:0
    Line Starts: 370:12041 371:12049 372:12051 373:12064
    Keystroke (2) - sz:373:12063 - slFr:1691 - slTo:1691 - nlA:0
    Line Starts: 370:12040 371:12048 372:12050 373:12063
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12063 - slFr:29:79:1691 - slTo:29:79:1691 - nlA:0
    Line Starts: 370:12040 371:12048 372:12050 373:12063
    Keystroke (2) - sz:373:12062 - slFr:1690 - slTo:1690 - nlA:0
    Line Starts: 370:12039 371:12047 372:12049 373:12062
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12062 - slFr:29:78:1690 - slTo:29:78:1690 - nlA:0
    Line Starts: 370:12039 371:12047 372:12049 373:12062
    Keystroke (2) - sz:373:12061 - slFr:1689 - slTo:1689 - nlA:0
    Line Starts: 370:12038 371:12046 372:12048 373:12061
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12061 - slFr:29:77:1689 - slTo:29:77:1689 - nlA:0
    Line Starts: 370:12038 371:12046 372:12048 373:12061
    Keystroke (2) - sz:373:12060 - slFr:1688 - slTo:1688 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12060 - slFr:29:76:1688 - slTo:29:76:1688 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
    Keystroke (2) - sz:373:12059 - slFr:1687 - slTo:1687 - nlA:0
    Line Starts: 370:12036 371:12044 372:12046 373:12059
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:373:12059 - slFr:29:75:1687 - slTo:29:75:1687 - nlA:0
    Line Starts: 370:12036 371:12044 372:12046 373:12059
    Keystroke (2) - sz:373:12058 - slFr:1686 - slTo:1686 - nlA:0
    Line Starts: 370:12035 371:12043 372:12045 373:12058
  CMD: WM_CHAR [p] (D)
    Keystroke - Text: b88c48 - ch: 112
    Text - sz:373:12058 - slFr:29:74:1686 - slTo:29:74:1686 - nlA:0
    Line Starts: 370:12035 371:12043 372:12045 373:12058
    Keystroke (2) - sz:373:12059 - slFr:1687 - slTo:1687 - nlA:0
    Line Starts: 370:12036 371:12044 372:12046 373:12059
  CMD: WM_CHAR [/] (D)
    Keystroke - Text: b88c48 - ch: 47
    Text - sz:373:12059 - slFr:29:75:1687 - slTo:29:75:1687 - nlA:0
    Line Starts: 370:12036 371:12044 372:12046 373:12059
    Keystroke (2) - sz:373:12060 - slFr:1688 - slTo:1688 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
  CMD: WM_INITMENU (W)
  CMD: COMMAND_SAVE_FILE
    Save File (1) - Window: 1904ce - SaveAs: 0 - Sel: 0 - fileno: 0 - sizeptr: 0
    Save File (2) - name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java - fileno: 0 - sizeptr: 0
  CMD: WM_LBUTTONDOWN (D)
    Set Selection (1) - Text: b88c48 - L: 30 - C: 93
    Text - sz:373:12060 - slFr:29:76:1688 - slTo:29:76:1688 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
    Set Selection (2) - sz:373:12060 - slFr:1709 - slTo:1709 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
  CMD: WM_LBUTTONUP (D)
    Extend Selection - Text: b88c48 - L: 30 - C: 93
    Text - sz:373:12060 - slFr:30:8:1709 - slTo:30:8:1709 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
  CMD: WM_INITMENU (W)
  CMD: COMMAND_INDENT
    Indent (1) - Text: b88c48
    Text - sz:373:12060 - slFr:30:8:1709 - slTo:30:8:1709 - nlA:0
    Line Starts: 370:12037 371:12045 372:12047 373:12060
    Set Selection (1) - Text: b88c48 - L: 30 - C: 0
    Text - sz:376:12726 - slFr:1709 - slTo:1709 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Set Selection (2) - sz:376:12726 - slFr:1585 - slTo:1585 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Indent (2) - sz:376:12726 - slFr:1585 - slTo:1585 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_INITMENU (W)
  CMD: COMMAND_SAVE_FILE
    Save File (1) - Window: 1904ce - SaveAs: 0 - Sel: 0 - fileno: 0 - sizeptr: 0
    Save File (2) - name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java - fileno: 0 - sizeptr: 0
  CMD: WM_LBUTTONDOWN (D)
    Set Selection (1) - Text: b88c48 - L: 28 - C: 117
    Text - sz:376:12726 - slFr:30:0:1585 - slTo:30:0:1585 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Set Selection (2) - sz:376:12726 - slFr:1493 - slTo:1493 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_LBUTTONUP (D)
    Extend Selection - Text: b88c48 - L: 28 - C: 117
    Text - sz:376:12726 - slFr:28:98:1493 - slTo:28:98:1493 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_LBUTTONDOWN (D)
    Set Selection (1) - Text: b88c48 - L: 358 - C: 10
    Text - sz:376:12726 - slFr:28:98:1493 - slTo:28:98:1493 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Set Selection (2) - sz:376:12726 - slFr:12335 - slTo:12335 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_LBUTTONUP (D)
    Extend Selection - Text: b88c48 - L: 358 - C: 10
    Text - sz:376:12726 - slFr:358:9:12335 - slTo:358:9:12335 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
  CMD: WM_CHAR [#8] (D)
    Keystroke - Text: b88c48 - ch: 8
    Text - sz:376:12726 - slFr:12335 - slTo:12335 - nlA:0
    Line Starts: 373:12718 374:12724 375:12725 376:12726
    Keystroke (2) - sz:376:12725 - slFr:12334 - slTo:12334 - nlA:0
    Line Starts: 373:12717 374:12723 375:12724 376:12725
  CMD: WM_INITMENU (W)
  CMD: COMMAND_INDENT
    Indent (1) - Text: b88c48
    Text - sz:376:12725 - slFr:358:8:12334 - slTo:358:8:12334 - nlA:0
    Line Starts: 373:12717 374:12723 375:12724 376:12725
    Set Selection (1) - Text: b88c48 - L: 358 - C: 0
    Text - sz:376:12765 - slFr:12334 - slTo:12334 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Indent (2) - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
  CMD: WM_INITMENU (W)
  CMD: COMMAND_INDENT
    Indent (1) - Text: b88c48
    Text - sz:376:12765 - slFr:358:0:12326 - slTo:358:0:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (1) - Text: b88c48 - L: 358 - C: 0
    Text - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Indent (2) - sz:376:12765 - slFr:12326 - slTo:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
  CMD: WM_INITMENU (W)
  CMD: COMMAND_SAVE_FILE
    Save File (1) - Window: 1904ce - SaveAs: 0 - Sel: 0 - fileno: 0 - sizeptr: 0
    Save File (2) - name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java - fileno: 0 - sizeptr: 0
  CMD: WM_LBUTTONDOWN (D)
    Set Selection (1) - Text: b88c48 - L: 9 - C: 19
    Text - sz:376:12765 - slFr:358:0:12326 - slTo:358:0:12326 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:223 - slTo:223 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
  CMD: WM_LBUTTONUP (D)
    Extend Selection - Text: b88c48 - L: 9 - C: 19
    Text - sz:376:12765 - slFr:9:1:223 - slTo:9:1:223 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
  CMD: WM_INITMENU (W)
  CMD: COMMAND_RUN
    Run (1) - Window: 1904ce - Ex: 1 - Args: 0 - Step: 0
    Find Next Error (1) - Text: 1904ce - Activate: 1
    Set Selection (1) - Text: b88c48 - L: 0 - C: -842150452
    Text - sz:376:12765 - slFr:223 - slTo:223 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:-842150452 - slTo:-842150452 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765


Registers
  EAX=DDDDDDDD  EBX=00170073  ECX=00000007  EDX=7FFFFFFF  ESI=00000002
  EDI=00000000  EBP=00122B44  ESP=001226E8  EIP=77FA69C0  FLG=00010206
  CS=001B  DS=0023  SS=0023  ES=0023  FS=0038  GS=0000

TROUBLE!  You're already in the crash handler!


Crashed in Crash Handler!
*** FATAL INTERNAL ERROR in "Ready" ***
Date: Oct 21 2004 12:43 AM

File Name: C:\Program Files\Ready\Ready.exe
Version: 1.6.0b  [11]
File Size: 2428967
File Date: Jan 17 2003 5:00 PM

Previous Operations:
    Create File (W1) - Name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java - Skel: 0
  CMD: WM_CREATE (W)
  CMD: WM_CREATE (D)
    Open File (1) - Window: 1204b8 - Name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java
    Set New Text (1) - Text: b88c48 - size: 10012
    Set New Text (2) - sz:376:12765 - slFr:0 - slTo:0 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Open File (2) - fileno: 0 - sizeptr: 0
  CMD: WM_ACTIVATE (W)
  CMD: WM_ACTIVATE (W)
  CMD: WM_ACTIVATE (W)
  CMD: WM_SETFOCUS (W)
  CMD: WM_ACTIVATE (W)
  CMD: WM_INITMENU (W)
  CMD: COMMAND_RUN
    Run (1) - Window: 1204b8 - Ex: 1 - Args: 0 - Step: 0
    Find Next Error (1) - Text: 1204b8 - Activate: 1
    Set Selection (1) - Text: b88c48 - L: 0 - C: -842150452
    Text - sz:376:12765 - slFr:0:0:0 - slTo:0:0:0 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:-842150452 - slTo:-842150452 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765



The environment has experienced an unexpected internal error.

This error is caused by a bug in the environment and is not your fault!
Details about the crash have been saved in the file "C:\Documents and Settings\Howard\My Documents\panic.log".

If possible, please e-mail this file to readybugs@hsa.on.ca

Here are some details about the error:
   Error = Ready has gone into an infinite loop.

Ready Internal State: 376 0 -1 0 -842150452 0 -33686019 0
---
--- (6051)
   File = src\edtext.c
   Line = 4141

All unsaved open files will be saved with a ".sav" or ".sv#" extension.

List of Modules:
    C:\Program Files\Ready\Ready.exe
    C:\WINDOWS\System32\ntdll.dll
    C:\WINDOWS\system32\kernel32.dll
    C:\WINDOWS\system32\USER32.dll
    C:\WINDOWS\system32\GDI32.dll
    C:\WINDOWS\system32\ADVAPI32.dll
    C:\WINDOWS\system32\RPCRT4.dll
    C:\WINDOWS\system32\comdlg32.dll
    C:\WINDOWS\system32\SHLWAPI.dll
    C:\WINDOWS\system32\msvcrt.dll
    C:\WINDOWS\system32\COMCTL32.dll
    C:\WINDOWS\system32\SHELL32.dll
    C:\WINDOWS\system32\VERSION.dll
    C:\WINDOWS\System32\WINMM.dll
    C:\WINDOWS\System32\IMM32.DLL
    C:\WINDOWS\System32\LPK.DLL
    C:\WINDOWS\System32\USP10.dll
    C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.10.0_x-ww_f7fb5805\comctl32.dll
    C:\WINDOWS\System32\shfolder.dll
    C:\WINDOWS\System32\uxtheme.dll
    C:\Program Files\Messenger Plus! 3\MsgPlusH.dll
    C:\WINDOWS\system32\ole32.dll
    C:\WINDOWS\system32\OLEAUT32.dll
    C:\WINDOWS\System32\MSCTF.dll
    C:\WINDOWS\System32\msctfime.ime
    C:\Program Files\Ready\Support\Bin\edjdll.dll
    C:\Program Files\Ready\Support\jre141_01\bin\client\jvm.dll
    C:\Program Files\Ready\Support\jre141_01\bin\hpi.dll
    C:\Program Files\Ready\Support\jre141_01\bin\verify.dll
    C:\Program Files\Ready\Support\jre141_01\bin\java.dll
    C:\Program Files\Ready\Support\jre141_01\bin\zip.dll
    C:\Program Files\Ready\Support\jre141_01\bin\dt_shmem.dll
    C:\WINDOWS\System32\Msimtf.dll
    C:\PROGRA~1\NEWDOT~1\NEWDOT~1.DLL
    C:\WINDOWS\system32\urlmon.dll
    C:\WINDOWS\System32\WS2_32.dll
    C:\WINDOWS\System32\WS2HELP.dll
    C:\WINDOWS\system32\WININET.dll
    C:\WINDOWS\system32\CRYPT32.dll
    C:\WINDOWS\system32\MSASN1.dll
    C:\WINDOWS\System32\SETUPAPI.dll
    C:\WINDOWS\system32\MPR.dll
    C:\WINDOWS\System32\WINTRUST.dll
    C:\WINDOWS\system32\IMAGEHLP.dll
    C:\Program Files\Ready\Support\jre141_01\bin\net.dll
    C:\WINDOWS\System32\WSOCK32.dll
    C:\WINDOWS\System32\mswsock.dll
    C:\WINDOWS\System32\DNSAPI.dll
    C:\Program Files\Iolo\Macro Magic\eventhook.dll
    C:\WINDOWS\System32\winrnr.dll
    C:\WINDOWS\system32\WLDAP32.dll
    C:\WINDOWS\System32\rasadhlp.dll
    C:\WINDOWS\System32\dbghelp.dll



------------------------------------------
*** ENVIRONMENT CRASH ***

Date: Oct 21 2004 12:43 AM

File Name: C:\Program Files\Ready\Ready.exe
Version: 1.6.0b  [11]
File Size: 2428967
File Date: Jan 17 2003 5:00 PM

Cause of Crash: Access Violation

Previous Operations:
    Create File (W1) - Name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java - Skel: 0
  CMD: WM_CREATE (W)
  CMD: WM_CREATE (D)
    Open File (1) - Window: 1204b8 - Name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java
    Set New Text (1) - Text: b88c48 - size: 10012
    Set New Text (2) - sz:376:12765 - slFr:0 - slTo:0 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Open File (2) - fileno: 0 - sizeptr: 0
  CMD: WM_ACTIVATE (W)
  CMD: WM_ACTIVATE (W)
  CMD: WM_ACTIVATE (W)
  CMD: WM_SETFOCUS (W)
  CMD: WM_ACTIVATE (W)
  CMD: WM_INITMENU (W)
  CMD: COMMAND_RUN
    Run (1) - Window: 1204b8 - Ex: 1 - Args: 0 - Step: 0
    Find Next Error (1) - Text: 1204b8 - Activate: 1
    Set Selection (1) - Text: b88c48 - L: 0 - C: -842150452
    Text - sz:376:12765 - slFr:0:0:0 - slTo:0:0:0 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:-842150452 - slTo:-842150452 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765


Registers
  EAX=DDDDDDDD  EBX=00140073  ECX=00000007  EDX=7FFFFFFF  ESI=00000002
  EDI=00000000  EBP=00122B44  ESP=001226E8  EIP=77FA69C0  FLG=00010206
  CS=001B  DS=0023  SS=0023  ES=0023  FS=0038  GS=0000

TROUBLE!  You're already in the crash handler!

*** ENVIRONMENT CRASH ***

Date: Oct 21 2004 12:43 AM

File Name: C:\Program Files\Ready\Ready.exe
Version: 1.6.0b  [11]
File Size: 2428967
File Date: Jan 17 2003 5:00 PM

Cause of Crash: Access Violation

Previous Operations:
    Create File (W1) - Name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java - Skel: 0
  CMD: WM_CREATE (W)
  CMD: WM_CREATE (D)
    Open File (1) - Window: 1204b8 - Name: C:\Documents and Settings\Howard\Desktop\multiple_buttons.java
    Set New Text (1) - Text: b88c48 - size: 10012
    Set New Text (2) - sz:376:12765 - slFr:0 - slTo:0 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Open File (2) - fileno: 0 - sizeptr: 0
  CMD: WM_ACTIVATE (W)
  CMD: WM_ACTIVATE (W)
  CMD: WM_ACTIVATE (W)
  CMD: WM_SETFOCUS (W)
  CMD: WM_ACTIVATE (W)
  CMD: WM_INITMENU (W)
  CMD: COMMAND_RUN
    Run (1) - Window: 1204b8 - Ex: 1 - Args: 0 - Step: 0
    Find Next Error (1) - Text: 1204b8 - Activate: 1
    Set Selection (1) - Text: b88c48 - L: 0 - C: -842150452
    Text - sz:376:12765 - slFr:0:0:0 - slTo:0:0:0 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765
    Set Selection (2) - sz:376:12765 - slFr:-842150452 - slTo:-842150452 - nlA:0
    Line Starts: 373:12753 374:12763 375:12764 376:12765


Registers
  EAX=DDDDDDDD  EBX=00140073  ECX=00000007  EDX=7FFFFFFF  ESI=00000002
  EDI=00000000  EBP=00122B44  ESP=001226E8  EIP=77FA69C0  FLG=00010206
  CS=001B  DS=0023  SS=0023  ES=0023  FS=0038  GS=0000

TROUBLE!  You're already in the crash handler!


Crashed in Crash Handler!
Sponsor
Sponsor
Sponsor
sponsor
Display posts from previous:   
   Index -> Programming, Java -> Java Help
View previous topic Tell A FriendPrintable versionDownload TopicSubscribe to this topicPrivate MessagesRefresh page View next topic

Page 1 of 1  [ 1 Posts ]
Jump to:   


Style:  
Search: