Help with my code, please?

import java.awt.*;
import java.awt.event.*;
import javax.swing.* ;
import BreezySwing.*;
import java.io.*;
import TerminalIO.*;
import java.lang.*;
import java.util.*;
import java.io.Serializable;
public class FitnessCalculator extends GBFrame {
  private JTextField BMITextField, BMI2TextField, BPTextField,
BP2TextField;
  private JLabel weightLabel, heightLabel, SystolicLabel, DiastolicLabel;
  private JMenuItem BMI, Bp;
  String BodyMassIndex, BloodPressure = "";
  int Systolic, Diastolic, weight, height;
  private JButton BodyMassCalculator, BloodPressureCalculator;
  Integer weightHeight = weight + height;
  public FitnessCalculator( ){
      setSize(400,500);
      setLocation(200,200);
      JMenu calculators = new JMenu("Calculators");
      calculators.setMnemonic(KeyEvent.VK_U);
      JMenu BP = new JMenu("BloodPressure");
      JMenuItem BPItem = new JMenuItem("BloodPressure");
      BPItem.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e) {
              FitnessCalculator bmiWindow = new
FitnessCalculator("BloodPressure");
          bmiWindow.setSize(400,400);
          bmiWindow.setVisible(true);
      JMenu BMI = new JMenu("BMI");
      JMenuItem BMIItem = new JMenuItem("BMI");
      BMIItem.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e) {
              FitnessCalculator bmiWindow = new FitnessCalculator("BMI");
          bmiWindow.setSize(400,400);
          bmiWindow.setVisible(true);
      calculators.add(BMIItem);
      calculators.add(BPItem);
      calculators.addSeparator();
      JMenu Quit = new JMenu("Quit");
      JMenuItem quitItem = new JMenuItem("Quit");
      quitItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_Q,
       Event.CTRL_MASK));
      quitItem.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e) {
              System.exit(0);
      calculators.add(quitItem);
      JMenuBar menuBar = new JMenuBar();
      menuBar.add(calculators);
      setJMenuBar(menuBar);
  public FitnessCalculator(String blah){
      BodyMassIndex();
  public void BodyMassIndex(){
       JMenu calculators = new JMenu("Calculators");
      calculators.setMnemonic(KeyEvent.VK_U);
      calculators.add(new JMenuItem("BMI"));
      calculators.add(new JMenuItem("BodyFat"));
      calculators.add(new JMenuItem("BloodPressure"));
      calculators.addSeparator();
      if ( weight == 0){
            BMI2TextField.setText("Noob");
           }else{
              if( BMI < 18.5){
                  BMI2TextField.setText("UnderWeight");
              }else{
               if( BMI >= 18.5 && BMI <= 24.9){
                  BMI2TextField.setText("Normal");
              }else{
              if( BMI >= 25 && BMI <= 29.9){
                  BMI2TextField.setText("Overweight");
              }else{
              if( BMI > 30){
                  BMI2TextField.setText("Obese");
              }else{
         BMI2TextField.setText("Your BMI is :" + BMI);
   public void BloodPressure(){
       JMenu calculators = new JMenu("Calculators");
      calculators.setMnemonic(KeyEvent.VK_U);
      calculators.add(new JMenuItem("BMI"));
      calculators.add(new JMenuItem("BodyFat"));
      calculators.add(new JMenuItem("BloodPressure"));
      calculators.addSeparator();
  public String setText(String t){
      return t;
   public Integer getNumber(){
           return weightHeight;
       public void BodyMassIndexCalculator(){
       Integer BMI = (weight / (height * height) * 703);
        weightHeight = weight + height;
        weightLabel = weightLabel;
        heightLabel = heightLabel;
        if ( weight == 0){
            BMI2TextField.setText("Noob");
           }else{
              if( BMI < 18.5){
                  BMI2TextField.setText("UnderWeight");
              }else{
               if( BMI >= 18.5 && BMI <= 24.9){
                  BMI2TextField.setText("Normal");
              }else{
              if( BMI >= 25 && BMI <= 29.9){
                  BMI2TextField.setText("Overweight");
              }else{
              if( BMI > 30){
                  BMI2TextField.setText("Obese");
              }else{
         BMI2TextField.setText("Your BMI is :" + BMI);
        //BMI.setText(BMI);
          public void BloodPressureCalculator(){
       SystolicLabel = SystolicLabel;
       DiastolicLabel = DiastolicLabel;
          //BloodPressure.setText(BloodPressure);
  public void buttonClicked(JButton buttonObj){
    if ( buttonObj == BodyMassCalculator){
           double BMI = weightHeight;
        if ( weight == 0){
            BMI2TextField.setText("Noob");
           }else{
              if( BMI < 18.5){
                  BMI2TextField.setText("UnderWeight");
              }else{
               if( BMI >= 18.5 && BMI <= 24.9){
                  BMI2TextField.setText("Normal");
              }else{
              if( BMI >= 25 && BMI <= 29.9){
                  BMI2TextField.setText("Overweight");
              }else{
              if( BMI > 30){
                  BMI2TextField.setText("Obese");
              }else{
         BMI2TextField.setText("Your BMI is :" + BMI);
       if ( buttonObj == BloodPressureCalculator){
           //Integer Systolic = Systolic.getNumber();
           //Integer Diastolic = Diastolic.getNumber();
               BP2TextField.setText("Liar");
           }else{
               if( Systolic < 120 && Systolic > 80){
                   BP2TextField.setText("Normal");
               }else{
                   if( Systolic > 120 && Systolic < 139){
                       BP2TextField.setText("PreHypertension");
                   }else{
                       //BP2TextField.setText("Your Bloodpressure is : ") +
BloodPressure);
  public JMenuItem add(JMenuItem ob){
      if ( ob == BMI){
          FitnessCalculator bmiWindow = new FitnessCalculator("BMI");
          bmiWindow.setSize(400,400);
          bmiWindow.setVisible(true);
          this.setVisible(true);
      if ( ob == Bp){
          BloodPressure();
          this.setVisible(false);
      return Bp;
  public static void main(String[] args) {
  JFrame f = new FitnessCalculator(  );
  f.addWindowListener(new WindowAdapter(  ) {
    public void windowClosing(WindowEvent we) { System.exit (0); }
  f.setVisible(true);
}When I compile it, it will show up like I want it to. But when I click the menu and go down to the calculator I want to pop up, only the window pops up. There's nothing in it. How would I take the input from the user and tell the user if they are overweight or not?
  if ( weight == 0){
            BMI2TextField.setText("Noob");
           }else{
              if( BMI < 18.5){
                  BMI2TextField.setText("UnderWeight");
              }else{
               if( BMI >= 18.5 && BMI <= 24.9){
                  BMI2TextField.setText("Normal");
              }else{
              if( BMI >= 25 && BMI <= 29.9){
                  BMI2TextField.setText("Overweight");
              }else{
              if( BMI > 30){
                  BMI2TextField.setText("Obese");
              }else{
         BMI2TextField.setText("Your BMI is :" + BMI);
}I thought it was that, but when I open the calculator nothing shows up in the window. What do I need to do to take input from the user and output the needed info from the above text?

What do I need to put BMI as? I don't know if having it as a MenuItem is working.
When I compile it, it will show up like I want it to.???
If you didn't understand, I meant that it compiles and opens a GUI window. Just a blank window with a Menu Bar. With two calculators that drop down. When I click the BodyMassIndex one a new GUI window opens up. But nothing is in it. How do I get the user to input the information and output the result of it? This is really confusing me.

Similar Messages

  • Multiple Users Login ( Help With The Code ) Please.

    Hi all. Please help me...
    I'm using www.wix.com to create my websites.
    but since Wix.com don't able us to have member system conecet to database, i use Flash SWF As3 files...
    Please can anyone help me with the Code?
    Username=1    /Password= 1    /Url= www.1.com
    Username=2    /Password= 2    /Url= www.2.com
    Username=2    /Password= 2    /Url= www.2.com
    *If user name 1 or 2 or 3 correct. Show massage ex: Welcome back, if not correct " Bad login"
    *When login, it will open the url but in new page after the old one closed.
    + There is anyway to add " Password recovaring box too"?
    but not connected to datdabase as i said?
    Please help me, please! i areadly have code but it don't work for more than one user.
    Thank u soooo much!!
    Loai

    Here's the code i have already,,
    but i don't know how to add more than one user + when login it open new window ( popup ) i want it to open in the same window...
    Please help.
    stop();
    //hide the password
    //pass_txt.displayAsPassword = true;
    //adding event listener to the login button
    login_mc.addEventListener(MouseEvent.CLICK, loginUser);
    function loginUser(e:MouseEvent):void{
    //if both username and password are correct let the user logged in
    if(name_txt.text == "1" && pass_txt.text == "1"){
    navigateToURL( new URLRequest( "http://www.wix.com/designersgroup/tutorials/9-1" ), "_blank" );
    display_txt.text = "Going to secure area";
    else if(name_txt.text != "1" && pass_txt.text != "1"){
    display_txt.text = "Login failed!";
    if(name_txt.text == "2" && pass_txt.text == "2"){
    navigateToURL( new URLRequest( "http://www.wix.com/designersgroup/tutorials/9-2" ), "_blank" );
    display_txt.text = "Going to secure area";
    else if(name_txt.text != "2" && pass_txt.text != "2"){
    display_txt.text = "Login failed!";

  • Help with button code please?

    I am a novice and have just completed my first animated movie. I need help with action script.
    The movie is currently looped and I have created and invisible button the size of the frame with the intention that a user can click on the movie image to stop it and on second click continue the movie from where it stopped.
    I have used the AS event handler method to stop the movie. I have tested it and it works. But I cannot figure suitable code to restart the movie.
    Two questions;
    1. am I going about the task the right way? (should I use two buttons, one stop, one start)?
    2. if my approach is feasible, can anyone give me the correct AS to re-start the movie and put me out of my misery please?

    you can use the following after changing "yourbutton" and "yourmovieclip" to use suitable instance names:
    yourbutton.onRelease=function(){
    if(!this.toggle){
    yourmovieclip.stop();
    } else {
    yourmovieclip.play();
    this.toggle=!this.toggle;

  • Help with error code, please.

    I have compiled a small AS3 script of a bouncing basketball with sound - the volume of the sound  decreasing as the bounces get smaller.
    I have obviously not done something correctly in the way I have installed the sound because I get this error message " 1180: Call to possibly undefined method bounce2 "( bounce2 is the mp3 file). Without the sound the ball bounces perfectly - it is the sound that has killed it. I am a newbie  and am trying to learn AS3 the hard way - by experience  but am stumped here - can some one help, please?   Below is my script.
    // create a ball sprite
    import flash.media.Sound;
    var initialrotationSpeed=12;
    var rotationSpeed : Number;
    var initialxVel : Number=8;
    var stage_width : Number=750;
    ball_mc.x=80;
    ball_mc.y=360;
    //setup position and velocity variables
    var xPos : Number=ball_mc.x;
    var yPos : Number=ball_mc.y;
    var xVel : Number;
    var yVel : Number=0.5;
    var grav ; Number=1;
    var vol : Number=1;
    var snd : Sound=new bounce2();
    snd.play();
    addEventListener(Event.ENTER_FRAME,onLoop,false,0,true);
    function onLoop(evt:Event) : void {
    if(ball_mc.x/stage_width));
    xVel=initialxVel*(1-(ball_mc.x/stage_width));
    yVel+=grav;
    xPos+=xVel;
    yPos+=yVel;
    if(Math.abs(yPos-560)<1&&Math.abs(yVel)<1)
    remove EventListener(Event.ENTER_FRAME,onLoop);
    else if(yPos>560){
    yPos=560;
    yVel*= -.8;
    xVel*= .8;
    vol- =0.1;
    snd.play(0,0,newSoundTransform(vol));
    ball_mc.x=xPos;
    ball_mc.y=yPos;
    if(ball_mc.xstage.stageWidth-ball_mc.width/4||ball_mc.x<0+ball_mc.width/4){
    xVel*= -1;
    addEventListener(Event.ENTER_FRAME,Rotation);
    function Rotation(event:Event):void {
    if(ball_mc.x/stage_width<1)
    ball_mc.rotation+=initialrotationSpeed*(1-ball_mc.x/stage_width);
    if(ball_mc.x<700)
    xVel=initialxVel*(1-(ball_mc.x/stage_width));
    ball_mc.x+=xVel;
    else
    removeEventListener(Event.ENTER_FRAME,Rotation);

    Thank you - that was it - "class" - or lack of .
    I am most appreciative of your assistance
    regards

  • Help with HTML code Please

    Hello,
    I am having some trouble with my HTML format. I am trying to
    have it so when I click on my thunbnail another picture shows up as
    a popup. you can see what I am trying to do at this link
    http://209.66.101.242/EZ-Templates/calendars.php
    Here is what my code looks like. If you are able to tell me
    what I have wrong I would appreciate it. Thanks in advance
    <DIV align=center><a
    onclick="return enlarge('
    http://www.brcphotography.com/holidaycards/pics/annual/CL02.jpg',event,'center',300,375)"
    href="pics/quarterly/CL08-3.jpg"><img
    src="pics/quarterly/CL08-3 thumb.gif" name="thumbnail"
    border="0" id="thumbnail"
    /></A></DIV></TD></TR>
    <TR>
    <TD>
    <DIV class=product_name
    align=center>CL08-3</DIV>

    Works fine for me in boty IE7 and FF. Did you fix it after
    posting?
    emichael brandt
    cdc3323 wrote:
    > Hello,
    >
    > I am having some trouble with my HTML format. I am
    trying to have it so when
    > I click on my thunbnail another picture shows up as a
    popup. you can see what
    > I am trying to do at this link
    http://209.66.101.242/EZ-Templates/calendars.php
    >
    > Here is what my code looks like. If you are able to tell
    me what I have wrong
    > I would appreciate it. Thanks in advance
    >
    > <DIV align=center><a
    > onclick="return
    > enlarge('
    http://www.brcphotography.com/holidaycards/pics/annual/CL02.jpg',event,
    > 'center',300,375)"
    > href="pics/quarterly/CL08-3.jpg"><img
    > src="pics/quarterly/CL08-3 thumb.gif"
    > name="thumbnail"
    > border="0" id="thumbnail"
    > /></A></DIV></TD></TR>
    > <TR>
    > <TD>
    > <DIV class=product_name
    > align=center>CL08-3</DIV>
    >
    >

  • Can you help with the code to publish Flash to my own domain.

    Thank you for your help, I publish the my site to my own domain, I do not use .Mac, I tested your code and ity works well on .Mac, can you help with the code to publish to my own domain.
    Thank you again

    You appear to have just collected a variety of code snippets and thrown them together, including a section of AS2 code ( gage.onRelease = function() {... )
    The suggestion I offered yesterday still stands.  You should find a tutorial regarding AS3 and the atan2 function.  Beyond that, what you show suggests this is a school assignment.  You should seek help from your fellow students and instructor if that is the case.

  • I need help with this code error "unreachable statement"

    the error_
    F:\Java\Projects\Tools.java:51: unreachable statement <-----------------------------------------------------------------------------------------------------------------THIS
    int index;
    ^
    F:\Java\Projects\Tools.java:71: missing return statement
    }//end delete method
    ^
    F:\Java\Projects\Tools.java:86: missing return statement
    }//end getrecod
    ^
    3 errors
    import java.util.*;
    import javax.swing.*;
    import java.awt.*;
    public class Tools//tool class
    private int numberOfToolItems;
    private ToolItems[] toolArray = new ToolItems[10];
    public Tools()//array of tool
    numberOfToolItems = 0;
    for(int i = 0; i < toolArray.length; i++)//for loop to create the array tools
    toolArray[i] = new ToolItems();
    }//end for loop
    }//end of array of tools
    public int search(int id)//search mehtod
    int index = 0;
    while (index < numberOfToolItems)//while and if loop search
    if(toolArray[index].getID() == id)
    return index;
    else
    index ++;
    }//en while and if loop
    return -1;
    }//end search method
    public int insert(int id, int numberInStock, int quality, double basePrice, String nm)//insert method
    if(numberOfToolItems >= toolArray.length)
    return 0;
    int index;
    index = search(id); <-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------HERE
    if (index == -1)
    toolArray[index].assign(id,numberInStock, quality, basePrice,nm);
    numberInStock ++;
    return 1;
    }//end if index
    }//end if toolitem array
    return -1;
    }//end insert method
    public int delete(/*int id*/)//delete method
    }//end delete method
    public void display()//display method
    for(int i = 0; i < numberOfToolItems; i++)
    //toolArray.display(g,y,x);
    }//end display method
    public String getRecord(int i)//get record method
    // return toolArray[i].getName()+ "ID: "+toolArray[i].getID()
    }//end getrecod
    }//end class
    Edited by: ladsoftware on Oct 9, 2009 6:08 AM
    Edited by: ladsoftware on Oct 9, 2009 6:09 AM
    Edited by: ladsoftware on Oct 9, 2009 6:10 AM
    Edited by: ladsoftware on Oct 9, 2009 6:11 AM

    ladsoftware wrote:
    Subject: Re: I need help with this code error "unreachable statement"
    F:\Java\Projects\Tools.java:51: unreachable statement <-----------------------------------------------------------------------------------------------------------------THIS
    int index;
    ^
    F:\Java\Projects\Tools.java:71: missing return statement
    }//end delete method
    ^
    F:\Java\Projects\Tools.java:86: missing return statement
    }//end getrecod
    ^
    3 errorsThe compiler is telling you exactly what the problems are:
    public int insert(int id, int numberInStock, int quality, double basePrice, String nm)//insert method
    if(numberOfToolItems >= toolArray.length)
    return 0; // <<== HERE you return, so everyting in the if block after this is unreachable
    int index;
    index = search(id);  //< -----------------------------------------------------------------------------------------------------------------HERE
    if (index == -1)
    toolArray[index].assign(id,numberInStock, quality, basePrice,nm);
    numberInStock ++;
    return 1;
    }//end if index
    }//end if toolitem array
    return -1;
    }//end insert method
    public int delete(/*int id*/)//delete method
    // <<== HERE where is the return statement?
    }//end delete method
    public String getRecord(int i)//get record method
    // return toolArray.getName()+ "ID: "+toolArray[i].getID() <<== HERE you commented out the return statement
    }//end getrecod
    }//end class

  • Need help with WMI code that will send output to db

    'm new to WMI code writing, so I need some help with writing code that we can store on our server. I want this code to run when a user logs into their computer
    and talks to our server. I also want the code to:
    * check the users computer and find all installed patches
    * the date the patches were installed
    * the serial number of the users computer
    * the computer name, os version, last boot up time, and mac address
    and then have all this output to a database file. At the command prompt I've tried:
    wmic qfe get description, hotfixid
    This does return the patch information I'm looking for, but how do I combine that line of code with:
    wmic os get version, csname, serialnumber, lastbootuptime
    and
    wmic nicconfig get macaddress
    and then get all this to output to a database file?

    Thank you for the links. I checked out http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx and
    found lots of good information. I also found a good command that will print information to a text file.
    Basically what I'm trying to do is retrieve a list of all installed updates (Windows updates and 3rd party updates). I do like that the below code because it gives me the KB numbers for the Windows updates. I need this information so my IT co-workers &
    I can keep track of which of our user computers need a patch/update installed and preferably which patch/update. The minimum we want to know is which patches / updates have been installed on which computer. If you wondering why we don't have Windows automatic
    updates enable, that's because we are not allowed to.   
    This is my code so far. 
    #if you want the computer name, use this command
    get-content env:computername
    $computer = get-content env:computername
    #list of installed patches
    Get-Hotfix -ComputerName $computer#create a text file listing this information
    Get-Hotfix > 'C:\users\little e\Documents\WMI help\PowerShell\printOutPatchList.txt'
    I know you don't want to tell me the code that will print this out to a database (regardless if it's Access or SQL), and that's find. But maybe you can tell me this. Is it possible to have the results of this sent to a database file or do I need to go into
    SQL and write code for SQL to go out and grab the data from an Excel file or txt file? If I'm understanding this stuff so far, then I suspect that it can be done both ways, but the code needs to be written correctly for this to happen. If it's true, then which
    way is best (code in PowerShell to send information to SQL or SQL go get the information from the text file or Excel file)?

  • I need help with my code..

    hi guys. as the subject says I need help with my code
    the Q for my code is :
    write a program that reads a positive integer x and calculates and prints a floating point number y if :
    y = 1 ? 1/2 + 1/3 - ? + 1/x
    and this is my code
       This program that reads a positive integer x and calculates
       and prints a floating point number y if :
                 y = 1 - 1/2 + 1/3 - ? + 1/x
       import java.util.Scanner; // program uses class Scanner
        class Sh7q2
           // main method begins execution of Java application
           public static void main( String args[] )
          // create Scanner to obtain input from command window
             Scanner input = new Scanner( System.in );
             int i = 1; // i is to control the loop
             int n = 2; // n is suppose to control the number sign
             int x; // a positive integer entered by the user
             int m;
             System.out.println("Enter a positive integer");
             x = input.nextInt();
             do
                m = (int) Math.pow( -1, n)/i;
                System.out.println(m);
                   n++;
                   i++;
             while ( m >= 1/x );
          } // end method main
       } // end class Sh7q2 when I compile it there is no error
    but in the run it tells me to enter a positive integer
    suppose i entered 5
    then the result is 1...
    can anyone tell me what's wrong with my code

       This program that reads a positive integer x and calculates
       and prints a floating point number y if :
                 y = 1 - 1/2 + 1/3 - ? + 1/x
       import java.util.Scanner; // program uses class Scanner
        class Sh7q2
           // main method begins execution of Java application
           public static void main( String args[] )
          // create Scanner to obtain input from command window
             Scanner input = new Scanner( System.in );
             int i = 1; // i is to control the loop
             int n = 1; // n is suppose to control the number sign
             int x; // a positive integer entered by the user
             double m;
             int a = 1;
             double sum = 0;
             System.out.println("Enter a positive integer");
             x = input.nextInt();
             for ( i = 1; a <= x; i++)
                m =  Math.pow( -1, n+1)/i;
                sum  = sum + m;
                n++;
                a++;
             System.out.print("y = " + sum);
          } // end method main
       } // end class Sh7q2is it right :S

  • Help with access control please

    So I'm trying to set up my brother's PSP to the wirless network through MAC address timed access. What I want to do is make it so that he can only access it through certain times in the day. I'm having troubles with actually getting it to work. Everytime I set it up, the PSP only show's up as a DHCP client and not a Wireless client. I tried the option panel with the add wireless clients through the first try access. Could I get some help with this issue please? Thanks!

    Just to calm your fears... There is no conspiracy. If someone had an answer or a suggestion they would post it.

  • Help With Crash Code  In PRE8 Please

    In an interest to turn some of my recent discussions in a more positive direction and in keeping with the primary function of this forum (seeking advice and solutions) and in a further effort to not continually ***** about PRE8, can someone please help with and interpret the following crash codes recently generated by PRE8?
    Thanks in advance for any help.
    Glenn
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangXProcB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                ba8e
    Hang Type:                                        32
    Waiting on Application Name:       ElementsOrganizerSyncAgent.exe
    Waiting on Application Version:    8.0.0.0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 2:         84f3
    Additional Hang Signature 3:         f0a90877ec38c16fd285cc410c83433d
    Additional Hang Signature 4:         ba8e
    Additional Hang Signature 5:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 6:         84f3
    Additional Hang Signature 7:         f0a90877ec38c16fd285cc410c83433d
    Extra information about the problem
    Bucket ID:                                          749899167
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangXProcB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                ba8e
    Hang Type:                                        32
    Waiting on Application Name:       ElementsOrganizerSyncAgent.exe
    Waiting on Application Version:    8.0.0.0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 2:         84f3
    Additional Hang Signature 3:         f0a90877ec38c16fd285cc410c83433d
    Additional Hang Signature 4:         ba8e
    Additional Hang Signature 5:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 6:         84f3
    Additional Hang Signature 7:         f0a90877ec38c16fd285cc410c83433d
    Extra information about the problem
    Bucket ID:                                          749899167
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangXProcB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                ba8e
    Hang Type:                                        32
    Waiting on Application Name:       ElementsOrganizerSyncAgent.exe
    Waiting on Application Version:    8.0.0.0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 2:         84f3
    Additional Hang Signature 3:         f0a90877ec38c16fd285cc410c83433d
    Additional Hang Signature 4:         ba8e
    Additional Hang Signature 5:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 6:         84f3
    Additional Hang Signature 7:         f0a90877ec38c16fd285cc410c83433d
    Extra information about the problem
    Bucket ID:                                          749899167
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                af71
    Hang Type:                                        0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         37a5e7ba79ac8a533571e7d8f2e8acd0
    Additional Hang Signature 2:         d900
    Additional Hang Signature 3:         431be4795d1c061aba02734aa57c4950
    Additional Hang Signature 4:         af71
    Additional Hang Signature 5:         37a5e7ba79ac8a533571e7d8f2e8acd0
    Additional Hang Signature 6:         d900
    Additional Hang Signature 7:         431be4795d1c061aba02734aa57c4950
    Extra information about the problem
    Bucket ID:                                          811067413
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                7008
    Hang Type:                                        0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         f0af3d01fb74f43241231d4e61778ffa
    Additional Hang Signature 2:         0fb3
    Additional Hang Signature 3:         a5f1d311bc7bfa26f067b42cbdeac6af
    Additional Hang Signature 4:         7008
    Additional Hang Signature 5:         f0af3d01fb74f43241231d4e61778ffa
    Additional Hang Signature 6:         0fb3
    Additional Hang Signature 7:         a5f1d311bc7bfa26f067b42cbdeac6af
    Extra information about the problem
    Bucket ID:                                          781893170

    Here are my system specs.  Let me know if you need anything else.
    Thanks
    Glenn
    Operating System
    MS Windows Vista Ultimate SP2
               Installation Date: 06 March 2009, 02:58
               Intel Mobile Core 2 Duo T9550
                   Cores                       2
                   Threads                     2
                   Name                        Intel Mobile Core 2 Duo T9550
                   Code Name                   Penryn
                   Package                     Socket P (478)
                   Technology                  45nm
                   Specification               Intel Core2 Duo CPU  T9550 @ 2.66GHz
                   Family                      6
                   Extended family             6
                   Model                       7
                   Extended model              17
                   Stepping                    A
                   Revision                    E0
                   Instructions                MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, EM64T
                   Bus speed                   266.0 MHz
                   Rated Bus speed             1064.0 MHz
                   Stock core speed            2666 MHz
                   Stock bus speed             266 MHz
                   Average Temperature         36 °C
                   Cache
                       L1 data cache size              2 x 32 KBytes
                       L1 instructions cache size      2 x 32 KBytes
                       L2 unified cache size           6144 KBytes
                   Core 1
                       Core speed            1596.0 MHz
                       Multiplier            x 6.0
                       Bus speed             266.0 MHz
                       Rated Bus speed       1064.0 MHz
                       Temperature           37 °C
                       Thread 1
                           APIC ID     0
                   Core 2
                       Core speed            2660.0 MHz
                       Multiplier            x 6.0
                       Bus speed             266.0 MHz
                       Rated Bus speed       1064.0 MHz
                       Temperature           36 °C
                       Thread 1
                           APIC ID     1
          Memory
                   Type                                DDR2
                   Size                                4096 MBytes
                   Channels #                          Dual
                   DRAM frequency                      399.0 MHz
                   CAS# Latency (CL)                   6.0 clocks
                  RAS# to CAS# delay (tRCD)           6 clocks
                   RAS# precharge (tRP)                6 clocks
                   Cycle time (tRAS)                   18 clocks
               SPD
                   Number of SPD modules          2
                   Slot #1
                       Type                DDR2
                       Size                2048 MBytes
                       Manufacturer        Hyundai Electronics
                       Max bandwidth       PC2-6400 (400 MHz)
                       Part number         HYMP125S64CP8-S6 
                       Serial number       00007112
                       Week/year           52 / 08
                       SPD Ext.            EPP
                       JEDEC #3
                           Frequency             400.000000 MHz
                           CAS# latency          6.0
                           RAS# to CAS#          6
                           RAS# Precharge        6
                           tRAS                  18
                           tRC                   24
                           Voltage               1.8 V
                       JEDEC #2
                           Frequency             333.333344 MHz
                           CAS# latency          5.0
                           RAS# to CAS#          6
                           RAS# Precharge        6
                           tRAS                  16
                           tRC                   21
                           Voltage               1.8 V
                       JEDEC #1
                           Frequency             266.666656 MHz
                           CAS# latency          4.0
                           RAS# to CAS#          4
                           RAS# Precharge        4
                           tRAS                  12
                           tRC                   16
                           Voltage               1.8 V
                   Slot #2
                       Type                DDR2
                       Size                2048 MBytes
                       Manufacturer        Hyundai Electronics
                       Max bandwidth       PC2-6400 (400 MHz)
                       Part number         HYMP125S64CP8-S6 
                       Serial number       02008065
                       Week/year           52 / 08
                       SPD Ext.            EPP
                       JEDEC #3
                           Frequency             400.000000 MHz
                           CAS# latency          6.0
                           RAS# to CAS#          6
                           RAS# Precharge        6
                           tRAS                  18
                          tRC                   24
                           Voltage               1.8 V
                       JEDEC #2
                           Frequency             333.333344 MHz
                           CAS# latency          5.0
                           RAS# to CAS#          6
                           RAS# Precharge        6
                           tRAS                  16
                           tRC                   21
                           Voltage               1.8 V
                       JEDEC #1
                           Frequency             266.666656 MHz
                           CAS# latency          4.0
                           RAS# to CAS#          4
                           RAS# Precharge        4
                           tRAS                  12
                           tRC                   16
                           Voltage               1.8 V
    Mother Board
    Manufacturer   Dell, Inc.
               Model                      0P786H
               Version                    A04
               Chipset vendor             Intel
               Chipset model              PM45
               Chipset revision           07
               Southbridge vendor         Intel
               Southbridge model          82801IM (ICH9-M)
               Southbridge revision       03
               BIOS
                   Brand       Dell Inc.
                   Version     A04
                   Date        11/26/2008
               Monitor
                   Name                    Generic PnP Monitor on ATI Mobility Radeon HD 3650
                   State                   enable
                   State                   primary
                   Monitor Width           1920
                   Monitor Height          1200
                   Monitor Bit             32
                   Monitor Frequency       60
                   Device:                 \\.\DISPLAY1\Monitor0
                   Name                    Default Monitor on ATI Mobility Radeon HD 3650
                   State                   disabled
                   State                   removable
                   Monitor Width           800
                   Monitor Height          600
                   Monitor Bit             32
                   Monitor Frequency      60
                   Device:                 \\.\DISPLAY2
               ATI Mobility Radeon HD 3650
                   GPU                         M86
                   Device ID                   1002-9591
                   Subvendor                   Dell (1028)
              

  • Help with my code

    package Coreservlets
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    public class Catalog extends HttpServlet {
         public void doGet(HttpServletRequest request,
                        HttpServletResponse response)
          throws ServletException, IOException {
        response.setContentType("text/html");
        PrintWriter out = response.getWriter();
    private static CatalogItem[] addedItem;
    private static CatalogItem[] items; // stores list of items
    CatalogItem item;
    CatalogItem details;
         int recordingidDB;
         String directorDB;
         String titleDB;
         String categoryDB;
         String imageDB;
         int durationDB;
         String ratingDB;
         String yearDB;
         float priceDB;
         int StockDB;
         Connection conn = null;
         try{
             Class.forName("com.mysql.jdbc.Driver").newInstance();
         } catch(Exception e) {
             System.out.println(e);
         try{
             conn = DriverManager.getConnection
            ("jdbc:mysql:MYSQL URL GOES HERE");
           catch(SQLException se) {
             System.out.println(se);
         try{
             String selectSQL = "select title, director, rating, year_released, price, stock_count, image_name "+
                                "from video_recordings " + "'";
             Statement stmt = conn.createStatement();
             ResultSet rs1 = stmt.executeQuery(selectSQL);
             while(rs1.next())
              recordingidDB = rs1.getInt("recording_id");
              directorDB = rs1.getString("director");
              titleDB = rs1.getString("title");
              categoryDB = rs1.getString("category");
              imageDB = rs1.getString("image_name");
              durationDB = rs1.getInt("duration");
              ratingDB = rs1.getString("rating");
              yearDB = rs1.getString("year_released");
              priceDB = rs1.getFloat("price");
              stockDB = rs1.getInt("stock_count");
               item =
               new CatalogItem
                  (recordingidDB, directorDB,titleDB, categoryDB, imageDB, durationDB, ratingDB, yearDB, priceDB, stockDB);
         String title = "Catalog Items";
    out.println(ServletUtilities.headWithTitle(title) +
                    "<BODY BGCOLOR=\"#a00e0e\">\n" +
                  "<center><img src=\"http://localhost:8080/examples/LOGO.jpg\" width=350 height=200/></center>\n" +
                    "<H1 ALIGN=\"CENTER\">" + title + "</H1>\n");
         // loop to go over each item in the array of catalogItem
             for(int i=0; i<items.length; i++) {
               details = item;
    out.println("__________________________");
         if (details == null) {
    out.println("SORRY THERE HAS BEEN AN ERROR ");
         } else
    addedItem[i] = item[i] // PROBLEM IS HERE!!!!!!!!!!!!!!! I THINK LOL
         out.println(titleDB + "\n" + priceDB + "\n");
         out.println("</BODY></HTML>");
         public static CatalogItem getrecordingid(int recordingidDB) {
         CatalogItem item;
    for(int i=0; i<items.length; i++) {
    item = items[i];
    if (recordingidDB.equals(item.getrecordingid())) {
    return(item);
    return(null);
         stmt.close();
         conn.close();
         } catch(SQLException se) {
         System.out.println(se);
    I have made this code so that it gets item information from my database and prints them out to a webpage, but when i try to run the code it says:
    java.lang.NullPointerException
         at Coreservlets.Catalog.doGet(Catalog.java:122)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.servlets.InvokerServlet.serveRequest(InvokerServlet.java:450)
         at org.apache.catalina.servlets.InvokerServlet.doGet(InvokerServlet.java:180)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at filters.ExampleFilter.doFilter(ExampleFilter.java:149)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:213)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at filters.ExampleFilter.doFilter(ExampleFilter.java:149)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:213)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:475)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1027)
         at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1125)
         at java.lang.Thread.run(Thread.java:595)
    I recently added a array called addedItem which store each item during the first for loop but am not sure if it is correct. Can anybody tell me why the code does not work? This servlet also calls uses another servlet called CatalogItem if i need to post that as well please let me know.

    package coreservlets;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    public class Catalog extends HttpServlet {
    private static CatalogItem addedItem[] = new CatalogItem[60];
    private static CatalogItem items[] = new CatalogItem[60];
    CatalogItem item;
    CatalogItem details;
    public static CatalogItem getItem(int recordingid) {
               CatalogItem item;
              for(int i=0; i<items.length; i++) {
                item = items;
              addedItem[i] = items[i];
    if (recordingid==item.getrecordingid()) {
    return(item);
    return(null);
    public void doGet(HttpServletRequest request,
    HttpServletResponse response)
    throws ServletException, IOException {
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    // Database connection code starts here
         int recordingidDB;
         String directorDB;
         String titleDB;
         String categoryDB;
         String imageDB;
         int durationDB;
         String ratingDB;
         String yearDB;
         float priceDB;
         int StockDB;
         Connection conn = null;
         try{
         Class.forName("com.mysql.jdbc.Driver").newInstance();
         } catch(Exception e) {
         System.out.println(e);
         try{
              // connection string for demos database, username demos, password demo-pass
         conn = DriverManager.getConnection
    ("jdbc:mysql:my url");
    catch(SQLException se) {
         System.out.println(se);
    // Create select statement and execute it
         try{
              // Build up the SQL statement from our data requirements
         String selectSQL = "select recording_id, director, title, category, image_name, duration, rating, year_released, price, stock_count "+
         "from video_recordings" ;
         Statement stmt = conn.createStatement();
         ResultSet rs1 = stmt.executeQuery(selectSQL);
         while(rs1.next()){
              recordingidDB = rs1.getInt("recording_id");
              directorDB = rs1.getString("director");
              titleDB = rs1.getString("title");
              categoryDB = rs1.getString("category");
              imageDB = rs1.getString("image_name");
              durationDB = rs1.getInt("duration");
              ratingDB = rs1.getString("rating");
              yearDB = rs1.getString("year_released");
              priceDB = rs1.getFloat("price");
              StockDB = rs1.getInt("stock_count");
         item =
              new CatalogItem
              (recordingidDB, directorDB, titleDB, categoryDB, imageDB, durationDB, ratingDB, yearDB, priceDB, StockDB);
              addedItem[0] = item;
         String title = "Catalog Items";
    out.println( // needto put servlet utilites back here
    "<BODY BGCOLOR=\"#a00e0e\">\n" +
              "<center><img src=\"http://localhost:8080/examples/LOGO.jpg\" width=350 height=200/></center>\n" +
    "<H1 ALIGN=\"CENTER\">" + title + "</H1>\n");
         // loop to go over each item in the array of catalogItem
         for(int i=0; i<addedItem.length; i++) {
         out.println("__________________________");
         details = items[i];
         if (details == null) {
    out.println("SORRY THERE HAS BEEN AN ERROR ");
         } else {       
    addedItem[i] = items[i]; //do i need this here
         out.println( addedItem[i].gettitle() + "\n" +
    addedItem[i].getprice() + "\n" +
         addedItem[i].getdirector() + "\n" +
         addedItem[i].getcategory() + "\n" +
         addedItem[i].getduration() + "\n" +
         addedItem[i].getrating() + "\n" +
         addedItem[i].getyear() + "\n");
    out.println( addedItem[0]);
         out.println("</BODY></HTML>");
    // Close the stament and database connection
    // (must remember to always do this)
         stmt.close();
         conn.close();
         } catch(SQLException se) {
         System.out.println(se);
    Ok i changed the code to the above now instead of getting the error message i get "SORRY THERE HAS BEEN AN ERROR " 60 times, but at least its progress!! can anybody help me out? please give me a good new years day, i'm off out to enojy mine now lol so please let me wake up with something other then a hangover!! and if that aint enough i'll give all 10 duke dollars to the person who helps the most lol

  • Help with Required fields-PLEASE

    I have been attempting to get help with a required field and one of the forum helpers said he got it to work for me but I cannot and I have not been able to get any more responses from him to help me further.
    I am attempting to have a radio box when the YES is selected to require another field to be completed.  The script I was provided with is:
    getField("Location").required = (getField("Group1").value == "Yes");
    Location being the field that I require to be filled in if Group 1 is Yes.  The previous forum helper indicated that I had to have this script in both fields in Group 1 and when I do that, nothing different happens. 
    What am I doing wrong? 
    Please, I need to fix this right away and I will be using this java script on many other forms that I have so I need to get this done soon.
    Thank you in advance.

    Wht you want can get somewhat complicated. One way to prevent subsequent fields from being used is to set them to read-only and/or hidden. You could then use the Validate event of the text field to validate the entry and enable the subsequent fields if it is filled-in adequately. In general, you should also reset the fields whenever you hide them, so they don't contain potentially invalid data from previously being filled-in. So you could initially have the fields set to be hidden, and only unhide them if No is selected, or if Yes is selected and the required text field is filled-in.
    I realize this may not be as helpful as you had hoped for, but I can't suggest specific code without knowing more about the form.

  • Help with a routine please

    Hi experts!
    I have a requirement and I need help with an abap routine.
    I'm uploading a table from de ECC where each record contains one key figure per fiscal period (wlt01, wlt02,...wlt16). I need to have in a dso a unique key figure (called zwlt for instance) and the 0fiscper infoobject filled with the corresponding period, that is, for each record of the table, I need 16 records in the DSO with zwlt = wltXX and the fiscper = fiscyear&0&XX.
    Any help please?
    Thanks in advance.

    there are multiple ways to handle this.
    one way is to use APD to unpivot the data.
    or else you can use the following sample code to derive what you want...this code might just hint at the way to proceed.
    TYPES:
      BEGIN OF tys_SC_1,
          wlt01           TYPE P LENGTH 8 DECIMALS 2,
          wlt02           TYPE P LENGTH 8 DECIMALS 2,
          wlt03           TYPE P LENGTH 8 DECIMALS 2,
          wlt04           TYPE P LENGTH 8 DECIMALS 2,
          wlt05           TYPE P LENGTH 8 DECIMALS 2,
          wlt06           TYPE P LENGTH 8 DECIMALS 2,
          wlt07           TYPE P LENGTH 8 DECIMALS 2,
          wlt08           TYPE P LENGTH 8 DECIMALS 2,
          wlt09           TYPE P LENGTH 8 DECIMALS 2,
          wlt10           TYPE P LENGTH 8 DECIMALS 2,
          wlt11           TYPE P LENGTH 8 DECIMALS 2,
          wlt12           TYPE P LENGTH 8 DECIMALS 2,
      END OF tys_SC_1.
    DATA: ls_type TYPE tys_SC_1,
          l_name TYPE string,
          l_count Type n length 2.
    FIELD-SYMBOLS:
                <fs_type> TYPE tys_SC_1,
                <result>  TYPE P .
    ls_type-wlt01 = '1.1'.
    ls_type-wlt02 = '2.2'.
    ls_type-wlt03 = '3.3'.
    ls_type-wlt04 = '4.4'.
    ls_type-wlt05 = '5.5'.
    ls_type-wlt06 = '6.6'.
    ls_type-wlt07 = '7.7'.
    ls_type-wlt08 = '8.8'.
    ls_type-wlt09 = '9.9'.
    ls_type-wlt10 = '10.1'.
    ls_type-wlt11 = '11.11'.
    ls_type-wlt12 = '12.12'.
    CLEAR:  l_count ,  l_name.
    l_count = '01'.
    ASSIGN ls_type TO <fs_type> .
    Write: / .
    DO 12 TIMES.
      clear: l_name.
      Concatenate 'wlt'  l_count into l_name.
      ASSIGN COMPONENT l_name  OF STRUCTURE  <fs_type> TO <result> .
      Write: / , l_name , ' = ' , <result>.
      l_count = l_count + 1 .
    ENDDO.
    hope it helps.
    Regards
    Ashwin

  • This iMac will be the death of me! Help with Kernel panics please

    Hi guys,
    Had my 27" iMac back from repair at only 5 months old , they installed Lion OSX , first its been freezing on me for so reason at all, just surfing the net , no video or flash, now i keep getting a kernel panic for some reason , can anyone help with this please......
    Interval Since Last Panic Report:  10 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    7B31CF0B-CED9-4C93-87BA-9E4D36669DCE
    Sat Aug 13 19:47:12 2011
    panic(cpu 0 caller 0xffffff80002c268d): Kernel trap at 0xffffff8000210d57, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000291, CR3: 0x000000001753f000, CR4: 0x0000000000000660
    RAX: 0x0000000000000003, RBX: 0x0000000000000000, RCX: 0x000000000000db9b, RDX: 0xffffff80f148beb8
    RSP: 0xffffff80f148be78, RBP: 0xffffff80f148bef0, RSI: 0xffffff80f148bec0, RDI: 0x0000000000000291
    R8:  0x000000009b000000, R9:  0x000000009b000000, R10: 0x0000000000000003, R11: 0xffffff80d315d210
    R12: 0xffffff80f148bec0, R13: 0xffffff80f148beb8, R14: 0xffffff8014c4c228, R15: 0xffffff8014c4c230
    RFL: 0x0000000000010246, RIP: 0xffffff8000210d57, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x0000000000000291, Error code: 0x0000000000000000, Faulting CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80f148bb30 : 0xffffff8000220702
    0xffffff80f148bbb0 : 0xffffff80002c268d
    0xffffff80f148bd50 : 0xffffff80002d7a3d
    0xffffff80f148bd70 : 0xffffff8000210d57
    0xffffff80f148bef0 : 0xffffff8000213374
    0xffffff80f148bf20 : 0xffffff800021ba01
    0xffffff80f148bf90 : 0xffffff800021bcd1
    0xffffff80f148bfb0 : 0xffffff8000820057
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    11A511
    Kernel version:
    Darwin Kernel Version 11.0.0: Sat Jun 18 12:56:35 PDT 2011; root:xnu-1699.22.73~1/RELEASE_X86_64
    Kernel UUID: 24CC17EB-30B0-3F6C-907F-1A9B2057AF78
    System model name: iMac11,3 (Mac-F2238BAE)
    System uptime in nanoseconds: 265853876036
    last loaded kext at 24377516298: com.apple.filesystems.msdosfs          1.7 (addr 0xffffff7f81e83000, size 57344)
    loaded kexts:
    com.apple.filesystems.msdosfs          1.7
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.driver.AppleBluetoothMultitouch          66.3
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyDriver          2.1.1f11
    com.apple.driver.AppleHDA          2.1.1f11
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.24
    com.apple.kext.ATIFramebuffer          7.0.2
    com.apple.ATIRadeonX3000          7.0.2
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.AGPM          100.12.40
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.0
    com.apple.driver.AirPort.Atheros21          430.14.9
    com.apple.driver.AirPort.Atheros40          500.55.5
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0b2
    com.apple.driver.AppleMuxControl          3.0.8
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.1.9
    com.apple.driver.AppleIRController          309
    com.apple.driver.AppleUSBCardReader          3.0.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          32
    com.apple.iokit.SCSITaskUserClient          3.0.0
    com.apple.iokit.IOAHCIBlockStorage          2.0.0
    com.apple.driver.AppleUSBHub          4.4.0
    com.apple.driver.AppleFWOHCI          4.8.6
    com.apple.iokit.AppleBCM5701Ethernet          3.0.6b9
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleAHCIPort          2.1.8
    com.apple.driver.AppleUSBEHCI          4.4.0
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleUSBUHCI          4.4.0
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          166.0.0
    com.apple.nke.applicationfirewall          3.0.30
    com.apple.security.quarantine          1
    com.apple.driver.AppleIntelCPUPowerManagement          166.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard          152.3
    com.apple.driver.AppleHIDKeyboard          152.3
    com.apple.driver.AppleMultitouchDriver          220.62
    com.apple.driver.IOBluetoothHIDDriver          2.5f17
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleHDAHardwareConfigDriver          2.1.1f11
    com.apple.driver.DspFuncLib          2.1.1f11
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.kext.ATI5000Controller          7.0.2
    com.apple.kext.ATISupport          7.0.2
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOBluetoothSerialManager          2.5f17
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOFireWireIP          2.2.3
    com.apple.iokit.IOAVBFamily          1.0.0d22
    com.apple.iokit.IOAudioFamily          1.8.3fc11
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.1.1f11
    com.apple.iokit.IOHDAFamily          2.1.1f11
    com.apple.iokit.IO80211Family          400.40
    com.apple.driver.AppleSMC          3.1.1d2
    com.apple.driver.IOPlatformPluginFamily          4.7.0b2
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleGraphicsControl          3.0.8
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.iokit.IONDRVSupport          2.3
    com.apple.iokit.IOGraphicsFamily          2.3
    com.apple.driver.AppleFileSystemDriver          13
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.5f17
    com.apple.driver.AppleUSBBluetoothHCIController          2.5f17
    com.apple.iokit.IOBluetoothFamily          2.5f17
    com.apple.iokit.IOUSBHIDDriver          4.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.0
    com.apple.iokit.IOUSBMassStorageClass          3.0.0
    com.apple.driver.AppleUSBMergeNub          4.4.0
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.0
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.driver.XsanFilter          403
    com.apple.iokit.IOAHCISerialATAPI          2.0.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.0
    com.apple.iokit.IOFireWireFamily          4.4.3
    com.apple.iokit.IOUSBUserClient          4.4.0
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.0
    com.apple.iokit.IOUSBFamily          4.4.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          165
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          326
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.4
    Model: iMac11,3, BootROM IM112.0057.B00, 4 processors, Intel Core i7, 2.93 GHz, 8 GB, SMC 1.59f2
    Graphics: ATI Radeon HD 5750, ATI Radeon HD 5750, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54313235533654465238432D48392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x0702, 0x32353636344D313333490000000000000000
    Memory Module: BANK 0/DIMM1, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54313235533654465238432D48392020
    Memory Module: BANK 1/DIMM1, 2 GB, DDR3, 1333 MHz, 0x0702, 0x32353636344D313333490000000000000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.55.4-P2P
    Bluetooth: Version 2.5.0f17, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST31000528AS, 1 TB
    Serial ATA Device: HL-DT-STDVDRW  GA32N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa120000 / 4
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 5
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

    Serious? Man , i have only just got it back! its had a new logic board fitted and also a new led display board and its only 5 months old!
    I really don't want to take this back if its something simple, but if you guys think something is not right then i will.
    issues are intermit freezing when just surfing the net ( hard reset needed )
    And also now these intermit kernel panics for no reason, again just surfing the net. ( hard reset needed )
    Apple are lucky i have a sense of humour!

Maybe you are looking for

  • How to set the default text in an input box or a label to be a predefine, multiline text

    how to set the default text in an input box or a label to be a predefine, multiline text. In other words how to break the line in the code of a text box. thank you

  • Users moved out of POWL but still it is running and consume memory.

    We are on SRM6.0 and we have issues with POWL session close. Some users runs POWL w/o any selection which inturns run the POWL forever. While users logoff from the system but still the POWL is running in system and consume lots of memory in system. I

  • Currency field in Invoice Smartform

    Hi all, I am printing the invoice amount field in the customized LB_BIL_INVOICE smart form in a particular window, but there are blank spaces getting printed before the amount value. I have tried moving the value into a variable too, it doesn't work

  • DIGITAL PERFORMER MOTU 5.13 CRASH

    SINCE INSTALLING 10.6 SNOW LEP, DIGITAL PERFORMER 5.13 CRASHES BOTH WITH ROSETTA ON AND OFF MOTU WANTS $195 TO UPGRADE TO 6.XX AND DOES NOT SUPPORT 5.13 ON SNOW ARE THERE ANY WORK AROUNDS AND DOES ANYONE ELSE HAVE THIS PROBLEM BY THE WAY MY OLD 828 W

  • Update terminated while doing KP26

    hello, friends. while doing KP26, the system terminated update with the following info (from ST22): runtime error SAPSQL_ARRAY_INSERT_DUPREC exceptions CX_SY_OPEN SQLDB could anyone tell me why we are having this error?  does this have something to d