In Lync, if a call is not answered, and does not go to voice mail, is anything recorded in the Lync database ?

We are using Lync 2010. This question relates to the LCSCDR database.
In Lync, if a call is not answered, and does not go to voice mail, is anything recorded in the Lync database ? Are there any options to make Lync store a record of unanswered calls ?
Is there a way to tell from the LYnc database if a call was answered by a person or went to voice mail ?
I cannot see anything in the sessiondetails table to indicate any of the above.
Any help much appreciated.

Hello,
You shouldn't install Shockwave Player unless you know for a fact that you need it.
# From the following page, save the uninstaller, the full installer for Netscape, and the full installer for Internet Explorer if you also need it in that browser.
#* http://www.adobe.com/shockwave/download/alternates/#sp
# Exit all applications.
# Run the uninstaller.
# Restart your computer.
# Run the installer for Netscape.
# Run the installer for Internet Explorer if you downloaded it.
This forum doesn't support BBCode like <nowiki>[IMG]</nowiki> tags. You can simply post the plain links to the images. In replies to the thread, you have the option to attach images to your post.
* https://support.mozilla.org/kb/markup-chart

Similar Messages

  • HT5312 I forgot my security questions answer and does not have the rescue Email.

    I forgot my security questions answer and does not have the rescue Email.

    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down the page that you posted from to add a rescue email address for potential future use

  • Product is not abstract and does not override abstract method

    Received the following errors.
    Product.java:3: Product is not abstract and does not override abstract method ge
    tDisplayText() in Displayable
    public class Product implements Displayable
    ^
    Product.java:16: getDisplayText() in Product cannot implement getDisplayText() i
    n Displayable; attempting to use incompatible return type
    found : void
    required: java.lang.String
    public void getDisplayText()
    ^
    2 errors
    Code reads as follows
    import java.text.NumberFormat;
    public class Product implements Displayable
         private String code;
         private String description;
         private double price;
         public Product()
              this.code = "";
              this.description = "";
              this.price = 0;
    public void getDisplayText()
    String message =
    "Code: " + code + "\n" +
    "Description: " + description + "\n" +
    "Price: " + this.getFormattedPrice() + "\n";
         public Product(String code, String description, double price)
              this.code = code;
              this.description = description;
              this.price = price;
         public void setCode(String code)
              this.code = code;
         public String getCode(){
              return code;
         public void setDescription(String description)
              this.description = description;
         public String getDescription()
              return description;
         public void setPrice(double price)
              this.price = price;
         public double getPrice()
              return price;
         public String getFormattedPrice()
              NumberFormat currency = NumberFormat.getCurrencyInstance();
              return currency.format(price);
    Please help!

    Received the following errors.
    Product.java:3: Product is not abstract and does not
    override abstract method ge
    tDisplayText() in Displayable
    public class Product implements Displayable
    ^
    Product.java:16: getDisplayText() in Product cannot
    implement getDisplayText() i
    n Displayable; attempting to use incompatible return
    type
    found : void
    required: java.lang.String
    public void getDisplayText()
    ^
    2 errors
    Code reads as follows
    Please use the code tags when posting code. There is a code button right above the text box where you enter your post. Click on it and put the code between the code tags.
    These error messages are quite clear in telling what is wrong. You have an Interface called Displayable that specifies a method something like thispublic String getDisplayText() {But in your Product source code, you created thismethodpublic void getDisplayText() {The compiler is complaining because the methods are not the same.
    You also need to return a String in the method probalby like thisreturn message;

  • Is not abstract and does not override abstract method actionPerformed

    I dont how to corr. Please help!! and thank you very much!!
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class test extends JFrame implements ActionListener, ItemListener
              private CenterPanel centerPanel;
              private QuestionPanel questionPanel;
              private ButtonPanel buttonPanel;
              private ResponsePanel responsePanel;
              private JButton b1,b2,b3,b4,b5;               //Create five references to Jbutton instances
         private JTextField t1,t2,t3,t4,t5;          //Create five references to JTextField instances
              private JLabel label1;                    //Create one references to JLabel instances
              private JRadioButton q1,q2,q3;               //Create three references to JRadioButton instances
              private ButtonGroup radioGroup;               //Create one references to Button Group instances
              private int que1[] = new int[5];           //Create int[4] Array
              private int que2[] = new int[5];
              private int que3[] = new int[5];
              private String temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9, temp10,
                        temp11, temp12, temp13, temp14, temp15;
    public test (String header)
              super(header);
              Container container = getContentPane();
              label1 = new JLabel ("PLease click on your response to ");     
              q1 = new JRadioButton("I understand most of the content of this subject",true);
              add(q1);
              q2 = new JRadioButton("I see the relevance of the subject to my degree",false);
              add(q2);
              q3 = new JRadioButton("The workload in this subject is appropriate",false);
              add(q3);
              radioGroup = new ButtonGroup();               //JRadioButton belong to ButtonGroup
              radioGroup.add(q1);
              radioGroup.add(q2);
              radioGroup.add(q3);
              JPanel buttonPanel = new JPanel();
              JPanel responsePanel = new JPanel();
              JPanel questionPanel = new JPanel();
              JPanel centerPanel = new JPanel();
              b1 = new JButton ("Strongly DISAGREE");          //Instantiate JButton with text
              b1.addActionListener (this);               //Register JButtons to receive events
              b2 = new JButton ("DISAGREE");
              b2.addActionListener (this);
              b3 = new JButton ("Neither AGREE or DISAGREE");
              b3.addActionListener (this);
              b4 = new JButton ("AGREE");
              b4.addActionListener (this);
              b5 = new JButton ("Strongly AGREE");
              b5.addActionListener (this);
              buttonPanel.setLayout(new GridLayout(5,1));
              buttonPanel.add(b1);
              buttonPanel.add(b2);
              buttonPanel.add(b3);
              buttonPanel.add(b4);
              buttonPanel.add(b5);
              t1 = new JTextField ("0",3);               //JTextField contains empty string
              t2 = new JTextField ("0",3);
              t3 = new JTextField ("0",3);
              t4 = new JTextField ("0",3);
              t5 = new JTextField ("0",3);
              t1.setEditable( false );
              t2.setEditable( false );
              t3.setEditable( false );
              t4.setEditable( false );
              t5.setEditable( false );
              responsePanel.setLayout(new GridLayout(5,1));
              responsePanel.add(t1);
              responsePanel.add(t2);
              responsePanel.add(t3);
              responsePanel.add(t4);
              responsePanel.add(t5);
              questionPanel.setLayout(new GridLayout(4,1));
              questionPanel.add(label1);
              questionPanel.add(q1);
              questionPanel.add(q2);
              questionPanel.add(q3);
              centerPanel.add(buttonPanel,BorderLayout.CENTER);
              centerPanel.add(responsePanel,BorderLayout.EAST);
              container.add(centerPanel,BorderLayout.WEST);
              container.add(questionPanel,BorderLayout.NORTH);
              q1.addActionListener(
                   new ActionListener(){
              public void actionPerformed( ActionEvent e )          
    {                                        //actionPerformed of all registered listeners
              if (e.getSource() == b1) {
                   que1[0] = Integer.parseInt(t1.getText()) + 1;
                   String temp1 = String.valueOf(que1[0]);
              t1.setText(temp1);
              else if (e.getSource() == b2)     {
                   que1[1] = Integer.parseInt(t2.getText()) + 1;
                   String temp2 = String.valueOf(que1[1]);
              t2.setText(temp2);
              else if (e.getSource() == b3)     {
                   que1[2] = Integer.parseInt(t3.getText()) + 1;
                   String temp3 = String.valueOf(que1[2]);
              t3.setText(temp3);
              else if (e.getSource() == b4)     {
                   que1[3] = Integer.parseInt(t4.getText()) + 1;
                   String temp4 = String.valueOf(que1[3]);
              t4.setText(temp4);
              else if (e.getSource() == b5)     {
                   que1[4] = Integer.parseInt(t5.getText()) + 1;
                   String temp5 = String.valueOf(que1[4]);
              t5.setText(temp5);
    } //end action performed
              q2.addActionListener(
                   new ActionListener(){
              public void actionPerformed( ActionEvent e )          
    {                                        //actionPerformed of all registered listeners
              if (e.getSource() == b1) {
                   que2[0] = Integer.parseInt(t1.getText()) + 1;
                   String temp6 = String.valueOf(que2[0]);
              t1.setText(temp1);
              else if (e.getSource() == b2)     {
                   que2[1] = Integer.parseInt(t2.getText()) + 1;
                   String temp7 = String.valueOf(que2[1]);
              t2.setText(temp7);
              else if (e.getSource() == b3)     {
                   que2[2] = Integer.parseInt(t3.getText()) + 1;
                   String temp8 = String.valueOf(que2[2]);
              t3.setText(temp8);
              else if (e.getSource() == b4)     {
                   que2[3] = Integer.parseInt(t4.getText()) + 1;
                   String temp9 = String.valueOf(que2[3]);
              t4.setText(temp9);
              else if (e.getSource() == b5)     {
                   que2[4] = Integer.parseInt(t5.getText()) + 1;
                   String temp10 = String.valueOf(que2[4]);
              t5.setText(temp10);
    } //end action performed
              q3.addActionListener(
                   new ActionListener(){
              public void actionPerformed( ActionEvent e )          
    {                                        //actionPerformed of all registered listeners
              if (e.getSource() == b1) {
                   que3[0] = Integer.parseInt(t1.getText()) + 1;
                   String temp11 = String.valueOf(que3[0]);
              t1.setText(temp11);
              else if (e.getSource() == b2)     {
                   que3[1] = Integer.parseInt(t2.getText()) + 1;
                   String temp12 = String.valueOf(que3[1]);
              t2.setText(temp12);
              else if (e.getSource() == b3)     {
                   que3[2] = Integer.parseInt(t3.getText()) + 1;
                   String temp13 = String.valueOf(que3[2]);
              t3.setText(temp13);
              else if (e.getSource() == b4)     {
                   que3[3] = Integer.parseInt(t4.getText()) + 1;
                   String temp14 = String.valueOf(que3[3]);
              t4.setText(temp14);
              else if (e.getSource() == b5)     {
                   que3[4] = Integer.parseInt(t5.getText()) + 1;
                   String temp15 = String.valueOf(que3[4]);
              t5.setText(temp15);
    } //end action performed
    }//end constructor test
    public void itemStateChanged(ItemEvent item) {
    //int state = item.getStateChange();
    //if (q1 == item.SELECTED)
              public class ButtonPanel extends JPanel
                   public ButtonPanel()
              public class CenterPanel extends JPanel
                   public CenterPanel()
              public class QuestionPanel extends JPanel
                   public QuestionPanel()
              public class ResponsePanel extends JPanel
                   public ResponsePanel()
    public static void main(String [] args)
         test surveyFrame = new test("Student Survey") ;
         surveyFrame.setSize( 500,300 );
         surveyFrame.setVisible(true);
         surveyFrame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
         }//end main
    }//end class test

    is not abstract and does not override abstract method actionPerformed
    Oh, I see that the title of your post is an error message? Ok. Well, the test class is declared as implementing an ActionListener. That means the test class must have an actionPerformed() method. Your test class apparently does not.
    It does not appear that the test class needs to implement ActionListener. You are using annonymous classes as listeners.

  • Is not abstract and does not override abstract method tablechanged

    I will remove all the gui code to make it shorter, but my problem lies with my InteractiveTableModelListener.
    public class Meet extends JPanel{
      private static void createAndShowGUI() {
            JFrame frame = new JFrame("MEET_dataTable");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add(new Meet(), BorderLayout.CENTER);
            frame.pack();
            frame.setVisible(true);
    public class InteractiveTableModelListener implements TableModelListener {
         public void TableChanged(TableModelEvent evt) {
      if (evt.getType() == TableModelEvent.UPDATE) {
          int column = evt.getColumn();
          int row = evt.getFirstRow();
          dataTable.setColumnSelectionInterval(column + 1, column + 1);
          dataTable.setRowSelectionInterval(row, row);
    class InteractiveRenderer extends DefaultTableCellRenderer {
      protected int interactiveColumn;
      public InteractiveRenderer(int interactiveColumn) {
          this.interactiveColumn = interactiveColumn;
    public Component getTableCellRendererComponent(JTable dataTable,
         Object value, boolean isSelected, boolean hasFocus, int row,
         int column)
      Component c = super.getTableCellRendererComponent(dataTable, value, isSelected, hasFocus, row, column);
       if (column == interactiveColumn && hasFocus) {
         if ((Meet.this.tableModel.getRowCount() - 1) == row &&
            !Meet.this.tableModel.hasEmptyRow())
             Meet.this.tableModel.addEmptyRow();
        highlightLastRow(row);
      return c;
    public void highlightLastRow(int row) {
         int lastrow = tableModel.getRowCount();
      if (row == lastrow - 1) {
          dataTable.setRowSelectionInterval(lastrow - 1, lastrow - 1);
      else {
          dataTable.setRowSelectionInterval(row + 1, row + 1);
         dataTable.setColumnSelectionInterval(0, 0);
    public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                UIManager.put("swing.boldMetal", Boolean.FALSE);
                createAndShowGUI();
    }As i say, i have removed all the gui code to make it shorter, but in this code i create the table and add all the model to it. I am being returned with the error
    Meet.InteractiveTableModelListener is not abstract and does not override abstract method tableChanged(javax.swing.event.TableModelEvent)in javax.swing.event.TableModelListener
    what would be causing this error?
    Cheers

    Sorry, just figured out my silly error, the method is tableChanged not TableChanged.
    cheers
    TOPIC CLOSED
    Edited by: nick2price on Sep 11, 2008 7:08 AM

  • Is not abstract and does not override abstract method ERROR

    Hello. I'm new at all this, and am attempting to recreate a sample code out of my book (Teach Yourself XML in 24 Hours), and I keep getting an error. I appriciate any help.
    This is the Error that I get:
    DocumentPrinter is not abstract and does not override abstract method skippedEntity(java.lang.String) in org.xml.sax.ContentHandler
    public class DocumentPrinter implements  ContentHandler, ErrorHandler
            ^This is the sourcecode:
    import org.xml.sax.Attributes;
    import org.xml.sax.ContentHandler;
    import org.xml.sax.ErrorHandler;
    import org.xml.sax.Locator;
    import org.xml.sax.SAXParseException;
    import org.xml.sax.XMLReader;
    public class DocumentPrinter implements  ContentHandler, ErrorHandler
    // A Constant containing the name of the SAX parser to use.
    private static final String PARSER_NAME = "org.apache.xerces.parsers.SAXParser";
    public static void main(String[] args)
       // Check to see whether the user supplied any command line arguments.  If not, print an error and exit.
       if (args.length == 0)
         System.out.println("No XML document path specified.");
         System.exit(1);
       // Create a new instance of the DocumentPrinter class.
       DocumentPrinter dp = new DocumentPrinter();
       try
         // Create a new instance of the XML Parser.
         XMLReader parser = (XMLReader)Class.forName(PARSER_NAME).newInstance();
         // Set the parser's content handler
        // parser.setContentHandler(dp);
         // Set the parsers error handler
         parser.setErrorHandler(dp);
         // Parse the file named in the argument
         parser.parse(args[0]);
       catch (Exception ex)
         System.out.println(ex.getMessage());
         ex.printStackTrace();
    public void characters(char[] ch, int start, int length)
       String chars ="";
       for (int i = start; i < start + length; i++)
         chars = chars + ch;
    System.out.println("Recieved characters: " + chars);
    public void startDocument()
    System.out.println("Start Document.");
    public void endDocument()
    System.out.println("End of Document.");
    public void startElement(String namespaceURI, String localName, String qName, Attributes atts)
    System.out.println("Start element: " + localName);
    for (int i = 0; i < atts.getLength(); i++)
    System.out.println(" Attribute: " + atts.getLocalName(i));
    System.out.println(" Value: " + atts.getValue(i));
    public void endElement(String namespaceURI, String localName, String qName)
    System.out.println("End of element: " + localName);
    public void startPrefixMapping(String prefix, String uri)
    System.out.println("Prefix mapping: " + prefix);
    System.out.println("URI: " + uri);
    public void endPrefixMapping(String prefix)
    System.out.println("End of prefix mapping: " + prefix);
    public void ignorableWhitespace(char[] ch, int start, int length)
    System.out.println("Recieved whitespace.");
    public void processingInstruction(String target, String data)
    System.out.println("Recieved processing instruction:");
    System.out.println("Target: " + target);
    System.out.println("Data: " + data);
    public void setDocumentLocation(Locator locator)
    // Nada
    public void error(SAXParseException exception)
    System.out.println("Parsing error on line " + exception.getLineNumber());
    public void fatalError(SAXParseException exception)
    System.out.println("Fatal parsing error on line " + exception.getLineNumber());
    public void warning(SAXParseException exception)
    System.out.println("Warning on line " + exception.getLineNumber());

    Check to make sure that the arguments are consistent with your ContentHandler class. Probably the wrong type.
    I think you forgot to include the skippedEntity method, it seems to be missing. Even if an implemented class has a method that you are not using, you still have to include the method in your code even if it doesn't do anything.
    Message was edited by:
    ChargersTule1

  • ...is not abstract and does not override abstract method compare

    Why am I getting the above compile error when I am very clearly overriding abstract method compare (ditto abstract method compareTo)? Here is my code -- which was presented 1.5 code and I'm trying to retrofit to 1.4 -- followed by the complete compile time error. Thanks in advance for your help (even though I'm sure this is an easy question for you experts):
    import java.util.*;
       This program sorts a set of item by comparing
       their descriptions.
    public class TreeSetTest
       public static void main(String[] args)
          SortedSet parts = new TreeSet();
          parts.add(new Item("Toaster", 1234));
          parts.add(new Item("Widget", 4562));
          parts.add(new Item("Modem", 9912));
          System.out.println(parts);
          SortedSet sortByDescription = new TreeSet(new
             Comparator()
                public int compare(Item a, Item b)   // LINE CAUSING THE ERROR
                   String descrA = a.getDescription();
                   String descrB = b.getDescription();
                   return descrA.compareTo(descrB);
          sortByDescription.addAll(parts);
          System.out.println(sortByDescription);
       An item with a description and a part number.
    class Item implements Comparable     
          Constructs an item.
          @param aDescription the item's description
          @param aPartNumber the item's part number
       public Item(String aDescription, int aPartNumber)
          description = aDescription;
          partNumber = aPartNumber;
          Gets the description of this item.
          @return the description
       public String getDescription()
          return description;
       public String toString()
          return "[descripion=" + description
             + ", partNumber=" + partNumber + "]";
       public boolean equals(Object otherObject)
          if (this == otherObject) return true;
          if (otherObject == null) return false;
          if (getClass() != otherObject.getClass()) return false;
          Item other = (Item) otherObject;
          return description.equals(other.description)
             && partNumber == other.partNumber;
       public int hashCode()
          return 13 * description.hashCode() + 17 * partNumber;
       public int compareTo(Item other)   // OTHER LINE CAUSING THE ERROR
          return partNumber - other.partNumber;
       private String description;
       private int partNumber;
    }Compiler error:
    TreeSetTest.java:25: <anonymous TreeSetTest$1> is not abstract and does not over
    ride abstract method compare(java.lang.Object,java.lang.Object) in java.util.Com
    parator
                public int compare(Item a, Item b)
                           ^
    TreeSetTest.java:41: Item is not abstract and does not override abstract method
    compareTo(java.lang.Object) in java.lang.Comparable
    class Item implements Comparable
    ^
    2 errors

    According to the book I'm reading, if you merely take
    out the generic from the code, it should compile and
    run in v1.4 (assuming, of course, that the class
    exists in 1.4). I don't know what book you are reading but that's certainly incorrect or incomplete at least. I've manually retrofitted code to 1.4, and you'll be inserting casts as well as replacing type references with Object (or the erased type, to be more precise).
    These interfaces do exist in 1.4, and
    without the generics.Exactly. Which means compareTo takes an Object, and you should change your overriding method accordingly.
    But this raises a new question: how does my 1.4
    compiler know anything about generics? It doesn't and it can't. As the compiler is telling you, those interfaces expect Object. Think about it, you want to implement one interface which declares a method argument type of Object, in several classes, each with a different type. Obviously all of those are not valid overrides.

  • My ipad screen is black and will not reset and does not come back after restoring, the info is still on internal because i can see it on itunes in the apps catagory it's the display is not working, can see backlight but black...does anyone know how to fix

    my ipad screen is black and will not reset and does not come back after restoring, the info is still on internal because i can see it on itunes in the apps catagory it's the display is not working, can see backlight but black...does anyone know how to fix, other than take it to apple.
    thanks!

    The wish list only works on apps you have to pay for. To get it tap the icon of the app you want to save. After it opens at the upper right corner is a box with a arrow. Tap that then tap add to wish list list in the box that opens.

  • TS1410 My iPod shuffle ( 1st or 2nd generation) will not recharge and does not show when the doc is connected to my MacBook Pro. I'm running the latest updated version of iTunes.

    My iPod shuffle ( 1st or 2nd generation) will not recharge and does not show when the doc is connected to my MacBook Pro. I'm running the latest updated version of iTunes.

    Hello Jane Benstock,
    Thank you for using Apple Support Communities
    It sounds like the next best step to take would be to reset the iPod Shuffle.
    Check out this article named Resetting iPod shuffle found here http://support.apple.com/kb/HT1655.
    All the best,
    Sterling

  • Phone shutting off when not using and does not start back up by itself

    I bought the LG Revolution phone 2 1/2 weeks ago and since then twice when I have not been using it, it shuts off by itself and does not power back up until I realize it is off and then I hold down the power key to restart it. It also turns off in the middle of using an app but then restarts itself. Is this a known glitch or is something wrong with this particular phone? Since I am after the 2 week mark, can I exchange it? Or am I out $200 for an issue that isn't my fault?

    tiggerpolo81, I know your phone shutting off and on is very frustrating. I will attempt to assist you with some suggestions to resolve this issue. I researched this issue and found that some customers have reported this as an issue and we have also reported it to our device team. We will attempt to address the issue with any future updates for this phone. In the mean time, I recommend checking to see if a third party app is causing the issue. 
    Safe Mode temporarily disables all applications that have been installed via the Android Market. Performing this step is necessary to determine whether a 3rd party application is the cause of an Operating System / Application issue. 
    Enable Safe Mode
    With the device powered down, press and hold the power button (upper-right corner).
    When the LG Logo screen appears, press and hold the volume down key.
    Release the volume down key when Safe mode is displayed at the lower-left.
    This may take up to 30 seconds.
    Disable Safe Mode
    Press and hold the Power button (upper-right corner).
    Select Restart.
    Additionally , if the issue continues we can review your account and device for warranty replacement options. If the phone is within its one-year manufacturers warranty and have no physical or water damage, it can be replaced with the same model. 

  • Lync Web App will not load and does not error out

    Hi,
    Recently I've been receiving invites to Lync 15 meetings. I am able to join the meetings and things work fine until somebody shares their desktop or a presentation. Then I get a message saying Windows firewall has blocked an app and asks if I want
    to allow the Lync Web App to run. I click OK and it appears to begin loading. The app doesn't load, I can still hear audio on the meeting but all the rest of the Lync app freezes except for the spinning circle wheel telling me it is loading.
    When I look in Task Manager, I can see the Lync Web App running with a steady stream of I/O. But the entire Lync meeting will not render. If I kill the Lync Web App from Task Manager, then the Lync meeting immediately works.
    System: Win 7 pro 64, IE 9, AMD Athalon dual core chip, 4 GB RAM, tons of disk space, DSL 700K connection
    Any ideas?
    Thanks,
    JAS.
    JAS

    Hi There,
    Thanks a lot for reporting this issue. And I am sorry that you are hitting this issue while attending Lync meetings. Following details will help us diagnose it further -
    1) Do you have Lync 2010 or Lync 2013 client installed on the machine?
    2) Do you get this issue again and again when you join the meeting or it was one-off?
    3) When you killed "Lync Web App" from task manager, was audio flowing through even after that? Were you still attending the meeting from the browser?
    4) How much time did you wait when UI was showing "Loading" until you killed the Lync Web App from task manager?
    Thanks.
    ManuMSFT
    manums

  • My early 2011 MacBook Pro says battery not detected and does not work with a new battery either. Works only with the charger plugged in.

    About a year back i had replaced the MLB of my early 2011 macbook pro and it was all working fine. A month back my battery went dead saying "Battery Not Detected". I went to Ample technologies, Bangalore, India and gave it for diagnosis. Ample technologies are the authorized Apple support service in Bangalore, India. After 3 days and no phone calls they email me that "They feel that the MLB MIGHT be the problem and they want to test it by replacing the MLB and i have to pay for their testing". I had already spent 40k indian rupees ($700) less than a year back to replace an MLB and now they want to replace it again at the cost of 43k ($750) indian rupees. I have no idea what to do now. Spending 80k indian rupees ($1400) in less than a year to replace the MLB twice sounds unfair to me. Can someone help me out here ? Is there a valid warranty period applicable , since i have changed the MLB a year back ?

    short of doing a SMC reset, you maybe at their mercy.
    resetting the  SMC http://support.apple.com/kb/ht3964
    You can try yourself running the Apple Hardware Test- and see if it generates any error codes. Post the results
    AHT  http://support.apple.com/kb/HT1509

  • N97 freezes, does not restore and does not install...

    Having read a few of the problems that some people have out there, I think my issue is more serious than half of them out there.
    Here's how it started:
    I bought the Nokia N97 and used Bluetooth to transfer my contacts from my N95. Right from the bat, the phone would freeze at some points. This was usually right after an incoming call would end, and the phone screen would still display the options for answering or rejecting the call. In fact, the freeze was pretty weird because even though everything was frozen, the little "phone" icon would still flash between yellow and green colors.
    Anyway, I thought maybe it needed an update, so I updated it to the latest v11.0.21 version, but this didn't change things at all.
    So, when v12 came out, I was full of hope. My Ovi Suite was saying that I should update my phone, so I did. 
    The problem is that the installation was not successful. The Ovi Suite says that the phone disconnected even though I am much too careful to disconnect the USB cable or even touch it during the update.
    This was two days ago, and I was left with a phone that wouldn't even turn on.
    I took it to the Nokia Service Point yesterday and today it was working again. Fantastic, so far!
    The problem is that now, the Ovi Suite cannot restore my contacts to the phone. Again, it says that the connection is interrupted, no matter how many times I've tried this.
    The Ovi Suite also says that it cannot install the Support Software on the phone. It just says that the installation fails as soon as it starts.
    So, with some 300+ contacts, the phone is pretty useless to me.
    Any thoughts?
    Thank you in advance,
    George
    Attachments:
    nokia2.jpg ‏48 KB
    nokia.jpg ‏82 KB

    http://betalabs.nokia.com/ovisuite
    do you have the latest release of ovi suite, beta 2? if you don't start there. update your software to this release and see if the same thing happens.  
    You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

  • ..is not abstract and does not override abstract method..

    Hello,
    I've been creating a GUI from scratch, up to now, i have managed to successfully compile the code which forms the window, and a JMenu bar. I now need to add buttons, and for this i need to use an ActionListener, but when i put "implements ActionListener" at the end of "public class TestCode extends JFrame", i recieve the above error message (abstract..). I've looked at recent posts and have come across a post that says adding "actionPerformed(java.awt.event.ActionEvent e)" to the class will resolve the issue. When i add that, i recieve a compile error message saying to add '{' after actionPerformed. I've done this however it still does not compile. Can anyone point me in the right direction please?
    Thanks
    George
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JMenu;
    import javax.swing.JLabel;
    import javax.swing.JMenuItem;
    import javax.swing.JButton;
    import javax.swing.JMenuBar;
    import javax.swing.JPanel;
    import javax.swing.ImageIcon;
    import javax.swing.AbstractButton;
    import javax.swing.JFrame;
    import java.awt.event.KeyEvent;
    import java.util.*;
    public class TestCode extends JFrame  {
        private static void createAndShowGUI() {
         JFrame.setDefaultLookAndFeelDecorated(true);
            JFrame frame = new JFrame("Robot Control Station");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         JMenuBar menuBar = new JMenuBar();
         JMenu fileMenu = new JMenu("Exit");
         fileMenu.setMnemonic(KeyEvent.VK_F);
         menuBar.add(fileMenu);
            JLabel emptyLabel = new JLabel("");
            emptyLabel.setPreferredSize(new Dimension(750, 750));
            frame.getContentPane().add(emptyLabel, BorderLayout.CENTER);
         JMenuItem newMenuItem = new JMenuItem("Exit Program", KeyEvent.VK_N);
         fileMenu.add(newMenuItem);
         frame.setJMenuBar(menuBar);
         frame.setVisible(true);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
           //forward button
         JButton forward = new JButton("Forward");
         forward.setMnemonic(KeyEvent.VK_D);
            forward.setActionCommand("disable");
         forward.setToolTipText("Click this button to make the robot go forward.");
         forward.add(forward);
         frame.setVisible(true);
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
         

    thanks for the help,
    i read the tutorial, and have starte dto understand how to use action listeners, but i seem to have stumbled to another problem, it seems that i dont fully undertsand how to use ActioListeners, and i cant see mto see what i'm doing wrong.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JMenu;
    import javax.swing.JLabel;
    import javax.swing.JMenuItem;
    import javax.swing.JButton;
    import javax.swing.JMenuBar;
    import javax.swing.JPanel;
    import javax.swing.ImageIcon;
    import javax.swing.AbstractButton;
    import javax.swing.JFrame;
    import java.awt.event.KeyEvent;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.util.*;
    public class TestCode extends JFrame implements WindowListener,ActionListener {
         public void actionPerformed(ActionEvent e) {
         forward = new JButton("Forward");
         frame.setLayout(null);
         forward.setMnemonic(KeyEvent.VK_D);
         forward.setActionCommand("Forward");
         forward.setToolTipText("Click this button to make the robot go forward!");
         add(forward);
         addActionListener(this);
         frame.add(forward);     
         JFrame frame;
         JButton forward;
         frame.addActionListener(this);
         private static void createAndShowGUI() {
         JFrame.setDefaultLookAndFeelDecorated(true);
            JFrame frame = new JFrame("Robot Control Station");
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         frame.addWindowListener(this);
         frame.pack();
            frame.setVisible(true);
         //JMenuBar createMenuBar;
         JMenuBar menuBar = new JMenuBar();
         JMenu fileMenu = new JMenu("Exit");
         fileMenu.setMnemonic(KeyEvent.VK_F);
         menuBar.add(fileMenu);
            JLabel emptyLabel = new JLabel("");
            emptyLabel.setPreferredSize(new Dimension(750, 750));
            frame.getContentPane().add(emptyLabel, BorderLayout.CENTER);
         JMenuItem newMenuItem = new JMenuItem("Exit Program", KeyEvent.VK_N);
         fileMenu.add(newMenuItem);
         frame.setJMenuBar(menuBar);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
         it points me to line 22 which is frame.addActionListener(this); , it tells me that an identifier is expected, and it is an illegal start of type. I can't get my head round it. Can anyone turn me to the right direction again please?

  • I am using windows 7, and it is up to date, mozilla will not open and does not provide error message. Tried new profile, uninstall etc. pls help

    After I uninstall and reinstall Firefox works for a few executions but when I try to run it after about an hour or so it does not respond, does not give me any message. I have deleted my old profile, upon uninstalling I checked the box which asks if I'd like to remove all the previous data. The problem still persists.

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer some files from an existing profile to the new profile, but be careful not to copy corrupted files.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    A possible cause is security software (firewall,anti-virus) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls

Maybe you are looking for

  • Need Help in Registry of Windows 7

    Hello, I am not sure if this is the right area but I figured it was worth a shot. I shared all the drive's of my home computer in my home network to access data (Pic's, Videos/Movies, Documents etc) through my phone from any room. Some time our guest

  • How do I save a number to contacts that was messaged to me?

    I had one of my friends message me a number. When I clicked on the number it sent me to the call screen with the only option to call the number. I just want to save the number to my contacts. 

  • Retrieve the default content access account for search through code

    Hi there,        Does anyone have the code to retrieve the default content access account (crawl account) for the MOSS search? I tried looking into Microsoft.Sharepoint.Search.Adminstration.SearchService namespace. It has a "crawlaccount" property bu

  • How do I update without payment information?

    How can I update software in a new MacBook Air without surrendering payment information? Tim Cook's open letter recently assured us of respect of privacy and yet we remain unable to update a new MacBook except we surrender payment information - which

  • Properties panel does not entirely show

    Part of the properties panel is not shown - what cause this? - how can it be fixed? Using DW CS4 and Win 7 Arrows show how parts of the panel are not seen