Can somebody explain the error when i try to delete something off my Jlist?

type String name, password, phone and int currently salary and desired salary.
press the add button.
then click on the name and pres delete. theres a huge error on the command prompt. could some1 tell me how to solve it?
here are the codes:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.text.*;
import java.util.*;
import java.util.Vector;
import javax.swing.JScrollPane.*;
import javax.swing.event.ListSelectionListener;
public class Employment extends JFrame
        //declare class variables
        private JPanel jpApplicant, jpEverything,jpWEST, jpCENTRE, jpEAST, jpAddEditDelete,
                                   jpCentreTOP, jpCentreBOT, jpEastTOP, jpEastCENTRE, jpEastBOT,
                                   jpBlank1, panel1, panel2, panel3, panel4,jpBottomArea,
                                   jpEmptyPanelForDisplayPurposes;
        private JLabel jlblApplicantForm, jlblAppList, jlblName, jlblPhone,
                                   jlblCurrentSalary, jlblPassword, jlblDesiredSalary,
                                   jlblNotes, jlblApplicantSkills, jlblIndustrySkills,
                                   jlblBlank1, jlblBlank2, ApplicantListLabel,
                                   NotesListLabel, ApplicantSkillsLabel,
                                   IndustrySkillsLabel,jlblEmptyLabelForDisplayPurposes;  
        private JButton jbtnAdd1, jbtnEdit, jbtnDelete, jbtnSave, jbtnCancel,
                                        jbtnAdd2, jbtnRemove;
        private JTextField jtfName, jtfPhone, jtfCurrentSalary, jtfPassword,
                                           jtfDesiredSalary;
  private JTabbedPane tabbedPane;
        //private DefaultListModel listModel2;
  String name,password,phone,currentsalary,desiredsalary,textareastuff,allthetext;
  String selectedname;
        final JTextArea Noteslist= new JTextArea();
        DefaultListModel listModel = new DefaultListModel();
        JList ApplicantSkillsList = new JList(listModel);
        DefaultListModel listModel2=new DefaultListModel();
  JList ApplicantList = new JList(listModel2);
       private ListSelectionModel listSelectionModel;
        JList  IndustrySkillsList;
              Vector<StoringData> details = new Vector<StoringData>();             
            public static void main(String []args)
                Employment f = new Employment();
                f.setVisible(true);
                f.setDefaultCloseOperation(EXIT_ON_CLOSE);
                f.setResizable(false);
            }//end of main
                public Employment()
                        setSize(800,480);
                        setTitle("E-commerce Placement Agency");
      Font listfonts = new Font("TimesRoman", Font.BOLD, 12);
                        JPanel topPanel = new JPanel();
                        topPanel.setLayout( new BorderLayout() );
                        getContentPane().add( topPanel );
                        createPage1();
                        createPage2();
                        createPage3();
                        createPage4();
                        tabbedPane = new JTabbedPane();
                        tabbedPane.addTab( "Applicant", panel1 );
                        tabbedPane.addTab( "Job Order", panel2 );
                        tabbedPane.addTab( "Skill", panel3 );
                        tabbedPane.addTab( "Company", panel4 );
                        topPanel.add( tabbedPane, BorderLayout.CENTER );
        public void createPage1()//PAGE 1
         /*******************TOP PART********************/
                        panel1 = new JPanel();
                        panel1.setLayout( new BorderLayout());
      jpBottomArea = new JPanel();
      jpBottomArea.setLayout(new BorderLayout());
                        jpApplicant= new JPanel();
                        jpApplicant.setLayout(new BorderLayout());
                        Font bigFont = new Font("TimesRoman", Font.BOLD,24);
                        jpApplicant.setBackground(Color.lightGray);
                        jlblApplicantForm = new JLabel("\t\t\t\tAPPLICANT FORM  ");
                        jlblApplicantForm.setFont(bigFont);
                        jpApplicant.add(jlblApplicantForm,BorderLayout.EAST);
                        panel1.add(jpApplicant,BorderLayout.NORTH);
                        panel1.add(jpBottomArea,BorderLayout.CENTER);
       /********************************EMPTY PANEL FOR DISPLAY PURPOSES*************************/
           jpEmptyPanelForDisplayPurposes = new JPanel();
           jlblEmptyLabelForDisplayPurposes = new JLabel(" ");
           jpEmptyPanelForDisplayPurposes.add(jlblEmptyLabelForDisplayPurposes);
           jpBottomArea.add(jpEmptyPanelForDisplayPurposes,BorderLayout.NORTH);
       /*****************************************WEST*********************************/             
                        jpWEST = new JPanel();                 
                        jpWEST.setLayout( new BorderLayout());
                        //Applicant List
     // listModel2=new DefaultListModel();
     // ApplicantList = new JList(listModel2);
            listSelectionModel = ApplicantList.getSelectionModel();
            listSelectionModel.addListSelectionListener(new SharedListSelectionHandler());
            JScrollPane scrollPane3 = new JScrollPane(ApplicantList);
      ApplicantList.setPreferredSize(new Dimension(20,40));
         scrollPane3.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);        
                        scrollPane3.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
                        ApplicantListLabel = new JLabel( "Applicant List:");
                        jpWEST.add(ApplicantListLabel,"North"); 
                        jpWEST.add(scrollPane3,"Center");
                        jpBottomArea.add(jpWEST,BorderLayout.WEST);
                        /*********CENTRE*********/
                        jpCENTRE = new JPanel();
                        jpCENTRE.setLayout(new GridLayout(2,1));
                        jpCentreTOP = new JPanel();
                        jpBottomArea.add(jpCENTRE,BorderLayout.CENTER);
                        jpCENTRE.add(jpCentreTOP);
                        jpCentreTOP.setLayout(new GridLayout(6,2));
                      //Creating labels and textfields
                        jlblName = new JLabel( "Name:");
                        jlblBlank1 = new JLabel ("");
                        jtfName = new JTextField(18);
                        jlblBlank2 = new JLabel("");
                        jlblPhone = new JLabel("Phone:");
                        jlblCurrentSalary = new JLabel("Current Salary:");
                        jtfPhone = new JTextField(13);
                        jtfCurrentSalary = new JTextField(7);
                        jlblPassword = new JLabel("Password:");
                        jlblDesiredSalary = new JLabel("Desired Salary:");
                        jtfPassword = new JTextField(13);
                        jtfDesiredSalary = new JTextField(6);
                      //Add labels and textfields to panel
                        jpCentreTOP.add(jlblName);
                        jpCentreTOP.add(jlblBlank1);
                        jpCentreTOP.add(jtfName);
                        jpCentreTOP.add(jlblBlank2);
                        jpCentreTOP.add(jlblPhone);
                        jpCentreTOP.add(jlblCurrentSalary);
                        jpCentreTOP.add(jtfPhone);
                        jpCentreTOP.add(jtfCurrentSalary);
                        jpCentreTOP.add(jlblPassword);
                        jpCentreTOP.add(jlblDesiredSalary);
                        jpCentreTOP.add(jtfPassword);
                        jpCentreTOP.add(jtfDesiredSalary);
                        //Noteslist
                        jpCentreBOT = new JPanel();
                        jpCentreBOT.setLayout( new BorderLayout());
                        jpCENTRE.add(jpCentreBOT);
                        jpBlank1 = new JPanel();
     // Noteslist = new JTextArea(/*Document doc*/);
                        JScrollPane scroll3=new JScrollPane(Noteslist);
                        scroll3.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);        
                        scroll3.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
                        NotesListLabel = new JLabel( "Notes:");
                        jpCentreBOT.add(NotesListLabel,"North"); 
                        jpCentreBOT.add(scroll3,"Center");
                        jpCentreBOT.add(jpBlank1,"South");
                        jpBottomArea.add(jpCENTRE,BorderLayout.CENTER);
                        /**********EAST**********/
                        //Applicant Skills Panel
                        //EAST ==> TOP
                        jpEAST = new JPanel();
                        jpEAST.setLayout( new BorderLayout());
                        jpEastTOP = new JPanel();
                        jpEastTOP.setLayout( new BorderLayout());
                        ApplicantSkillsLabel = new JLabel( "Applicant Skills");
                        JScrollPane scrollPane1 = new JScrollPane(ApplicantSkillsList);
                       scrollPane1.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);        
                      scrollPane1.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);        
                        ApplicantSkillsList.setVisibleRowCount(6);
                        jpEastTOP.add(ApplicantSkillsLabel,"North"); 
                        jpEastTOP.add(scrollPane1,"Center");
                        jpEAST.add(jpEastTOP,BorderLayout.NORTH);
                        jpBottomArea.add(jpEAST,BorderLayout.EAST);
                        //Add & Remove Buttons
                        //EAST ==> CENTRE
                        jpEastCENTRE = new JPanel();
                        jpEAST.add(jpEastCENTRE,BorderLayout.CENTER);
                        jbtnAdd2 = new JButton("Add");
                        jbtnRemove = new JButton("Remove");
                        //add buttons to panel
                        jpEastCENTRE.add(jbtnAdd2);
                        jpEastCENTRE.add(jbtnRemove);
                        //add listener to button
                       jbtnAdd2.addActionListener(new Add2Listener());
                       jbtnRemove.addActionListener(new RemoveListener());
                        //Industry Skills Panel
                        //EAST ==> BOTTOM
                        jpEastBOT = new JPanel();
                        jpEastBOT.setLayout( new BorderLayout());
                       String[] data = {"Access97", "Basic Programming",
                       "C++ Programming", "COBOL Programming",
                       "DB Design", "Fortran programming"};
                       IndustrySkillsList = new JList(data);
                       JScrollPane scrollPane = new JScrollPane(IndustrySkillsList);
                       scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);        
                       scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
                       IndustrySkillsLabel = new JLabel( "Industry Skills:");
                       jpEastBOT.add(IndustrySkillsLabel,"North"); 
                       jpEastBOT.add(scrollPane,"Center");
                       jpEAST.add(jpEastBOT,BorderLayout.SOUTH);
                        //BOTTOM
                        jpAddEditDelete= new JPanel();
                        jbtnAdd1=       new JButton("Add");
                        jbtnEdit=       new JButton("Edit");
                        jbtnDelete=     new JButton("Delete");
                        jbtnSave=       new JButton("Save");
                        jbtnCancel=     new JButton("Clear");
                        jpAddEditDelete.add(jbtnAdd1);
                        jpAddEditDelete.add(jbtnEdit);
                        jpAddEditDelete.add(jbtnDelete);
                        jpAddEditDelete.add(jbtnSave);
                        jpAddEditDelete.add(jbtnCancel);
                       jbtnEdit.addActionListener(new EditListener());
                       jbtnDelete.addActionListener(new DeleteListener());
                        jbtnEdit.addActionListener(new EditListener());
                        jbtnAdd1.addActionListener(new Add1Listener());
                        jbtnCancel.addActionListener(new CancelListener());
                        jpBottomArea.add(jpAddEditDelete,BorderLayout.SOUTH);
        public void createPage2()//PAGE 2
                panel2 = new JPanel();
                panel2.setLayout( new GridLayout(1,1) );
                panel2.add( new JLabel( "Sorry,under construction" ) );
        public void createPage3()//PAGE 3
                panel3 = new JPanel();
                panel3.setLayout( new GridLayout( 1, 1 ) );
                panel3.add( new JLabel( "Sorry,under construction" ) );
        public void createPage4()//PAGE 4
                panel4 = new JPanel();
                panel4.setLayout( new GridLayout( 1, 1 ) );
                panel4.add( new JLabel( "Sorry,under construction" ) );
        public class Add1Listener implements ActionListener
        public void actionPerformed(ActionEvent e)
               // int AppListSize;
                int listSize;
                ApplicantSkillsList.getModel();
       listSize =listModel.getSize();
        String[] skills= new String[5];
        for(int a=0; a<listSize;a++)
        skills[a] =(String)ApplicantSkillsList.getModel().getElementAt(a);
        System.out.println(skills[a]);
                name = jtfName.getText();
                password = jtfPassword.getText();
                phone = jtfPhone.getText();
                currentsalary = jtfCurrentSalary.getText();
                int i= Integer.parseInt(currentsalary);
                desiredsalary = jtfDesiredSalary.getText();
                int j= Integer.parseInt(desiredsalary);
       allthetext = Noteslist.getText();
       StoringData person = new StoringData(name,password,phone,allthetext,skills,i,j);
                details.add(person);
             // details.add(AppSkillsList);
                   listModel2.addElement(name);
                jtfName.setText("");
                jtfPassword.setText("");
                jtfPhone.setText("");
                jtfCurrentSalary.setText("");
                jtfDesiredSalary.setText("");
                Noteslist.setText("");
                   listModel.clear();
        public class Add2Listener implements ActionListener
                public void actionPerformed(ActionEvent e)
                       String temp1;
                       temp1 = (String)IndustrySkillsList.getSelectedValue();
                       listModel.addElement(temp1);
        public class RemoveListener implements ActionListener
                public void actionPerformed(ActionEvent e)
                        int index = ApplicantSkillsList.getSelectedIndex();
                    listModel.remove(index);
        public class EditListener implements ActionListener
                public void actionPerformed(ActionEvent e)
            jtfName.setEditable(true);
            jtfPassword.setEditable(true);
            jtfPhone.setEditable(true);
            jtfCurrentSalary.setEditable(true);
            jtfDesiredSalary.setEditable(true);
            Noteslist.setEditable(true);
            jbtnAdd2.setEnabled(true);  
            jbtnRemove.setEnabled(true);
            jbtnSave.setEnabled(true);
            jbtnCancel.setEnabled(true);                     
        public class DeleteListener implements ActionListener
         public void actionPerformed(ActionEvent e)
     int index = ApplicantList.getSelectedIndex();
                   listModel2.remove(index);
        public class SaveListener implements ActionListener
                public void actionPerformed(ActionEvent e)
                     selectedname =ApplicantList.getSelectedValue().toString();
                        StoringData selectedPerson = null;     
                    name = jtfName.getText();
                     password = jtfPassword.getText();
                     phone = jtfPhone.getText();
                     currentsalary = jtfCurrentSalary.getText();
                     int i= Integer.parseInt(currentsalary);
                     desiredsalary = jtfDesiredSalary.getText();
                     int j= Integer.parseInt(desiredsalary);
                          allthetext = Noteslist.getText();
                    for (StoringData person : details)
                          if (person.getName1().equals(selectedname))
                            selectedPerson = person;
                         //     changedname = person.getName1()
                         //     changedphone =
                         //     changedallthetext =
                         //     //changedcurrentsalary                      
                           //     person.setName1(jtfName.getText());
                           //     person.setPassword1(jtfPassword.getText()) ;
                           ////     person.setPhone1(phone);
                           //     person.setAllTheText(allthetext) ;
                           //     person.setCurrentSalary1(i);
                           //     person.setDesiredSalary1(j);
                       jtfName.setEditable(false);
                   jtfPassword.setEditable(false);
                   jtfPhone.setEditable(false);
                   jtfCurrentSalary.setEditable(false);
                   jtfDesiredSalary.setEditable(false);                         
                   Noteslist.setEditable(false);
        public class CancelListener implements ActionListener
                public void actionPerformed(ActionEvent e)
                jtfName.setText("");
                jtfPassword.setText("");
                jtfPhone.setText("");
                jtfCurrentSalary.setText("");
                jtfDesiredSalary.setText("");
                Noteslist.setText("");
                listModel.clear();
                   jtfName.setEditable(true);
                   jtfPassword.setEditable(true);
                   jtfPhone.setEditable(true);
                   jtfCurrentSalary.setEditable(true);
                   jtfDesiredSalary.setEditable(true);                         
                   Noteslist.setEditable(true);
                    jbtnAdd2.setEnabled(true);  
                   jbtnRemove.setEnabled(true);
        public class SharedListSelectionHandler implements ListSelectionListener
        public void valueChanged(ListSelectionEvent e)
         if(e.getValueIsAdjusting() == false){
         selectedname =ApplicantList.getSelectedValue().toString();
         StoringData selectedPerson = null;
         jtfName.setEditable(false);
         jtfPassword.setEditable(false);
         jtfPhone.setEditable(false);
         jtfCurrentSalary.setEditable(false);
         jtfDesiredSalary.setEditable(false);                         
         Noteslist.setEditable(false);
         jbtnAdd2.setEnabled(false);  
         jbtnRemove.setEnabled(false);
         jbtnSave.setEnabled(false);
         jbtnCancel.setEnabled(true);
           jtfName.setText("");
           jtfPassword.setText("");
           jtfPhone.setText("");
           jtfCurrentSalary.setText("");
           jtfDesiredSalary.setText("");
   for (StoringData person : details)
      if (person.getName1().equals(selectedname))
                     selectedPerson = person;
                     jtfName.setText(person.getName1());
                     jtfPassword.setText(person.getPassword1());
                  jtfPhone.setText(person.getPhone1());
                  Noteslist.setText(person.getAllTheText1());
                 // String sal1 = Integer.parseString(currentsalary);
                // String sal2 = Integer.parseString(desiredsalary);
                 jtfCurrentSalary.setText(person.getCurrentSalary1()+"");
                 jtfDesiredSalary.setText(person.getdesiredsalary1()+"");
         String[] theskills = person.getSkills1();
         for(int a=0; a<theskills.length;a++)
                listModel.addElement(theskills[a]);
         break;
   // if (selectedPerson != null)
}

and :
//StoringData class
class StoringData{
private String name;
private String password;
private String phone;
private String allthetext;
private String[] theskills;
private int currentsalary;
private int desiredsalary;
public StoringData()
  name = null;
  password = null;
  phone = null;
  allthetext = null;
  theskills = null;
  currentsalary = 0;
  desiredsalary = 0;
public StoringData(String n,String pw, String p,String a,String[] t, int c, int d)
  name = n;
  password = pw;
  phone = p;
  currentsalary = c;
  desiredsalary = d;
  allthetext = a;
  theskills = t;
public String getName1()
  return name;
public String getPassword1()
  return password;
public String getPhone1()
  return phone;
public String getAllTheText1()
     return allthetext;
public int getCurrentSalary1()
  return currentsalary;
public int getdesiredsalary1()
  return desiredsalary;
public String[] getSkills1()
     return theskills;
public void setName1(String n)
  name = n;
public void setPassword1(String pw)
  password = pw;
public void setPhone1(String p)
  phone = p;
public void setCurrentSalary1(int c)
  currentsalary = c;
public void setDesiredSalary1(int d)
  desiredsalary = d;
public void setAllTheText(String a)
  allthetext = a;
}

Similar Messages

  • I keep getting an error when I try to delete something (error code -1407)

    I've tried searching online for a solution but haven't found anything.
    Help, please.

    http://support.apple.com/kb/TS2942

  • Why is there a black part in the X when I try to delete my app? It's covering up the supposed to be white space around the X button

    Help!! Why is there a black part in the X when I try to delete my app? It's covering up the supposed to be white space around the X button

    Try:
    - Reset all settings                  
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                                     
    - Restore to factory settings/new iOS device.                     
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar
    Since they all line up on the left site that could be a hardware problem or maybe a software glitch. I have never seen that problem posterd here before

  • SourceFire management system error when I try to delete a user agent

    I'm running into an issue with the Sourcefire management system. When I try to delete a user agent within Sourcefire I get redirected to an error page.
    Running 5.3. I have attached the error.

    Try disabling your antivirus/antispam software.

  • Running Windows 8.1 and Thunderbird, but Tbird regularly goes "Not Rresponding; particularly when I try to delete something. All Mail won't delete at all.

    '''bold text'''Thunderbird crashes regularly when I try to delete email. ALL MAIL doesn't work at all and won't allow me to delete anything. I have gone to Properties many times and tried to repair ALL MAIL but it doesn't work.
    I was also unable to open and read any of your responses to previous questions that appear to be similar.
    I like many of the features of Thunderbird but am about ready to give up. Help, please.

    Is Thunderbird really crashing when you try to delete mail, or is it not responding?
    ''All Mail won't delete at all.''
    What exactly does this mean?
    Are you talking about Gmail? If so, do you have any clue what 'All Mail' is, and why it's a bad idea to delete something from 'All Mail'?
    ''I was also unable to open and read any of your responses to previous questions that appear to be similar.''
    This is a web forum. You can read replies here directly, there is no need for email to read replies.

  • TS3988 It says it can't find the server when I try to login. What am I doing wrong or what do I need to do to fix it?

    What do I need to do when it says ther server can not be found when I try to login on my PC?

    It doesn't appear to be a valid domain.
    '''.mx''' on its own would make it a second level domain, that is is to say, the organization which registered the domain.
    Your site will likely be a third level domain which means there has to be a prefix before the '''.mx'''. What that should be will depend on the registrar. For example, it could be '''www.ssmithx10.com.mx'''
    You need to contact the company where your site is registered to find out what that is.
    Here's a list just in case you haven't registered it all: http://www.registry.mx/jsf/rar_list/search/search.jsf
    If this answers your question, please click the '''Solved it''' button next to this post after you log in into the forum. This will help others searching for a solution to the same subject.
    Thanks.

  • Email keeps crashing when i try to delete something, email keeps crashing when i try to delete something

    I sent an email to someone, it came back with a message saying delivery notification faliure, when I tried to delet this message from my inbox it keeps crashing and wont allow me to delete it??

    i think.... It is crashing because it has no memory to move around.  suggest - resync with your 'puter.  on the photos tab, do not reload (sync0 a bunch of the existing photos, and deal with them - deleting or otherwise - on you computer.
    Otherwise - you have no option but to remove stuff from the pad  - music, apps, videos etc to give you enough space to move.

  • Can somebody explain the behavior of these notifiers

    Hey guys,
    I have been experimenting with notifiers before I used them in a new project. (It's funny that I already had the same introduction in my mind as this post while searching for more info)
    So I was editing the LabVIEW 2013 example to try to understand its behavior but then I came across this weird behavior that I cannot understand.
    If you run the attached VI, everything seems to work as expected and you can see Notification Loop updating with values from
    Notifier Loop 1 and Notifier Loop 2. However, when you press the "switch" button and change the wait time of the Notification Loop, things start acting weird.
    1.First the value of Notifier Loop 2 never updates any more. I thought this had to with aliasing but changing the values of Notifier 2 Loop delay doesn't change anything unless its value is less than Notifier 1 Loop Delay.
    2.More importantly, now the values from Notifier Loop 2 is appearing in Notifier Loop 1.
     I inserted an increment function in Notifier 2 Loop so that the sine graph would have an offset be easier to differentiate.
    Now Notifier 1 is a sine wave that has a bit of offset instead of Notifier 2.
    Whats going on?
    Attachments:
    Wait on Multiple Notifiers modified.zip ‏17 KB

    doradorachan wrote:
    ...but it still doesn't explain why this is happening.
    You're going to have to explain what "this" is.
    I am talking about how Notification 1 graph is representing both Notifications. Two sets of notifiers should be coming out separately but it doesnt.
    You can check the array size and see that the array size of the notifications changes from 2 to 1 when Notification Loop runs faster.  I have attached another modified VI to explain this.
    tst wrote:
    You're not reading faster than you are writing. I can't look at the code now, but I believe you had an infinite timeout on the W4MN primitive. That should cause it to wait until there is a notification it hasn't seen, thereby slowing the loop to the rate of the faster generator. You should be able to see that if you time the loop. And my understanding is that you *are* seeing the slower updates from the second generator, which is why you're seeing two waveforms.
    That's exactly my point. There is an infinite timeout on the W4MN and I have False attached to "ignore previous" which means that every notification should pass along the data. Now that I know for a weird reason both notifiers data are combined into one graph, I can see that Notifier Loop 2 is indeed updating the values correctly. The only problem is that It is being updated as the wrong notifier
    Attachments:
    Wait on Multiple Notifiers modified2.zip ‏18 KB

  • I do not have a fax machin, but get a fax message when I try to print something off the internet and can't get rid of the pop-up so how to fix?

    I have been dealing with this problem about a week. I have turned the computer completely off at night, but it does not correct the situation . I cannot print anything off the internet as long as the fax message is on there. I do not have a fax machine and do not want one.

    What is that fax message '''on'''? <br />Hard to understand how that is a Firefox support issue as Firefox doesn't have any fax capabilities.
    Perchance, do you have an all-in-one printer which can receive a fax message? Printer, scanner, and fax machine combined.<br />
    If so, try looking at your user manual for that all-in-one to learn how to print that message. Or consult with a support forum for that brand all-in-one printer.
    Or maybe your problem is with the Windows 7 Fax and Scan feature? <br />
    http://windows.microsoft.com/en-us/windows/faxing-faq#1TC=windows-7

  • Why do I get the following message when I try to print something off the internet:printer is off linr" when it is connected and I can print anything that comes like letters etc.

    ever since I installed "Fire Fox" I have not been able to print anything off the internet, although I can print item that come such as letters etc.
    I keep getting the message that my printer is off line when it is on. I am able to type and print o.k. but not able to print anything that I search on the internet.

    Is this a silver AppleTV 1? If so coudl be these are 1080p trailers - it only supports up to 720p.

  • Error "This serial number is not for a qualifying product..." when installing an upgrade or upsell. i GET THE ERROR WHEN I TRY TO Update my CS 5 Web premium

    I had to re-install my CS 5 Web Premium as i had to refresh my window. I try to update after activating. Then it says the product is not valid! God knows what's wrong with ADOBE!

    The messages you are receiving indicate that you are trying to install an upgrade version.  You are being asked to enter the name and serial number of the older product that you are upgrading from in order to prove that you qualify for using the upgrade.

  • Can somebody explain the function of these components ?

    Hi
    i'm going to buy cs5
    but again it's a great software , the best , is not cheap
    i would like to know the function of these components
    AdobeAIR1.5.3
    AdobeAMP1.8
    AdobeAPE3
    AdobeCSXSExtensions2
    AdobeCSXSInfrastructure2
    AdobeJRECS5
    SwitchBoard2
    please don't tell me it doesn't matter
    i guess a future customer should be know at least the function of this componets
    thanks

    These are "under the hood" extensions required to run the apps. E.g. you need the CSX infrastructure for user defined panels and exchanging data between some apps. The JRE is required by the installer and soem stuff in Flash// Dreamweaver. AIR should be self-explaining, Switchboard is a global monitoring service. If you thought of getting rid of any of that - don't, they are crucial.
    Mylenium

  • Can somebody explain the logic behind "no sequences"

    My timeline tabs get full of them every now and then, particularly when I change workspace setting.
    I'm sure I'm missing something but again, why does Premiere find this necessary?

    As you have probably guessed, the number of open timelines is saved automatically as part of the workspace. When you open a project that has fewer open timelines than the last one did, and you don't modify or reset the workspace, you end up with empty timeline tabs.
    I recommend that you submit a
    Feature Request
    and ask for workspaces to be saved as part of the project, or some similar mechanism, to make this issue go away.

  • HT4623 I can't do the updates, when I try it does nothing

    I tap where it says update and it does nothing. I have never had a problem until now

    I clicked the wrong thing own accident, it is an iPad. Sorry. I did that and it says its up to date but the apps still show needing updates and nothing will work until I update,every day the number gets bigger, now I think I need 11 updates.

  • When I try to download something off of the mac app store, It tells me "Your Purchase Could Not Be Completed"

    I want to download Final Cut Pro X, but every time I try, it says that "Your Purchase Could Not Be Completed."

    hi everyone.. This helps:
    This worked for me and I was having the same issue:
    Solution
    1) Delete the file Macintosh HD/Library/Preferences/SystemConfiguration/NetworkInterfaces.plist
    2) Restart OSX
    3) Try logging into Mac App Store again.
    Hope this helps

Maybe you are looking for

  • Compile error after migration from JDeveloper 11.1.1.4 to 11.1.2

    Hi, I have recently downloaded JDeveloper 11.1.2 and I need to migrate from 11.1.1.4. I got the following error message: Error: An unreported error occurred in Appc. No errors were reported, but the tool returned a failure result code:1. Can somebody

  • How to do the Manual Depreciation for Closed Fisical Year (2009) in Feb2010

    Hi Experts, One Asset Start Using from 30.06.09. Capitalized Date is 30.06.09. But Asset (invoice) is Created, First Acquisition Date is 31.01.10. Manually Entered the Depreciation Date is 30.06.09. now i have to run the depreciation previous year (7

  • How to install servlet and jsp on win xp?

    I am new in jsp and servlets. I would like to follow some jsp books and examples. The j2eesdk-1_4-dr-windows-eval.exe is already installed on my computer. I can write and run java codes. I downloaded the jsp-2_1-edr-api.zip file from http://java.sun.

  • Apple TV Latest upgrade is buggy help!

    I have the latest Apple TV (the little black box) and it has been working so well that I forget that it is there and just rent movies and watch them and never have any problems, well that was until the latest upgrade! Now it is so buggy! Most of the

  • Constrain Split View

    Hi, I have created a simple application that uses a "NSSplitView". Everything works perfectly, but I would like to be able to make sure that none of the two sides of the split view can have a width of less than 50 px. I tried this code: THE "MAVContr