Can someone pls help me with this code

The method createScreen() creates the first screen wherein the user makes a selection if he wants all the data ,in a range or single data.The problem comes in when the user makes a selection of single.that then displays the singleScreen() method.Then the user has to input a key data like date or invoice no on the basis of which all the information for that set of data is selected.Now if the user inputs a wrong key that does not exist for the first time the program says invalid entry of data,after u click ok on the option pane it prompts him to enter the data again.But since then whenever the user inputs wrong data the program says wrong data but after displaying the singlescreen again does not wait for input from the user it again flashes the option pane with the invalid entry message.and this goes on doubling everytime the user inputs wrong data.the second wrong entry of data flashes the error message twice,the third wrong entry flashes the option pane message 4 times and so on.What actually happens is it does not wait at the singlescreen() for user to input data ,it straight goes into displaying the JOptionPane message for wrong data entry so we have to click the optiion pane twice,four times and so on.
Can someone pls help me with this!!!!!!!!!
import java.util.*;
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
import java.text.*;
import java.util.*;
public class MainMenu extends JFrame implements ActionListener,ItemListener{
//class     
     FileReaderDemo1 fd=new FileReaderDemo1();
     FileReaderDemo1 fr;
     Swing1Win sw;
//primary
     int monthkey=1,counter=0;
     boolean flag=false,splitflag=false;
     String selection,monthselection,dateselection="01",yearselection="00",s,searchcriteria="By Date",datekey,smonthkey,invoiceno;
//arrays
     String singlesearcharray[];
     String[] monthlist={"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec"};
     String[] datelist=new String[31];
     String[] yearlist=new String[100];
     String[] searchlist={"By Date","By Invoiceno"};
//collection
     Hashtable allinvoicesdata=new Hashtable();
     Vector data=new Vector();
     Enumeration keydata;
//components
     JButton next=new JButton("NEXT>>");
     JComboBox month,date,year,search;
     JLabel bydate,byinvno,trial;
     JTextField yeartext,invtext;
     JPanel panel1,panel2,panel3,panel4;
     JRadioButton single,range,all;
     ButtonGroup group;
     JButton select=new JButton("SELECT");
//frame and layout declarations
     JFrame jf;
     Container con;
     GridBagLayout gridbag=new GridBagLayout();
     GridBagConstraints gc=new GridBagConstraints();
//constructor
     MainMenu(){
          jf=new JFrame();
          con=getContentPane();
          con.setLayout(null);
          fr=new FileReaderDemo1();
          createScreen();
          setSize(500,250);
          setLocation(250,250);
          setVisible(true);
//This is thefirst screen displayed
     public void createScreen(){
          group=new ButtonGroup();
          single=new JRadioButton("SINGLE");
          range=new JRadioButton("RANGE");
          all=new JRadioButton("ALL");
          search=new JComboBox(searchlist);
          group.add(single);
          group.add(range);
          group.add(all);
          single.setBounds(100,50,100,20);
          search.setBounds(200,50,100,20);
          range.setBounds(100,90,100,20);
          all.setBounds(100,130,100,20);
          select.setBounds(200,200,100,20);
          con.add(single);
          con.add(search);
          con.add(range);
          con.add(all);
          con.add(select);
          search.setEnabled(false);
          single.addItemListener(this);
          search.addActionListener(new MyActionListener());     
          range.addItemListener(this);
          all.addItemListener(this);
          select.addActionListener(this);
     public class MyActionListener implements ActionListener{
          public void actionPerformed(ActionEvent a){
               JComboBox cb=(JComboBox)a.getSource();
               if(a.getSource().equals(month))
                    monthkey=((cb.getSelectedIndex())+1);
               if(a.getSource().equals(date)){
                    dateselection=(String)cb.getSelectedItem();
               if(a.getSource().equals(year))
                    yearselection=(String)cb.getSelectedItem();
               if(a.getSource().equals(search)){
                    searchcriteria=(String)cb.getSelectedItem();
     public void itemStateChanged(ItemEvent ie){
          if(ie.getItem()==single){
               selection="single";     
               search.setEnabled(true);
          else if (ie.getItem()==all){
               selection="all";
               search.setEnabled(false);
          else if (ie.getItem()==range){
               search.setEnabled(false);
     public void actionPerformed(ActionEvent ae){          
          if(ae.getSource().equals(select))
                    if(selection.equals("single")){
                         singleScreen();
                    if(selection.equals("all"))
                         sw=new Swing1Win();
          if(ae.getSource().equals(next)){
               if(monthkey<9)
                    smonthkey="0"+monthkey;
               System.out.println(smonthkey+"/"+dateselection+"/"+yearselection+"it prints this");
               allinvoicesdata=fr.read(searchcriteria);
               if (searchcriteria.equals("By Date")){
                    System.out.println("it goes in this");
                    singleinvoice(smonthkey+"/"+dateselection+"/"+yearselection);
               else if (searchcriteria.equals("By Invoiceno")){
                    invoiceno=invtext.getText();
                    singleinvoice(invoiceno);
               if (flag == false){
                    System.out.println("flag is false");
                    singleScreen();
               else{
               System.out.println("its in here");
               singlesearcharray=new String[data.size()];
               data.copyInto(singlesearcharray);
               sw=new Swing1Win(singlesearcharray);
     public void singleinvoice(String searchdata){
          keydata=allinvoicesdata.keys();
          while(keydata.hasMoreElements()){
                    s=(String)keydata.nextElement();
                    if(s.equals(searchdata)){
                         System.out.println(s);
                         flag=true;
                         break;
          if (flag==true){
               System.out.println("vector found");
               System.exit(0);
               data= ((Vector)(allinvoicesdata.get(s)));
          else{
               JOptionPane.showMessageDialog(jf,"Invalid entry of date : choose again");     
     public void singleScreen(){
          System.out.println("its at the start");
          con.removeAll();
          SwingUtilities.updateComponentTreeUI(con);
          con.setLayout(null);
          counter=0;
          panel2=new JPanel(gridbag);
          bydate=new JLabel("By Date : ");
          byinvno=new JLabel("By Invoice No : ");
          dateComboBox();
          invtext=new JTextField(6);
          gc.gridx=0;
          gc.gridy=0;
          gc.gridwidth=1;
          gridbag.setConstraints(month,gc);
          panel2.add(month);
          gc.gridx=1;
          gc.gridy=0;
          gridbag.setConstraints(date,gc);
          panel2.add(date);
          gc.gridx=2;
          gc.gridy=0;
          gc.gridwidth=1;
          gridbag.setConstraints(year,gc);
          panel2.add(year);
          bydate.setBounds(100,30,60,20);
          con.add(bydate);
          panel2.setBounds(170,30,200,30);
          con.add(panel2);
          byinvno.setBounds(100,70,100,20);
          invtext.setBounds(200,70,50,20);
          con.add(byinvno);
          con.add(invtext);
          next.setBounds(300,200,100,20);
          con.add(next);
          if (searchcriteria.equals("By Invoiceno")){
               month.setEnabled(false);
               date.setEnabled(false);
               year.setEnabled(false);
          else if(searchcriteria.equals("By Date")){
               byinvno.setEnabled(false);
               invtext.setEnabled(false);
          monthkey=1;
          dateselection="01";
          yearselection="00";
          month.addActionListener(new MyActionListener());
          date.addActionListener(new MyActionListener());
          year.addActionListener(new MyActionListener());
          next.addActionListener(this);
          invtext.addKeyListener(new KeyAdapter(){
               public void keyTyped(KeyEvent ke){
                    char c=ke.getKeyChar();
                    if ((c == KeyEvent.VK_BACK_SPACE) ||(c == KeyEvent.VK_DELETE)){
                         System.out.println(counter+"before");
                         counter--;               
                         System.out.println(counter+"after");
                    else
                         counter++;
                    if(counter>6){
                         System.out.println(counter);
                         counter--;
                         ke.consume();
                    else                    
                    if(!((Character.isDigit(c) || (c == KeyEvent.VK_BACK_SPACE) || (c == KeyEvent.VK_DELETE)))){
                         getToolkit().beep();
                         counter--;     
                         JOptionPane.showMessageDialog(null,"please enter numerical value");
                         ke.consume();
          System.out.println("its at the end");
     public void dateComboBox(){          
          for (int counter=0,day=01;day<=31;counter++,day++)
               if(day<=9)
                    datelist[counter]="0"+String.valueOf(day);
               else
                    datelist[counter]=String.valueOf(day);
          for(int counter=0,yr=00;yr<=99;yr++,counter++)
               if(yr<=9)
                    yearlist[counter]="0"+String.valueOf(yr);
               else
                    yearlist[counter]=String.valueOf(yr);
          month=new JComboBox(monthlist);
          date=new JComboBox(datelist);
          year=new JComboBox(yearlist);
     public static void main(String[] args){
          MainMenu mm=new MainMenu();
     public class WindowHandler extends WindowAdapter{
          public void windowClosing(WindowEvent we){
               jf.dispose();
               System.exit(0);
}     

Hi,
I had a similar problem with a message dialog. Don't know if it is a bug, I was in a hurry and had no time to search the bug database... I found a solution by using keyPressed() and keyReleased() instead of keyTyped():
   private boolean pressed = false;
   public void keyPressed(KeyEvent e) {
      pressed = true;
   public void keyReleased(KeyEvent e) {
      if (!pressed) {
         e.consume();
         return;
      // Here you can test whatever key you want
   //...I don't know if it will help you, but it worked for me.
Regards.

Similar Messages

  • Can someone pls help me with java on my macbook pro because after i download the mountain lion java has died and i need java to see streaming quotes from stock market

    can someone pls help me with java on my macbook pro because after i download the mountain lion java has died and i need java to see streaming quotes from stock market

    Java is no longer included in Mac OS X by default. If you want Java, you will have to install it.
    However, note that you should think twice before installing Java for such a trivial need as looking at stock market quotes. There are other ways to get that information that don't involve Java, and using Java in your web browser is a HUGE security risk right now. Java has been vulnerable to attack almost constantly for the last year, and has become a very popular, frequently used method for getting malware installed via "drive-by downloads." You really, truly don't want to be using it. See:
    Java is vulnerable… Again?!
    http://java-0day.com

  • Can someone pls help me with setting up an apple id.Whats the itunes gift code?

    Hi,
    I have recently purchased an iphone 5S. I am not able to use my apple ID in app store as it states you have to reveiw it in itunes before you proceed.When i review it, it asks for my credit card details.Thats fine.However I am not able to get itunes gift code.Can someone help me with this.Thanks

    Hi,
    I have recently purchased an iphone 5S. I am not able to use my apple ID in app store as it states you have to reveiw it in itunes before you proceed.When i review it, it asks for my credit card details.Thats fine.However I am not able to get itunes gift code.Can someone help me with this.Thanks

  • Can someone please help me with this. Loading problems and error codes.

    I have several problems with itunes on my PC. I use 2 PC's and Iphone for work and I have an IPod nano. For about a week I have been having several problems with Itunes. The first problem is I cannot access the store, I get the loading screen and that is it. This screen lasts forever, nothing ever happens it just loads, and loads, and loads. . . .
    I try to sign in thinking that will help the loading issue and I get error message saying "We could not complete your itunes store request. An unknown error occurred (-50)." This happens on both computers. I also cannot download from my iphone, I get the same error message. Running diagnostics does nothing, itunes says everything is in working order. Uninstalling and reinstalling also does nothing. I have had itunes for years now and up until about 10 days ago had no problems. My itunes is not behind a firewall on either computer. I'm saying all of this because I would prefer not to get obvious answers or links that do not help me. Please someone has to know how to fix this.

    Welcome to discussions! This is the rather infamous chkdsk error which will require that you restore your iPod. The following link will give you a complete explanation/instructions.
    http://docs.info.apple.com/article.html?artnum=300554

  • Unable to Intialize HDV deck - can anyone pls help me with this FCE Issue?

    I have recently moved from a MacBook Pro (circa 2 yrs old) to a new MacBook Pro with the NEW firewire 800 port. I have bought a new firewire cable and my camera does not want to be capture from my Sony A1E.
    I have a MacBook Pro 2.8ghz running on OS X 10.6.2 and have all the updates installed for FCE.
    Every time i try to capture the message comes up "Unable to Intialize HDV deck. Please make sure a deck is connected and try again".
    The System is set up to receive the correct frame rate footage and type of footage (which is: HDV-Apple Intermediate Codec 1080i50. Formats: All formats). I am running on PAL, so 25fps.
    Is there any advice / direction that you could give me at all as I am struggling!
    Any help support would be appreciated!
    Thanks, Martin

    Hi,
    Would you confirm that you are using a 9-pin to 4-pin FW cable to connect to your camcorder and that your camcorder is the only FW device connected to your Mac.
    When you start up FCE with the camera connected to your Mac and already powered on in VTR mode, does FCE 'see' the camera, or do you get a warning message that FCE is "Unable to locate the following external devices ..." ?

  • HT203167 I purchased several songs and the music will download to my home computer and laptop but will not sync into my ipod...can someone please help me with this issue

    My purchased songs aren't lost the computer is not giving the option to put the newly purchased music into the ipod.

    How do you do what? Plug the iPhone into a USB port directly on your computer, or disconnect other USB devices? To disconnect a USB device unplug it from the computer. If it is a disk drive eject it first using the Eject icon in the System Tray. To plug the iPhone into a USB port directly on the computer insert the USB end of the sync cable into a USB port on the computer.
    If you are using all of the ports on your computer get a hub and plug low power devices into the hub (e.g., keyboard, mouse). Or get a hub with its own power supply and plug your high power devices (disk drives, DVD drive) into it.

  • My MacBook Pro iTunes movie purchase is not showing in iTunes store movie purchases nor does it show on my iPad or Apple TV.  Can someone please help me with a solution?  Thanks.

      First of all, I live in Ho Chi Minh City, Vietnam. Sometimes, I use a VPN to search on the web here. I purchased Toy Story 3 on my MacBook Pro 2011 OS/X - Lion through iTunes.  I initially had trouble downloading it which may be due to being on and off the VPN but after a while it finally downloaded and shows up in my iTunes library on my MacBook. 
      Under my Apple ID account (which is the only Apple ID account I have), I look under purchase history and it shows that I paid for Toy Story which is where I got my Order # from.  But if you go to the iTunes Store then to the Quick Links then click on Purchased, under all my Movies, it does NOT show Toy Story 3 as one of my movies.
      Now when I go to my iPad (3rd gen.), Toy Story 3 does not show up under purchased movies (all or not on my iPad).  It does not show up on my Apple TV as well.  If I want to have Toy Story 3 on my iPad or Apple TV, then it says I have to purchase it again.
      I have searched for help via Apple support communities but so far none of their solutions have worked for me.  I have tried logging off iTunes & App Store on iPad and also shutting down the iPad.  I also made sure that under iTunes Preferences>Store that iTunes in the Clouds purchases is checked. Can someone please help me with this?  Your consideration is greatly appreciated.  Thanks.

    Thanks King_Penguin for taking time to read and reply. 
    I just purchased this movie on Thursday, May 15, so just a few days ago.  I have never had any trouble whatsoever since I have been in Vietnam.  I have downloaded several movies and even music and they have all synced to my respected Apple products except for this purchase. 
    Sorry, I don't quite understand what you mean by studios and different versions.  Could you please explain? 
    I checked my purchased list in my purchase history under my account and there are no hidden items. 

  • Can somebody help me with this code?

    Can anyone help me with this code? My problem is that i can't
    seem to position this form, i want to be able to center it
    vertically & horizontally in a div either using CSS or any
    other means.
    <div id="searchbar"><!--Search Bar -->
    <div id="searchcart">
    <div class="serchcartcont">
    <form action='
    http://www.romancart.com/search.asp'
    name="engine" target=searchwin id="engine">
    <input type=hidden value=????? name=storeid>
    <input type=text value='' name=searchterm>
    <input type=submit value='Go'> </form>
    </div>
    </div>
    <div class="searchcont">Search For
    Products:</div>
    </div><!-- End Search Bar -->
    Pleasssssseeeeeeee Help
    Thanks

    Hi,
    Your form is defined in a div named "serchcartcont", you can
    use attributes like position and align of the div to do what you
    want to do. But there are two more dives above this dive, you will
    have define the height width of these before you can center align
    the inner most div. If you are not defining the height & width
    then by default it decide it automatically to just fit the content
    in it.
    Hope this helps.
    Maneet
    LeXolution IT Services
    Web Development
    Company

  • I brought a iTunes card and the the code on the back is not there it has faded away can u please help me with this problem

    i brought a iTunes card and the the code on the back is not there it has faded away can u please help me with this problem

    Hi Daniel ...
    Try here > iTunes Store: Invalid, inactive, or illegible codes

  • Hi guys can someone pls help! im gg crazy...

    Hi guys can someone pls help! im gg crazy... im doing this java prograamming project and cant seem to work the Search function. My program compiles well and runs, but after i key in the details for "Add new customer" , and i attempt to search the customer name that i keyed in, the program does not return my input! My teacher says its something to do with assigning an array length or something but how do i code that.... Heres the code, pls try to help..
    import java.io.*;
    public class shop
    static String Name, Address,Gender,Country,Pdtname,Type,Dob,
    Hometel,Mobile,Purchase,ID,Cost,Quantity,Introdate;
    static int x;
    public static void main(String[] args) throws Exception
    char choice;
    do{
    System.out.println("MAIN MENU");
    System.out.println("(1). Add New Customer");
    System.out.println("(2). Search Customer");
    System.out.println("(6). Quit");
    System.out.print("Pls. enter a choice :");
    choice = Character.toUpperCase((char)System.in.read());
    System.in.read();
    System.in.read();
    switch(choice)
         case '1':Add();
         break;
         case '2':Search();
         break;
         case '6':Quit();
         break;
         default:System.out.println("- Sorry, You have entered an invalid option, please try again -");
    }while(choice != '6');
    public static void Add()throws Exception
         BufferedReader data=new BufferedReader
         (new InputStreamReader(System.in));
    String Name, Dob, Hometel, Mobile, Country, Purchase;
    boolean valid;
    int x;
    valid=true;
         do
         System.out.print("Please enter Customer's Name:");
         Name=data.readLine();
         if (Name.equals(""))
         System.out.println("Name must not be empty");
         else
         for (x=0; x<Name.length();x++)
         if(!(Character.isLetter(Name.charAt(x))) && Name.charAt(x) !=' ')
         System.out.println("Please enter letters only[A-Z] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Name.equals(""));
         do{
         System.out.print("Please enter Customer's Address:");
         Address=data.readLine();
         if (Address.equals(""))
         System.out.println("Address must not be empty");
         }while (Address.equals(""));
         do{
         System.out.print("Please enter Customer's Gender (M/F):");
         Gender=data.readLine();
         if (!Gender.equalsIgnoreCase("M") && !Gender.equalsIgnoreCase("F"))
         System.out.println("Please input either M or F");
         else
         if (Gender.equals(""))
         System.out.println("Gender must not be empty");
         }while (!Gender.equalsIgnoreCase("M") && !Gender.equalsIgnoreCase("F") || Gender.equals(""));
         do
         System.out.print("Please enter Customer's Date of Birth (dd/mm/yyyy):");
         Dob=data.readLine();
         if (Dob.equals(""))
         System.out.println("Dob must not be empty");
         else
         for (x=0; x<Dob.length();x++)
         if(!(Character.isDigit(Dob.charAt(x))) && Dob.charAt(x) !='/')
         System.out.println("Please enter only numbers in dd/mm/yyyy format");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Dob.equals(""));
         do
         System.out.print("Please enter Customer's Contact no(Home):");
         Hometel=data.readLine();
         if (Hometel.equals(""))
         System.out.println("Home number must not be empty");
         else
         for (x=0; x<Hometel.length();x++)
         if(!(Character.isDigit(Hometel.charAt(x))) && Hometel.charAt(x) !=' ')
         System.out.println("Please enter numbers only [0-9] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Hometel.equals(""));
         do
         System.out.print("Please enter Customer's Contact no(Mobile):");
         Mobile=data.readLine();
         if (Mobile.equals(""))
         System.out.println("Mobile number must not be empty");
         else
         for (x=0; x<Mobile.length();x++)
         if(!(Character.isDigit(Mobile.charAt(x))) && Mobile.charAt(x) !=' ')
         System.out.println("Please enter numbers only [0-9] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Mobile.equals(""));
         do
         System.out.print("Please enter Customer's Country:");
         Country=data.readLine();
         if (Country.equals(""))
         System.out.println("Country must not be empty");
         else
         for (x=0; x<Country.length();x++)
         if(!(Character.isLetter(Country.charAt(x))) && Country.charAt(x) !=' ')
         System.out.println("Please enter letters only[A-Z] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Country.equals(""));
    public static void Search()throws Exception
         BufferedReader data=new BufferedReader
         (new InputStreamReader(System.in));
         String target;
         boolean found;
         found=false;          //record not found
         System.out.print("Enter the name that you want to search:");
         target=data.readLine();
         if (target.equalsIgnoreCase(Name))
         System.out.println("The customer's name is "+Name);
         System.out.println("The customer's address is "+Address);
         System.out.println("The customer's gender is "+Gender);
         System.out.println("The customer's date of birth is "+Dob);
         System.out.println("The customer's home contact number is "+Hometel);
         System.out.println("The customer's mobile number is "+Mobile);
         System.out.println("The customer's Country is "+Country);
         System.out.println("Record found");
         found=true;               //record found
         if (found==false)
         System.out.println("Record not found");
         public static void Quit()
         System.out.println("Thank You For Using Database Application System Designed For Crystalodge Gift Shop");
    }

    Thank you for your interest in just plopping down your code and asking for someone to just fix it for you. We'll get right on it...

  • HT1212 The problem is that my iphone isnt connected/synced to iTunes and i've forgotten my password so iTunes isnt connected either so can someone pls help me?

    The problem is that my iphone isnt connected/synced to iTunes and i've forgotten my password so iTunes isnt connected either so can someone pls help me?
    PLEASE HELP ME

    Hi Someonewashere,
    In the article you were coming from, there is actually a section regarding what to do if you have never synced to iTunes before:
    If you have never synced your device with iTunes, or you do not have access to a computer
    If you see one of following alerts, you need to erase the device:
    "iTunes could not connect to the [device] because it is locked with a passcode. You must enter your passcode on the [device] before it can be used with iTunes."
    "You haven't chosen to have [device] trust this computer"
    If you have Find My iPhone enabled, you can use Remote Wipe to erase the contents of your device. If you have been using iCloud to back up, you may be able to restore the most recent backup to reset the passcode after the device has been erased.
    Alternatively, place the device in recovery mode and restore it to erase the device:
    Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to shut down.
    While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    Continue holding the Home button until you see the Connect to iTunes screen.
    iTunes will alert you that it has detected a device in recovery mode. Click OK, and then restore the device.
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/HT1212
    Regards,
    - Brenden

  • Hi! I have an iPhone 4s and when I FaceTime the sound is really low. When I phone call someone, its totally different and works better. I also have a MacBok Pro and the FaceTime sound works perfectly there as well. Can someone pls help me? Thanks :)

    Hi! I have an iPhone 4s and when I FaceTime the sound is really low. It´s really annoying. When I do phone calls it works, and on my MacBook Pro it works much better on FaceTime than on my phone. Can someone pls help to so solute this? Really need help! Thanks

    This sounds like something similar to https://discussions.apple.com/thread/3388112?start=105&tstart=0.
    Try turning down the speak volume (System Preferences->Sound->Output->Output Volume)  or the microphone gain (System Preferences->Sound->Input->Input Volume). Do this on both sides of the call.

  • When attempting to start iTunes, I get the following: "The iTunes library file cannot be saved. An unknown error occurred (-50)." Can someone please help me get this fixed?

    When attempting to start iTunes, I get the following: "The iTunes library file cannot be saved. An unknown error occurred (-50)." Can someone please help me get this fixed?

    Same problem here since latest update.  As usual poor support from Apple with no answer or fix for this bug.

  • My safari keeps closing unexpectedly and when it does it tells me that it quite while using the .GameHouseBeachParty.so plugin. I have no idea what this means! Can someone please help me fix this?

    My safari keeps closing unexpectedly and when it does it tells me that it quite while using the .GameHouseBeachParty.so plugin. I have no idea what this means! Can someone please help me fix this?

    You have the Flashback trojan.
    Check out the replies in this thread for what to do;
    https://discussions.apple.com/message/18114958#18114958

  • HT204302 i get a message when I plug in my ipod to my laptop saying "cannot use this ipod because apple mobile device is not started" can any one help me with this...I have never had this happen before

    Hello anyone
    I get a message when i plug in my ipod touch saying "cannot use this ipod because apple mobile service is not started" can anyone please help me with this problem...I had this message once before but I forgot how to correct it

    From the More Like This section on the right:
    I get error message when I plug in iPhone 4s saying "This iPhone cannot be used because the Apple Mobile Device service is not started"
    can't get my ipod to connect to tunes error message "cannot be used because the apple mobile device service is not started"  fixes? Using Win XP
    im trying to connect my ipod to itunes and its saying it cannot connect because the "Apple Mobile Device is not started" help
    Or see: iPhone, iPad, iPod touch: How to restart the Apple Mobile Device Service (AMDS) on Windows

Maybe you are looking for