Need Help With Collection.binarySearch ! Please help me

* TaxPayerRecord.java
* Created on December 21, 2006, 11:42 AM
public class TaxPayerRecord implements Comparable <TaxPayerRecord>
    private String nric;
    private String name;
    private String dateOfBirth;
    private String gender;
    private String blockNo;
    private String unitNo;
    private String streetName;
    private String bldgName;
    private String postalCode;
    private long totalIncome;
    private long totalDonation;
    private long totalPersonalRelief;
     * Creates a new instance of TaxPayerRecord
    public TaxPayerRecord(String nric, String name, String dateOfBirth, String gender,
                             String blockNo, String unitNo, String streetName, String bldgName,
                             String postalCode, long totalIncome, long totalDonation,
                             long totalPersonalRelief)
        this.nric = nric;
        this.name = name;
        this.dateOfBirth = dateOfBirth;
        this.gender = gender;
        this.blockNo = blockNo;
        this.unitNo = unitNo;
        this.streetName = streetName;
        this.bldgName = bldgName;
        this.postalCode = postalCode;
        this.totalIncome = totalIncome;
        this.totalDonation = totalDonation;
        this.totalPersonalRelief = totalPersonalRelief;
    public String toString()
        return nric+"|"+name+"|"+dateOfBirth+"|"+gender+"|"+blockNo+"|"+unitNo+"|"+streetName+"|"+
               bldgName+"|"+postalCode+"|"+totalIncome+"|"+totalDonation+"|"+
               totalPersonalRelief;
    public long getTotalIncome()
        return totalIncome;
    public long getTotalDonation()
        return totalDonation;
    public long getTotalPersonalRelief()
        return totalPersonalRelief;
    public String getDateOfBirth()
        return dateOfBirth;
    public String getPostalCode()
        return postalCode;
    public int compareTo (TaxPayerRecord next)
          return this.nric.compareTo(next.nric);
} //TaxPayerRecord
import java.io.*;
import java.util.*;
public class TaxPayerProgramme
     public TaxPayerProgramme()
                         String menu = "Options: \n"
                                        + "1. Compute And Print List Of Tax Payers (Sorted by NRIC) \n"
                                        + "2. Compute And Summary Of Tax Revenue \n"
                                        + "3. Search for Tax Payer by NRIC \n"
                                        + "Enter option(1-2,0 to quit): ";
                         System.out.print(menu);
                         Scanner input = new Scanner( System.in );
                         int choice = input.nextInt();
                         System.out.println("");
                     // Declaration
                         ArrayList<TaxPayerRecord> list = new ArrayList<TaxPayerRecord>();
                         String inFile ="TaxPayer2005.txt";
                         String line = "";
                         String nric;
                         String name;
                         String dateOfBirth;
                         String gender;
                         String blockNo;
                         String unitNo;
                         String streetName;
                         String bldgName;
                         String postalCode;
                         long totalIncome;
                         long totalDonation;
                         long totalPersonalRelief;
                    try{
                         //Read from file
                         FileReader fr = new FileReader (inFile);
                         BufferedReader inFile1= new BufferedReader (fr);
                         line=inFile1.readLine();
                                   while (line!=null)
                                   StringTokenizer tokenizer = new StringTokenizer(line,"|");
                                   nric=tokenizer.nextToken();
                                   name=tokenizer.nextToken();
                                   dateOfBirth=tokenizer.nextToken();
                                   gender=tokenizer.nextToken();
                                   blockNo=tokenizer.nextToken();
                                   unitNo=tokenizer.nextToken();
                                   streetName=tokenizer.nextToken();
                                   bldgName=tokenizer.nextToken();
                                   postalCode=tokenizer.nextToken();
                                   totalIncome=Long.parseLong(tokenizer.nextToken());
                                   totalDonation=Long.parseLong(tokenizer.nextToken());
                                   totalPersonalRelief=Long.parseLong(tokenizer.nextToken());
                                   TaxPayerRecord person = new TaxPayerRecord(nric,name,dateOfBirth,gender,blockNo,unitNo,
                                                                                          streetName,bldgName,postalCode,totalIncome,
                                                                                          totalDonation,totalPersonalRelief);
                                   list.add(person);
                                   line=inFile1.readLine();
                                   }//end while
                          inFile1.close();
                         }// end try
                    catch (Exception e)
                          e.printStackTrace();
                    }//end catch
                    do{
                              switch(choice)
                                   case 0:
                                   System.exit(0);
                                   break;
                                   case 1:
                                   // run list
                                   printList(list);
                                   break;
                                   case 2:
                                   printSummary(list);
                                   break;
                                   case 3:
                                   search(list,input);
                                   break;
                              }//end switch
                         System.out.print(menu);
                         choice = input.nextInt();
                         System.out.println("");
                         }// end do
                         while(choice !=0);
                         Collections.sort(list);
     }//end TaxPayerProgramme()
     private void total(ArrayList<TaxPayerRecord> list)
          // Declaration
          double total=0;
          // calculate total
               for (int i=0; i<list.size(); i++)
               total=+ tax(i,list);
          //print msg
          System.out.println("Total revenue collectable for year 2006 (S$): "+total+"\n");
     private double tax(int i,ArrayList<TaxPayerRecord> list)
          // Declaration
          double income;
          double tax;
          // calculate income
          income =list.get(i).getTotalIncome()-list.get(i).getTotalDonation()
                    -list.get(i).getTotalPersonalRelief();
          // calculate tax
               if (income>320000)
                    tax=(((income-320000)*0.21)+44850);
               else if (income>160000)
                    tax=(((income-160000)*0.18)+16050);
               else if (income>80000)
                    tax=(((income-80000)*0.145)+4450);
               else if (income>40000)
                    tax=(((income-40000)*0.0875)+950);
               else if (income>30000)
                    tax=(((income-30000)*0.0577)+375);
               else
                    tax=((income-20000)*0.0577);
          return tax;
     private void totalAge(ArrayList<TaxPayerRecord> list)
               // Declaration
               String msg;
               int i,age;
               double grp1=0;
               double grp2=0;
               double grp3=0;
               double grp4=0;
               // calculate revenue by age
                    for (i=0; i<list.size(); i++)
                    age= 2006- Integer.parseInt(list.get(i).getDateOfBirth().substring(6,list.get(i).getDateOfBirth().length()));
                    if (age>55)
                         grp4 =+ tax(i,list);
                    else if (age>35)
                         grp3 =+ tax(i,list);
                    else if (age>17)
                         grp2 =+ tax(i,list);
                    else
                         grp1 =+ tax(i,list);
               //print msg
               msg="Total revenue by age range (S$) \n"+
                    "\t"+"(1 to 17)"+"\t"+ grp1 +"\n"     +
                    "\t"+"(18 to 35)"+"\t"+ grp2 +"\n"     +
                    "\t"+"(36 to 55)"+"\t"+ grp3 +"\n"     +
                    "\t"+"(above 55)"+"\t"+ grp4 +"\n";
               System.out.println(msg);
    private void totalDistrict(ArrayList<TaxPayerRecord> list)
               int count=1;
               double temp=0;
               double [][] array = new double [list.size()][2];
                    for (int i=0; i<list.size(); i++)
                    array[0]=Double.parseDouble(list.get(i).getPostalCode().substring(0,2));
                    array[i][1]=tax(i,list);
               System.out.println("Total revenue by district (S$) ");
                    do{
                              for (int a=0; a<list.size(); a++)
                                   if (count == array[a][0] )
                                   temp=array[a][1];
                              }//end for loop
                         System.out.print("\t"+"(district "+count+")"+"\t"+ temp +"\n");
                         temp=0;
                         count++;
                    }while(count!= 80);// end of do_while loop
          System.out.print("\n");
     private void printList(ArrayList<TaxPayerRecord> list)
          System.out.println("List of Tax Payers fpr Year 2006");
               for (int i=0; i<list.size(); i++)
               System.out.println((i+1)+") "+list.get(i)+"|"+tax(i,list)+"\n");
     private void printSummary(ArrayList<TaxPayerRecord> list)
               total(list);
               totalAge(list);
               totalDistrict(list);
     private void search(ArrayList<TaxPayerRecord> list,Scanner input)
               int value;
               System.out.print("Enter NRIC Number: ");
               String nric = input.next();
               Collections.sort(list);
               value = Collections.binarySearch(list,nric);
     public static void main(String [] args)
               new TaxPayerProgramme();
Can someone help me with this?
I can't find the error.
The error msg display:
C:\Documents and Settings\Xiong\Desktop\TaxPayerProgramme.java:285: cannot find symbol
symbol : method binarySearch(java.util.ArrayList<TaxPayerRecord>,java.lang.String)
location: class java.util.Collections
               value = Collections.binarySearch(list,nric);
               ^
1 error
Tool completed with exit code 1

Well, this is the error, Java6 gives me on your code:The method binarySearch(List< ? extends Comparable<? super T> >, T) in the type Collections
is not applicable for the arguments (ArrayList<TaxPayerRecord>, String)     The method expects the first parameter, to be a List whose children are Comparable to the second parameter. Your second parameter is String, so the List should be on String not on TaxPayerRecord, or, your second parameter should be a TaxPayerRecord and not a String.
�dit: Another thought. From the error code you posted, I would assume, that you might have the wrong JDK libraries in your path.

Similar Messages

  • Problem with Collections.binarySearch()

    public class TaxPayerRecord implements Comparable <TaxPayerRecord>
    private String nric;
    private String name;
    private String dateOfBirth;
    private String gender;
    private String blockNo;
    private String unitNo;
    private String streetName;
    private String bldgName;
    private String postalCode;
    private long totalIncome;
    private long totalDonation;
    private long totalPersonalRelief;
    * Creates a new instance of TaxPayerRecord
    public TaxPayerRecord(String nric, String name, String dateOfBirth, String gender,
                   String blockNo, String unitNo, String streetName, String bldgName,
                   String postalCode, long totalIncome, long totalDonation,
                   long totalPersonalRelief)
    this.nric = nric;
    this.name = name;
    this.dateOfBirth = dateOfBirth;
    this.gender = gender;
    this.blockNo = blockNo;
    this.unitNo = unitNo;
    this.streetName = streetName;
    this.bldgName = bldgName;
    this.postalCode = postalCode;
    this.totalIncome = totalIncome;
    this.totalDonation = totalDonation;
    this.totalPersonalRelief = totalPersonalRelief;
    public String toString()
    return nric+"|"+name+"|"+dateOfBirth+"|"+gender+"|"+blockNo+"|"+unitNo+"|"+streetName+"|"+
    bldgName+"|"+postalCode+"|"+totalIncome+"|"+totalDonation+"|"+
    totalPersonalRelief;
    public long getTotalIncome()
    return totalIncome;
    public long getTotalDonation()
    return totalDonation;
    public long getTotalPersonalRelief()
    return totalPersonalRelief;
    public String getDateOfBirth()
    return dateOfBirth;
    public String getPostalCode()
    return postalCode;
    public int compareTo (TaxPayerRecord next)
              return this.nric.compareTo(next.nric);
    } //TaxPayerRecord
    import java.io.*;
    import java.util.*;
    public class TaxPayerProgramme
         public TaxPayerProgramme()
                             String menu = "Options: \n"
                                            + "1. Compute And Print List Of Tax Payers (Sorted by NRIC) \n"
                                            + "2. Compute And Summary Of Tax Revenue \n"
                                            + "3. Search for Tax Payer by NRIC \n"
                                            + "Enter option(1-2,0 to quit): ";
                             System.out.print(menu);
                             Scanner input = new Scanner( System.in );
                             int choice = input.nextInt();
                             System.out.println("");
                        // Declaration
                             ArrayList<TaxPayerRecord> list = new ArrayList<TaxPayerRecord>();
                             String inFile ="TaxPayer2005.txt";
                             String line = "";
                             String nric;
                             String name;
                             String dateOfBirth;
                             String gender;
                             String blockNo;
                             String unitNo;
                             String streetName;
                             String bldgName;
                             String postalCode;
                             long totalIncome;
                             long totalDonation;
                             long totalPersonalRelief;
                        try{
                             //Read from file
                             FileReader fr = new FileReader (inFile);
                             BufferedReader inFile1= new BufferedReader (fr);
                        line=inFile1.readLine();
                                       while (line!=null)
                                       StringTokenizer tokenizer = new StringTokenizer(line,"|");
                                       nric=tokenizer.nextToken();
                                       name=tokenizer.nextToken();
                                       dateOfBirth=tokenizer.nextToken();
                                       gender=tokenizer.nextToken();
                                       blockNo=tokenizer.nextToken();
                                       unitNo=tokenizer.nextToken();
                                       streetName=tokenizer.nextToken();
                                       bldgName=tokenizer.nextToken();
                                       postalCode=tokenizer.nextToken();
                                       totalIncome=Long.parseLong(tokenizer.nextToken());
                                       totalDonation=Long.parseLong(tokenizer.nextToken());
                                       totalPersonalRelief=Long.parseLong(tokenizer.nextToken());
                                       TaxPayerRecord person = new TaxPayerRecord(nric,name,dateOfBirth,gender,blockNo,unitNo,
                                                                                              streetName,bldgName,postalCode,totalIncome,
                                                                                              totalDonation,totalPersonalRelief);
                                       list.add(person);
                                       line=inFile1.readLine();
                                       }//end while
                        inFile1.close();
                             }// end try
                        catch (Exception e)
                             e.printStackTrace();
                        }//end catch
                        do{
                                  switch(choice)
                                       case 0:
                                       System.exit(0);
                                       break;
                                       case 1:
                                       // run list
                                       printList(list);
                                       break;
                                       case 2:
                                       printSummary(list);
                                       break;
                                       case 3:
                                       search(list,input);
                                       break;
                                  }//end switch
                             System.out.print(menu);
                             choice = input.nextInt();
                             System.out.println("");
                             }// end do
                             while(choice !=0);
                             Collections.sort(list);
         }//end TaxPayerProgramme()
         private void total(ArrayList<TaxPayerRecord> list)
              // Declaration
              double total=0;
              // calculate total
                   for (int i=0; i<list.size(); i++)
                   total=+ tax(i,list);
              //print msg
              System.out.println("Total revenue collectable for year 2006 (S$): "+total+"\n");
         private double tax(int i,ArrayList<TaxPayerRecord> list)
              // Declaration
              double income;
              double tax;
              // calculate income
              income =list.get(i).getTotalIncome()-list.get(i).getTotalDonation()
                        -list.get(i).getTotalPersonalRelief();
              // calculate tax
                   if (income>320000)
                        tax=(((income-320000)*0.21)+44850);
                   else if (income>160000)
                        tax=(((income-160000)*0.18)+16050);
                   else if (income>80000)
                        tax=(((income-80000)*0.145)+4450);
                   else if (income>40000)
                        tax=(((income-40000)*0.0875)+950);
                   else if (income>30000)
                        tax=(((income-30000)*0.0577)+375);
                   else
                        tax=((income-20000)*0.0577);
              return tax;
         private void totalAge(ArrayList<TaxPayerRecord> list)
                   // Declaration
                   String msg;
                   int i,age;
                   double grp1=0;
                   double grp2=0;
                   double grp3=0;
                   double grp4=0;
                   // calculate revenue by age
                        for (i=0; i<list.size(); i++)
                        age= 2006- Integer.parseInt(list.get(i).getDateOfBirth().substring(6,list.get(i).getDateOfBirth().length()));
                        if (age>55)
                             grp4 =+ tax(i,list);
                        else if (age>35)
                             grp3 =+ tax(i,list);
                        else if (age>17)
                             grp2 =+ tax(i,list);
                        else
                             grp1 =+ tax(i,list);
                   //print msg
                   msg="Total revenue by age range (S$) \n"+
                        "\t"+"(1 to 17)"+"\t"+ grp1 +"\n"     +
                        "\t"+"(18 to 35)"+"\t"+ grp2 +"\n"     +
                        "\t"+"(36 to 55)"+"\t"+ grp3 +"\n"     +
                        "\t"+"(above 55)"+"\t"+ grp4 +"\n";
                   System.out.println(msg);
    private void totalDistrict(ArrayList<TaxPayerRecord> list)
                   int count=1;
                   double temp=0;
                   double [][] array = new double [list.size()][2];
                        for (int i=0; i<list.size(); i++)
                        array[0]=Double.parseDouble(list.get(i).getPostalCode().substring(0,2));
                        array[i][1]=tax(i,list);
                   System.out.println("Total revenue by district (S$) ");
                        do{
                                  for (int a=0; a<list.size(); a++)
                                       if (count == array[a][0] )
                                       temp=array[a][1];
                                  }//end for loop
                             System.out.print("\t"+"(district "+count+")"+"\t"+ temp +"\n");
                             temp=0;
                             count++;
                        }while(count!= 80);// end of do_while loop
              System.out.print("\n");
         private void printList(ArrayList<TaxPayerRecord> list)
              System.out.println("List of Tax Payers fpr Year 2006");
                   for (int i=0; i<list.size(); i++)
                   System.out.println((i+1)+") "+list.get(i)+"|"+tax(i,list)+"\n");
         private void printSummary(ArrayList<TaxPayerRecord> list)
                   total(list);
                   totalAge(list);
                   totalDistrict(list);
         private void search(ArrayList<TaxPayerRecord> list,Scanner input)
                   String nric;
                   int value;
                   System.out.print("Enter NRIC Number: ");
                   nric = input.next();
                   Collections.sort(list);
                   value = Collections.binarySearch(list,nric);
         public static void main(String [] args)
                   new TaxPayerProgramme();
    I keep getting this message:
    C:\Documents and Settings\Xiong\Desktop\TaxPayerProgramme.java:285: cannot find symbol
    symbol : method binarySearch(java.util.ArrayList<TaxPayerRecord>,java.lang.String)
    location: class java.util.Collections
                   value = Collections.binarySearch(list,nric);
                   ^
    1 error
    Tool completed with exit code 1

    You can't search a list of TacPayerRecords using a String.

  • Need Advice with Syncing Contacts Please

    Hi,
    I was originally going to post a question asking "How can I transfer my contacts from my iPhone to my iMac Address Book (which is currently empty)?" However, after spending over an hour searching for an answer online, it sounds like there's no easy way to do this.
    I'm new to Syncing and am wondering with all these hoops and hurdles if I am misunderstanding something fundamental about the process. It would seem natural to me that when I connect my iPhone to my iMac, that there would be an easy, even automatic way for all my contacts Sync (in my mind, share a mirror image), regardless of which device they were created on.
    I would greatly appreciate any thoughts. I would also be interested in people's thoughts on the free version of iCloud. For example, with iCloud i guess my phone would sync wirelessly and my iMac would update via my FiOS internet.... ?

    futureperfect wrote:
    Hi,
    I was originally going to post a question asking "How can I transfer my contacts from my iPhone to my iMac Address Book (which is currently empty)?" However, after spending over an hour searching for an answer online, it sounds like there's no easy way to do this.
    Actually, it's pretty simple. Make sure there is at least one entry in the address book on your Mac.
    Plug the phone it and go to the info tab for it in iTunes. Set it up to sync the contacts to the Mac address book. So long as the one on the Mac is NOT empty, you will be able to merge the two.
    Once you do that, changes made on one will be reflected on the other.
    You can't use iCloud on the Mac unless you update to OS X Lion.

  • If i reset my ipad can i install paye games for free if i sign back into my apple ID. Please i need help because i need to update my games but i need to put in this billing thing and i want to get rid of it so then i cant buy games with my credit card

    If i reset my ipad can i install paye games for free if i sign back into my apple ID. Please i need help because i need to update my games but i need to put in this billing thing and i want to get rid of it so then i cant buy games with my credit card

    Hello,
    As frustrating as it seems, your best to post any frustrations about the iPhone in the  iPhone discussion here:
    https://discussions.apple.com/community/iphone/using_iphone
    As this discussion is for iBook laptops.
    Best of Luck.

  • Need help to draw a graph from the output I get with my program please

    Hi all,
    I please need help with this program, I need to display the amount of money over the years (which the user has to enter via the textfields supplied)
    on a graph, I'm not sure what to do further with my program, but I have created a test with a System.out.println() method just to see if I get the correct output and it looks fine.
    My question is, how do I get the input that was entered by the user (the initial deposit amount as well as the number of years) and using these to draw up the graph? (I used a button for the user to click after he/she has entered both the deposit and year values to draw the graph but I don't know how to get this to work?)
    Please help me.
    The output that I got looked liked this: (just for a test!) - basically this kind of output must be shown on the graph...
    The initial deposit made was: 200.0
    After year: 1        Amount is:  210.00
    After year: 2        Amount is:  220.50
    After year: 3        Amount is:  231.53
    After year: 4        Amount is:  243.10
    After year: 5        Amount is:  255.26
    After year: 6        Amount is:  268.02
    After year: 7        Amount is:  281.42
    After year: 8        Amount is:  295.49
    After year: 9        Amount is:  310.27
    After year: 10        Amount is:  325.78
    After year: 11        Amount is:  342.07
    After year: 12        Amount is:  359.17
    After year: 13        Amount is:  377.13
    After year: 14        Amount is:  395.99
    After year: 15        Amount is:  415.79
    After year: 16        Amount is:  436.57
    After year: 17        Amount is:  458.40And here is my code that Iv'e done so far:
    import javax.swing.*;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.RenderingHints;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.lang.Math;
    import java.text.DecimalFormat;
    public class CompoundInterestProgram extends JFrame implements ActionListener {
        JLabel amountLabel = new JLabel("Please enter the initial deposit amount:");
        JTextField amountText = new JTextField(5);
        JLabel yearsLabel = new JLabel("Please enter the numbers of years:");
        JTextField yearstext = new JTextField(5);
        JButton drawButton = new JButton("Draw Graph");
        public CompoundInterestProgram() {
            super("Compound Interest Program");
            setSize(500, 500);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            amountText.addActionListener(this);
            yearstext.addActionListener(this);
            JPanel panel = new JPanel();
            panel.setBackground(Color.white);
            panel.add(amountLabel);
            amountLabel.setToolTipText("Range of deposit must be 20 - 200!");
            panel.add(amountText);
            panel.add(yearsLabel);
            yearsLabel.setToolTipText("Range of years must be 1 - 25!");
            panel.add(yearstext);
            panel.add(drawButton);
            add(panel);
            setVisible(true);
            public static void main(String[] args) {
                 DecimalFormat dec2 = new DecimalFormat( "0.00" );
                CompoundInterestProgram cip1 = new CompoundInterestProgram();
                JFrame f = new JFrame();
                f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                f.getContentPane().add(new GraphPanel());
                f.setSize(500, 500);
                f.setLocation(200,200);
                f.setVisible(true);
                Account a = new Account(200);
                System.out.println("The initial deposit made was: " + a.getBalance() + "\n");
                for (int year = 1; year <= 17; year++) {
                      System.out.println("After year: " + year + "   \t" + "Amount is:  " + dec2.format(a.getBalance() + a.calcInterest(year)));
              @Override
              public void actionPerformed(ActionEvent arg0) {
                   // TODO Auto-generated method stub
    class Account {
        double balance = 0;
        double interest = 0.05;
        public Account() {
             balance = 0;
             interest = 0.05;
        public Account(int deposit) {
             balance = deposit;
             interest = 0.05;
        public double calcInterest(int year) {
               return  balance * Math.pow((1 + interest), year) - balance;
        public double getBalance() {
              return balance;
    class GraphPanel extends JPanel {
        public GraphPanel() {
        public void paintComponent(Graphics g) {
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
            g2.setColor(Color.red);
    }Your help would be much appreciated.
    Thanks in advance.

    watertownjordan wrote:
    http://www.jgraph.com/jgraph.html
    The above is also good.Sorry but you need to look a bit more closely at URLs that you cite. What the OP wants is a chart (as in X against Y) not a graph (as in links and nodes) . 'jgraph' deals with links and nodes.
    The best free charting library that I know of is JFreeChart from www.jfree.org.

  • I have problem with buying in games , I got the massage that the purchased can not be completed , please contact iTunes support.. I need help for my case please

    I have problem with buying in games , I got the massage that the purchased can not be completed , please contact iTunes support.. I need help for my case please

    http://www.apple.com/support/itunes/contact/

  • I actually need help but cannot find the answer. Please.......Lately when open a new tab it does not open with a blank page. I don't want to set my homepage as

    I actually need help but cannot find the answer.
    Please.......Lately when open a new tab it does not open with a blank page. I don't want to set my homepage as blank as when I first open Firefox, it automatically loads my hotmail page. But then if I open other pages I don't get a blank page. Help, please?
    Thank you.
    ''[Personal information removed by moderator. Please read [[Forum and chat rules and guidelines]], thanks.]''

    hello, please refer to [[New Tab Page – show, hide and customize top sites]] in order to switch the feature off.

  • HT4061 need help with my iphone 4 i try to update last five  days but after updating to 6.1.2  it says that    We're sorry, we are unable to continue with your activation at this time. Please try again later, or c

    need help with my iphone 4 i try to update last five  days but after updating to 6.1.2  it says that
    We're sorry, we are unable to continue with your activation at this time. Please try again later, or c

    If the iPhone was hacked and unlocked via unofficial means, it has become locked again. Insert original SIM in the phone to activate with iTunes.

  • Need help to find photo's on my backup drive,since installing Mountain Lion cannot find where they are stored.The backups after ML install are greyed out except in Applications, MyFiles and Devices really welcome a hand with this please.

    I need help to find my photo's please (2500) on my backup drive.Lost them after doing a clean install of Mountan Lion I have tried to find them but had no luck.  I use Time Machine with a 1TB Western Digital usb drive. Thanking anyone in anticipation of a solution.

    -Reece,
    We only have 1 single domain, 1 domain forest, no subdomains, only alias. I had replied to the other post as well. But I am happy to paste it here in case anyone want to read it.
    So, after a few months of testing, capture and sending logs back and forth to Apple Engineers, we found out there is a setting in AD, under User Account that prevent us to log into AD from Mountain Lion. If you would go to your AD server, open up a user account properties, then go to Account tab, the "Do not require Kerberos preauthentication" option is checked. As soon as I uncheck that option, immediately I was able to log into AD on the Mac client. Apple engineers copied all my AD settings and setup a test environment on their end and match exact mine AD environment. They was able to reproduce this issue.
    The bad part about this is... our environment required the "Do not require Kerberos preauthentication" is checked in AD, in order for our users to login into some of our Unix and Linux services. Which mean that it is impossible for us to remove that check mark because most, if not all of them some way or another require to login into applications that run on Unix and Linux. Apple is working to see if they can come up with a fix. Apparently, no one has report this issue except us. I believe most of you out there don't have that check mark checked in your environment... Anyone out there have any suggestion to by pass or have a work around for this?

  • Help me please... need support with recovery on M305D-S483​1

    So I know I created the applications 1of1 disk, but for whatever reason it won't run.
    And I know I chose NOT to make the recovery disks (dumb I know) because there was that hidden partition on my disk to recover that way...
    Well now I need to recover, and when I press the zero key, I see the black screen appear with the words "HDD RECOVERY MODE" at the bottom, but then they disapear and the system boots up normally. It doesn't goto the RED LETTER screen.
    I've tried it several times... 
    I went into windows disk manager and the partition is there, but I can't seem to figure out how to get it to run or show me what's there. So I can make those disks... Can I just reinstall that toshiba software that makes the disks? Where would I find it, and what's it called?
    So, if I can, I need help getting that partition to load so I can wipe out my C drive and start over.
    If I can't, It makes no sense to pay Toshiba $30 for a set of recovery disks, that should be on the computer... (if that partition got wiped, it got wiped BY Toshiba when I sent my computer in for service, because I've not even THOUGHT about that partition since I bought the computer in 2008.) then I need to find another drive from another laptop, and change out the key code (i pulled the code off my computer with a key finder software thingi) or is there another way of me getting my vista back on here...
    I could have upgraded to windows 7 for $40, why would I want to pay $30 to Toshiba for something that's on my disk... 
    I'm a bit miffed right now, if you all couldn't tell... 
    Please let me know what I can do before I just throw out the whole computer in the trash. (I know it's old but it's what I have right now and would really like to get it working again)
    Thanks for your ear and help.

    You can try tapping f8 at start up to get to advanced start up options. Select safe mode, you can try to make recovery media from there. ( Start, all programs, Toshiba, support & recovery, recovery media creator )
    Let us know!
    Your support page is here :  http://support.toshiba.com/support/modelHome?freeT​ext=2060041
    Your manual, specs, and downloads are located there. 
    S70-ABT2N22 Windows 7 Pro & 8.1Pro, C55-A5180 Windows 8.1****Click on White “Kudos” STAR to say thanks!****

  • I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    You mean an image such as a scanned document?
    If that is the case, the file doesn't contain any text for Reader Out Loud to read. In order to fix that, you would need an application such as Adobe Acrobat that does Optical Character Recognition to convert the images to actual text.
    You can also try to export the file as a Word document or something else using ExportPDF which I believe offers OCR and is cheaper than Acrobat.

  • TS1702 Hello, I,m having problems with Polish spell check. It says in iPnstruction that this App (pages) should show my writing mistakes. Check spell button is on but but check spell is not working. Need help Please.

    Hello, I,m having problems with Polish spell check. It says in iPnstruction that this App (pages) should show my writing mistakes. Check spell button is on but but check spell is not working. Need help Please.

    Hello, I,m having problems with Polish spell check. It says in iPnstruction that this App (pages) should show my writing mistakes. Check spell button is on but but check spell is not working. Need help Please.

  • Need Help Please with Ipod 20G

    Long story short....I had my Ipod 4G and computer stolen several month ago on a business trip(have police report). A friend of mine recently purchased a new Video Ipod and gave me his old 20G...pretty nice of him! I am about to have iTunes loaded on to my new computer. Here are my questions I need help with please.
    1. Will I need to setup a new iTunes account or can I use my old one?
    2. Will I have to reset my newly acquired Ipod before I can place my music on it? I did back up about 80% of the songs from my old Ipod. Or will I be able to keep the 1500 songs my friend placed on it?
    3. Or would it be easier for me to give him back his, cough up the $300 dollars for a new one and start all over?
    Can't think of anything else I might need to know. If there is something I am missing and you could help fill in the blanks for me I would truly appreciate the help.
    Thanks so much!!
    20G   Windows 2000  
    20G   Windows 2000  

    1. No. You can use your old one.
    2. Will I have to reset my newly acquired Ipod before I can place my music on it? No, but iTunes may automatically do this, I will explain.
    I did back up about 80% of the songs from my old Ipod. Or will I be able to keep the 1500 songs my friend placed on it?
    Sorry, but it would not be legal to keep the 1500 songs on this iPod that were your friend's songs, assuming that he's still using/listening to them on another computer.
    3. No, I think it would be worth it to keep going, and use the 20GB iPod on your computer. It's not many hoops to jump through, and you should be up and syncing in no time.
    Overall, it's fairly easy, and I would suggest that you keep going with this iPod.
    My note from question #2:
    If you connect an iPod that hasn't been attatched to your computer before, iTunes will most likely display [to the effect of] this message when you connect the iPod for the first time:
    "The songs on the iPod "~~" are linked to another iTunes library. Would you like to replace the content of the iPod with this current iTunes library?"
    Be sure to click on "NO" when you recieve this message.
    Then, click on your iPod's name in the left panel of iTunes.
    Click on the "Music" tab.
    Deselect "Sync Music" if it is already set to this option.
    This means that your iPod is on manual managing now, instead of iTunes automatically transferring songs to your iPod, or deleting them, which is not what you want at this time.
    Now, if you have any songs on the iPod that you need to keep (i.e., if you have some of your songs on this iPod)you have a few options to transfer your iPod songs to your computer.
    Method 1 - Manually transfer your iPod songs to iTunes using MacMuse's post. See it here -> iPod songs to computer (MacMuse post)
    Method 2 - Add your iPod's folder into the iTunes library (via iTunes). Read this post here -> Using iTunes settings to transfer iPod songs to iTunes
    Method 3 - Use a third-party program to get the transferring done. For a Windows computer, CopyPod should work good. Also, you can try out YamiPod
    I hope that info helps you.
    -Kylene

  • I need help with the photo stream. Everytime I try to open it on my PC it says photo stream is unable and I have tried everuthing to enable it but it doesn't work. Any help, please?

    I need help with the photo stream. Everytime I try to open it on my PC it says photo stream is unable and I have tried everuthing to enable it but it doesn't work. Any help, please?

    Freezing, or crashing?
    ID on the Mac can produce reports that may (or may not) prove helpful in diagnosing the problem. I suspect this is something not directly related to InDesign, and maybe not to any of the Adobe apps directly since you seem to be having a problem in more than one. That often inidcates a problem at the system level.
    Nevertheless, it won't hurt to try to gather the reports. You'll find driections for how to generate them, and to post them on Pastebin.com (then put a link to them here) so we can see what's going on at Adobe Forums: InDesign CS5.5 Not Responding
    Do you happen to run a font manager? If so, which one, and waht version?

  • I need help with XML Gallery Fade in out transition. somebody please help me :(

    I need help with XML Gallery Fade in out transition. somebody please help me
    I have my post dont want to duplicate it

    The problem doesn't lie with your feed, although it does contain an error - you have given a non-existent sub-category. You need to stick to the categories and sub-categories listed here:
    http://www.apple.com/itunes/podcasts/specs.html#categories
    Subscribing to your feed from the iTunes Store page work as such, but the episodes throw up an error message. The problem lies with your episode media files: you are trying to stream them. Pasting the URL into a browser produces a download (where it should play the file) of a small file which does not play and in fact is a text file containing (in the case of ep.2) this:
    [Reference]
    Ref1=http://stream.riverratdoc.com/RiverratDoc/episode2.mp3?MSWMExt=.asf
    Ref2=http://70.33.177.247:80/RiverratDoc/episode2.mp3?MSWMExt=.asf
    You must provide a direct link to the actual mp3 file. Streaming won't work. The test is that if you paste the URL of the media file (as given in the feed) into the address bar of a browser it should play the file.

Maybe you are looking for