Word Puzzle still not working

I have written the code to take a text file (from a command line argument) holding the information for the word find grid and also the file holding the words to be found in the grid. The whole find the two files and drop them into memory works all peachy keen but the rest of the program doesn't work for some oddball reason that I can't figure out (and the TAs are useless as usual). I dropped in print statements all over the world to see why it's not working but all I can see is that I hit the method SolvePuzzle and don't actually get any further than the print statement.
Just so you know, all of the methods in the program do work as I wrote them for another version of the same puzzle...it was just that I had to change the program to run with command line arguments instead of asking the user to input the file names. Please, can someone take a look at this monstrous mess and tell me how on earth I get the stupid thing to output correctly?
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.io.FileNotFoundException;
import java.util.Arrays;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
// WordFind class interface: solve word search puzzle
// CONSTRUCTION: with no initializer
// ******************PUBLIC OPERATIONS******************
// int solvePuzzle( )   --> Print all words found in the
//                          puzzle; return number of matches
public class WordFind
     * Constructor for WordFind class.
     * Prompts for and reads puzzle and dictionary files.
   public WordFind(String fname, String fname2 ) throws IOException
        loadPuzzle(fname, fname2);
        //solvePuzzle( );
     * Routine to solve the word search puzzle.
     * Performs checks in all eight directions.
     * @return number of matches
    public int solvePuzzle( )
        int matches = 0;
        for( int r = 0; r < rows; r++ )
            for( int c = 0; c < columns; c++ )
                for( int rd = -1; rd <= 1; rd++ )
                    for( int cd = -1; cd <= 1; cd++ )
                        if( rd != 0 || cd != 0 )
                            matches += solveDirection( r, c, rd, cd );
System.out.println("testing to see if we get BBOOOOO.");
        return matches;
     * Search the grid from a starting point and direction.
     * @return number of matches
    private int solveDirection( int baseRow, int baseCol, int rowDelta, int colDelta )
    System.out.println("testing to see if we get this far part 2.");
        String charSequence = "";
        int numMatches = 0;
        int searchResult;
        charSequence += theBoard[ baseRow ][ baseCol ];
        for( int i = baseRow + rowDelta, j = baseCol + colDelta;
                 i >= 0 && j >= 0 && i < rows && j < columns;
                 i += rowDelta, j += colDelta )
            charSequence += theBoard[ i ][ j ];
            searchResult = prefixSearch( theWords, charSequence );
            if( searchResult == theWords.length )
                break;
            if( !((String)theWords[ searchResult ]).startsWith( charSequence ) )
                break;
            if( theWords[ searchResult ].equals( charSequence ) )
                numMatches++;
                System.out.println( "Found " + charSequence + " at " +
                                    baseRow + " " + baseCol + " to " +
                                    i + " " + j );
        return numMatches;
     * Performs the binary search for word search.
     * @param a the sorted array of strings.
     * @param x the string to search for.
     * @return last position examined;
     *     this position either matches x, or x is
     *     a prefix of the mismatch, or there is no
     *     word for which x is a prefix.
    private static int prefixSearch( Object [ ] a, String x )
    System.out.println("testing to see if we get this far part 3.");
        int idx = Arrays.binarySearch( a, x );
        if( idx < 0 )
            return -idx - 1;
        else
            return idx;
     private void loadPuzzle(String fname, String fname2)
      String oneLine;
      try {
         // open file for reading
         wsFile = new BufferedReader(new FileReader(fname));
         // get the row and columns
         oneLine = wsFile.readLine();
        List puzzleLines = new ArrayList( );
        if( ( oneLine = wsFile.readLine( ) ) == null )
            throw new IOException( "No lines in puzzle file" );
        int columns = oneLine.length( );
        puzzleLines.add( oneLine );
        while( ( oneLine = wsFile.readLine( ) ) != null )
           // if( oneLine.length( ) != columns )
           //     System.err.println( "Puzzle is not rectangular; skipping row" );
           // else
                puzzleLines.add( oneLine );
        int rows = puzzleLines.size( );
        theBoard = new char[ rows ][ columns ];
        Iterator itr = puzzleLines.iterator( );
        for( int r = 0; r < rows; r++ )
            String theLine = (String) itr.next( );
            theBoard[ r ] = theLine.toCharArray( );
               System.out.println(theBoard[r]);      
      //BufferedReader wsFile2;
      //ring oneLine;
      try {
         // open file for reading
         wsFile2 = new BufferedReader(new FileReader(fname2));
         List words = new ArrayList( );
        String lastWord = null;
        String thisWord;
        while( ( thisWord = wsFile2.readLine( ) ) != null )
           // if( lastWord != null && thisWord.compareTo( lastWord ) < 0 )
             //   System.err.println( "Dictionary is not sorted... skipping" );
              //  continue;
            words.add( thisWord );
            lastWord = thisWord;
        theWords = words.toArray( );
        System.out.println(words);
      catch (FileNotFoundException e)
         System.out.println("File not found.");
      catch (IOException e)
         System.out.println("IO error.");
     //solvePuzzle();
      // Cheap main
    public static void main( String [ ] args )
      String fname = args[0];
          String fname2 = args[1];
       // String fname = "cahsiers.txt";
        //String fname2 = "cashwords.txt";
        WordFind p = null;
            try{
                System.out.println(args[0] + " " + args[1]);
            p = new WordFind(fname, fname2);
                  catch (IOException e)
         System.out.println("IO error.");
             System.out.println( "Solving..." );
        p.solvePuzzle( );
   private char [][] theBoard;
   private int rows, columns;
   private Object [] theWords;
   private int numWords;
     private BufferedReader wsFile;
   private BufferedReader wsFile2;
}Sample output - notice the only output are the test print statements at the moment
cashiers.txt cashwords.txt
BSERENITYNZEKYI
ZBREAMOANARHECM
BBASSWGITOOLKAY
QSCENERYTNLCYMM
TUORTIASEAUBDPA
JZIVVVYYVDXOWSE
FSSENREDLIWAMIR
FIRSEHRSPNLTLTT
CLSCUILRTLYKAES
XAOHQKFOEFYLUSR
ORBGIIWYDSAQLEM
GEYITNEFPGOROEA
EKALNGGAXRERCGJ
TEKRAMSGCAFETOY
[ANTIQUE, BASS, BOAT, BREAM, CABIN, CAFE, CAMPSITE, CRAFTS, CROQUET, DOWNTOWN, D
UCK, FISHING, GEESE, GOLF, GROCERY STORE, HIKING, HONEY, INN, JAM, JELLY, LAKE,
LODGE, MARKET, MOUNTAIN, POND, PRESERVES, RELAXATION, RESORT, RIVER, SCENERY, SE
RENITY, SPA, STREAM, TROUT, VACATION, VALLEY, VIEW, WALLEYE, WILDERNESS, ]
Solving...
testing to see if we get BBOOOOO.
Press any key to continue...
Thanks for all your help.
Wulf

Your problem is the duplicate declarations of rows/columns
class fields
private int rows, columns;
and in loadPuzzle()
int columns = oneLine.length( );//remove int
int rows = puzzleLines.size( );//ditto
the 'int' makes rows/columns local to loadPuzzle(), leaving the class fields rows/colums = 0
the for loops of solvePuzzle() are not executed because rows = 0
also, in loadPuzzle() you seem to have an extra readLine() at the top. This could be by design, but you will lose the first line
// get the row and columns
oneLine = wsFile.readLine();//<--------------
List puzzleLines = new ArrayList( );

Similar Messages

  • Signed up twice for adobe pdf export to word and still not working - anyone else have this problem?

    signed up twice for adobe pdf export to word and still not working - anyone else have this problem?

    In XI.
    I can’t just export to word as I have done in the past in one simple click.  
    Convert to button is greyed out.
    Now I have to save the pdf file on c drive when I am in outlook…then goto export pdf file…then find file then export to word.
    I bought new computer with windows 8 (which is awful) and then bought pdf export again…
    Any thoughts on how I can get back to one simple click again when I open a pdf file from an email in outlook?
    Thank you,
    Mike

  • I want to share Microsoft word from my desktop mac to my laptop but every timeIi try and do it, it says that it can't open because it is not supported by the software. I have tried several times and updated it on the mac but its still not working.

    I want to share Microsoft word from my desktop mac to my laptop but every timeIi try and do it, it says that it can't open because it is not supported by the software. I have tried several times and updated it on the mac but its still not working. Any ideas?

    You need to install Office on the computer from the installer DVD or disc image you purchased.

  • Spotlight still not working in inDesign

    Why is it that after nearly TWO years the spotlight function in the open dialogue box is still not working in inDesign? Is this some sort of sick joke from the inDesign programmers? Why can it work when in the PASTE dialogue box but not the OPEN dialogue box? I discovered this fault years ago and wrote about it in length but it has yet to be addressed.

    Thank you Daniel,
    I omitted posting that the Search box in my Systems Preferences Window used to work, so that I do know what to look for: as I type letters the preference panes whose description contains the (partial) word I am typing should be highlighted by an undimmed circle.
    Unfortunately, in my case, the behavior I have is that regardless of what I type in the Search box in my Systems Prefernces Window, no icons are ever highlighted. Indeed, I can type the complete name of a preference pane, for example 'bluetooth', and while my entire Systems Preferences Window is dimmed, neither my Bluetooth preference pane icon nor any other preference pane icon is highlighted through the use of an undimmed circle about it.
    This failure of the Search box in the Systems Preferences Window has been experienced by other people. For example in this forum, viz:
    Reindexed my HD but no Spotlight preference in Preferences
    http://discussions.apple.com/thread.jspa?threadID=876847
    Unfortunately the solution posted in the above thread was to manually delete the ~/Library/Caches/com.apple.preferencepanes.cache and ~/Library/Caches/com.apple.preferencepanes.searchindexcache files. And as I posted I've tried not only manually deleting the above two files in terminal.app, but also deleting all of my cache files through the use AppleJack 1.4.3. Neither steps have returned the Search box in my Systems Preferences Window to working order.
    Alas, I'm still looking for suggestions...

  • Bluetooth Driver for dell(Inspiron N5110(ST: 3v82np1 ) is still not working well.

    Hi,
    I have tried installing "Dell Wireless 1701
    802.11 b/g/n, Bluetooth v3.0+HS Driver "
    But I saw neither wireless nor Bluetooth was defined.
    As  the drivers listed below are only  the driver for wireless and bluetooth, I almost tried all of them, except the last three.
    File TitleImportanceRelease DateVersionActions
    Intel Centrino Wireless-N 1030 WiFi Driver 
    (Driver) 
    Other Formats
    Description
    Intel 6230/N1030/N1000 WiFi Driver for win7 64-bit This package provides the driver for the Intel Centrino Wireless-N 1030 WiFi Driver and imore…
    Intel Centrino Wireless-N 1030/Advanced-N 6230
    Bluetooth Adapter Driver 
    (Driver)
    Description
    This package provides the Intel Centrino Wireless-N 1030/Advanced-N 6230 Bluetooth Adapter Driver and is supported on Inspiron N5110 and Vosmore…
    Dell Wireless 1701 802.11 b/g/n, Bluetooth v3.0+HS
    Driver 
    (Driver)
    Description
    This package provides the Dell Wireless 1701 802.11 b/g/n, Bluetooth v3.0+HS Driver and is supported on Inspiron N5110 and Vostro Notebook 3more…
    Dell Wireless 1702 WiFi + Bluetooth Driver 
    (Driver)
    s
    Description
    This package provides the Dell Wireless 1702 802.11 b/g/n, Bluetooth 3.0+HS Driver and is supported on Inspiron and Vostro Notebook models tmore…
    Intel Centrino Wireless-N 1000, Centrino Advanced-N
    6230, Centrino Wireless-N 1030, v.14.2.0.10, A01 
    (Driver)
    Recommended
    Description
    This package provides the Intel Centrino Wireless-N 1000/1030, Advanced-N 6230 Driver and is supported on Inspiron N5110 and Vostro Notebook more…
    Intel Centrino Advanced-N 6230/Wireless-N 1030
    Bluetooth Adapter Driver 
    (Driver)
    Description
    This package provides the Intel Centrino Advanced-N 6230/Wireless-N 1030 Bluetooth Adapter Driver and is supported on Inspiron N5110 and Vosmore…
    Add to My Download List
    Dell Wireless WLAN 1502 Half Mini-Card Driver 
    (Driver)
    Description
    This package provides the driver for Dell Wireless WLAN 1502 Half Mini-Card and is supported on Inspiron Notebook and Vostro Notebook modelmore
    Intel WiMax Link 6150 Driver 
    (Driver)
    Description
    This package provides the Intel WiMax Link 6150 Driver and is supported on Inspirion and XPS Notebook models that are running the following
    Realtek RTL8111E-VB Gigabit and RTL8105E-VB 10/100
    Ethernet Controller Driver 
    (Driver)
    Description
    This package provides the Realtek RTL8111E-VB Gigabit and RTL8105E-VB 10/100 Ethernet Controller Driver and is supported on Inspiron N5110 amore…
    I had to install Dell Wireless 1702 WiFi +
    Bluetooth Driver
    The wireless adapter was defined by this driver, however, the Bluetooth still has an exclamation mark in front of it, and when the Dell WLAN and Bluetooth client installation finished, a pop up message said that Windows couldn't install the device
    well, although there was a folder added in documents folder named 'Bluetooth Folder'
    Yes, the Bluetooth was named with 'Generic Bluetooth adapter' before installing 'Driver above'. However, after installing the driver above, the Bluetooth adapter named with ' Dell wireless 1702 Bluetooth v3.0". But as you see it's
    still not working will.
    The sceen shot shows the device manger before installing  Dell
    Wireless 1702 WiFi + Bluetooth Driver
    These screen shots shows the device manger after installing  Dell
    Wireless 1702 WiFi + Bluetooth Driver
    I've lit windows detect the operating program for this device on the internet, it said "Windows has detected that the operating  program of this device is up to date. As this screenshot shows.
    What should I do because nothing lift to try? If you have a look at the ninth drivers in my previous message, you will see that no other drivers for Bluetooth lift.
    Also, I have tried  to install Intel
    Centrino Wireless-N 1030 WiFi Driver 
    But I have been told that "the installation is blocked', This package of installation cannot be installed on your system' I don't know what this
    means, is it because Dell Wireless 1702 WiFi +
    Bluetooth Driver is being installed
    Could you please take some of your preciout time out to read carefully my points below to finish this problem?
    first:
    Yes, if you had a look at my first post, you would have seen that I really have downloaded and installed the drivers suitable for bluetooth, which was only Dell
    Wireless 1702 WiFi + Bluetooth Driver, which made the bluetooth recognized by Windows 7(64Bit). However, the bluetooth in the device manager still has an exclamation mark as it is shown in the device manager.
    I don't have any other drviers which can do more than the what Dell
    Wireless 1702 WiFi + Bluetooth Driver did because I have tried all the drivers listed under 'Network', exept the what are for Etherent.
    Yes, when I have tried adding the bluetooth between two laptops(Mohammad and Nasreen).  the bluetooth was added for both laptops as you see in these screenshots below:
    The Bluetooth devices of Nasreen's laptop whose bluetooth is having some problems in Device mangage.
    The Bluetooth devices of Mohammad's laptop  whosse Bluetooh is defined well in device manager.
    But there is still problem in the device managre as shown in the screenshot listed before.
    Second: (Important) That when I want to send files or recieving between two bluetooth added in either laptop, I could send them. Also, when I open the Mohammad's bluetooth added in Nansreen's laptop( screenshot
    below), I can show what is inside it.
     However, when I open the the Nasreen's bluetooth addd in Mohammad's laptop, I noticed  no reponse at all because as you see that disconnected is written in fornt "Nasreen-Pc" as this screenshot: 
    Although sometimes Nasreen-Pc gets connected as screenshot below, but I am still not able to open the Bluetooth folder of Nasreen-pc from Mohammad-pc. When trying to do that, no response is there.
    In other times, Nasreen-pc gets connected for a while, but it comes back disconnected.
    Third:: I noticed that the name of Laptop whose Bluetooth was added listed in 'My computer' for the laptop whose Bluetooth is having some problems in the device manager.(First Screen shot below)  However,
    the name of the laptop whose Bluetooth is having problems wasn't listed on other laptop's "my computer"(Second Screen shot below)
    Finally: : when I clicked "right-click" on "Nasreen-PC" and then clicking on "detecting and troublshooting issues", I found that windows informed me that :
    But which driver should I reinstall because I have already installed the Dell
    Wireless 1702 WiFi + Bluetooth Driver almost twice?
    A man should convert his anger and sadness into strength to continue living in this life.

    Certain driver packages contain drivers from some of the essential services only and for additional services, separate drivers must be installed. Additionally, the service is installed only if a compatible device is installed (or paired).
    Therefore, you are seeing the error.
    If you are using the Bluetooth L2CAP Interface and Bluetooth Remote Control services and not able to install the services, you can try unpairing the device, restart the PC, pair the device and then check. If that too fails, you need to install a suitable
    driver, sometimes even other OEM drivers solve the issue. You can Bing/Google about this. You can also contact Dell Support for more information.
    Balaji Kundalam
    Thanks a lot,
    I really didn't understand what you mean with in your first part the service is installed only if a compatible device is installed (or paired).
    The Bluetooth is integrated with
    the laptop, then  where other services will come from, all service are related to Bluetooth.
    If there are some additional services not related to Bluetooth,
    then how can I either let them functioning well or disable them in order to get rid of the yellow exclamation mark
    on the name of my laptop in the Device and printers.
    Also, I really have installed a
    BCBT7(Broadcom Bluetooth) for HP which really defined the same Bluetooth issue,
    Device manager after installing the entire setup of driver BCBT7(Broadcom Bluetooth) on HP laptop
    but  when trying to install the same
     BCBT7(Broadcom Bluetooth)  on Dell,  I faced the error below, although there is an icon for Bluetooth in
    the system tray. Also, the Bluetooth is integrated as
    you have seen in the device manager. 
    You didn't answer me: Third:: I noticed that the name of Laptop whose Bluetooth was added listed in 'My computer' for the laptop whose
    Bluetooth is having some problems in the device manager.(First Screen shot below)  However, the name of the laptop whose Bluetooth is having problems wasn't listed on other laptop's "my computer"(Second Screen shot below)
    A man should convert his anger and sadness into strength to continue living in this life.

  • IOS6 WIFI bug, still not work now, exhausted,help...

    Been like this a week now, tried every possiable way still not any help at all, it can connect the wifi, internet works for 1or 2 minuts then will faile again, changed one router and tried all different settings as still not work, someone told me they don't have this problem they are using different router,maybe it's because IOS6 have sort of confict with some brand router? I am using TPlink, should I keep invest different router and try? Or should I wait for bug fixed?
    Apple didn't give any suggestion to customer and time schedule for bug fixed, this is really **** me off...
    I will try to visit apple store to check if they can change a new one with IOS5 for me.

    They will not change you back to iOS 5. I asked.
    I spent almost 1 week trying to resolve this. Reboot the ipad, reboot my router, delete the network, rejoin the network. Nothing seems to work. I called the Apple support, spent 2 days. After trying every single solution (that I've already done before calling.. duhhh)..
    They told me to:
    - Go to iTunes.Back up all your data, transfer all purchases to your computer. Of course when I tried to transfer all my purchases, they stuck for hours, then crash everything. I had to redo this 3 times. HOURS!!!
    - Restore your iPad from your iTunes. It will erase everything in your iPad, then start fresh as new
    - Turn off your iPad
    - Turn off your router, give it 10-15 minutes, turn on your router
    - Turn on your iPad, join the network
    Even though finally it looks ok. I am still going to return this iPad and get a replacement. I just don't feel confident with the device anymore. I just bought my iPad less than 3 months, still got the box. The support told me I could swap my iPad, all I need is to see the Apple Genius. So I made appointment, otherwise the Genius won't see you.
    I got tons of questions again from the Genius. He said it is my router problem. Basically, I have a crappy router that came from my internet provider. He said that since they opened the store, he only knew TWO people came in with WIFI issue. I told him, all my other devices connect just fine... but of course, they're "oranges" not Apple.
    I thought I'll be getting my replacement right away, but no.. Genius had to place an order first, and they will call me again, and I have to make another appointment to pick it up. I wonder why they don't have one in stock. It's the NEW iPad!!! I hope they're not getting my replacement from some kinda refurbished factory.
    This is my first purchase with Apple. So far it is not a pleasant experience.

  • HT3964 my built-in isight camera will still not work on my macbook pro after completing smc reset.  The green light comes on but no video.

    my built-in isight camera will still not work on my macbook pro after completing smc reset.  The green light comes on but no video. 
    Any Suggestions?

    Restart the computer.

  • Jst got a iphone 4s and my itunes is not picking it up at all i have tried many things from the internet but still not working

    Please help ... Stressed new iphone user!!!!!!!!!! lol.
    i got a new iphone 4s on friday, people told me i needed to connect this to the itunes asap.
    i have had a ipod for 4 years and had no problem connecting to itunes before.
    at first my computer would not find the iphone so i looked up tips from apple and other internet sources ... after deleting temp files my computer picked up my iphone but itunes didnt... i kept getting a pop up when going on to itunes saying "this iphone cannot be used because the required software is not installed. Run the itunes installer to remove itunes, then install itunes again.
    So i did i did this serveral times and the pop still keeps coming up and everytime i reinstall itunes i have to delete temp files for my computer to pick my iphone up. i contacted apple and an adviser sent me a link to follow to delete itunes and other in a order which i did several times and still not worked.
    i tried my iphone on my mums computer and it has picked it up but in my mums itunes i want my itunes as i have purchased many songs. now my ipod wont even register to itunes. i also get a pop up from windows saying Host process for windows services stopped working and was closed ... i ahve followed all the advice for that even a clear up on my computer and still nothing. you can even find apple mobile device anywhere on the computer tho my mobile is charging when plugged in. i have tried everything that apple reccomends anyone able to help
    Thank you

    Try this article if you haven't already
    This is the only possibility that came to my mind when reading about your issue:
    "If an iPhone, iPad, or iPod touch is not recognized in iTunes on Windows, the Apple Mobile Device Service (AMDS) may need to be restarted"

  • My Macbook Pro is frozen on the login page with a white screen and only my login picture. How do I fix this? I can't turn it off and I closed it and let it charge but it's still not working.

    My Macbook Pro is frozen on the login page with a white screen and only my login picture. How do I fix this? I can't turn it off and I closed it and let it charge but it's still not working. It's only 3 months old and was working perfectly fine 30min before this happened.

    Hello Kierasully,
    I would start your troubleshooting with the article below for issues of not being able to log in to your Mac. Start with booting up in to Safe Boot as well as resetting PRAM on your Mac. If that does not work, then verify the hard drive with booting to the Recover HD and go to Disk Utility to verify it.
    Mac OS X: Gray screen appears during startup
    http://support.apple.com/en-us/ts2570
    Regards,
    -Norm G. 

  • TS5376 I'm having a problem with downloading and installing the new version of itunes for windows (11.1.4)  I have done everything the troubleshooting article has said and it is still not working properly.

    'm having a problem with downloading and installing the new version of itunes for windows (11.1.4)  I have done everything the troubleshooting article has said and it is still not working properly.  I have even done a repair to see if that works and it has not.  Has anyone else found a new way to get it working?

    Try Troubleshooting issues with iTunes for Windows updates.
    tt2

  • My ipad mini is not syncing music onto in, my ipad has been replaced to see whether the issue is to do with the ipad but its still not working. i have a a windows PC please help thanks

    my ipad mini is not syncing music onto in, my ipad has been replaced to see whether the issue is to do with the ipad but its still not working.
    ive tried everything and ive been to the store which was when i was given a new ipad mini. i have a a windows PC please help thanks

    Are you attempting to sync music from your iTunes Music Library on your PC?
    What options do you have set on the Music Tab for your iPad in iTunes?
    What happens when you sync?
    Any error messages?

  • Safari is not working on the Mac. Internet is fine, mail, App Store etc all working and connecting to Internet fine. Done the latest software update, still not working. When selecting a web address from bookmarks or typing in search bar, partial blue bar.

    Safari is not working on the Mac. Internet is fine. mail, App Store etc all working and connecting to Internet fine. Done the latest software update, still not working. When selecting a web address from bookmarks or typing in search bar, partial blue bar only and coloured wheel appears.

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.
    If you wish, you may be able to salvage the malfunctioning extension by uninstalling and reinstalling it. That will revert its settings to the defaults.
    If extensions aren't causing the problem, see below.
    Safari 5.0.1 or later: Slow or partial webpage loading, or webpage cannot be found

  • After successful installation of iTunes 10.6.1, iTunes will not open.  Tried complete uninstall and reinstall, still not working.  Cannot sync iPad or access iTunes at all.  Any suggestions?

    After successfully installing the iTunes upgrade to 10.6.1, Now I cannot open and access itunes.  I have tried a complete uninstall and reinstall and it is still not working. I have looked through many support communities for answers.  I added an iPad 2 almost a year ago and all was fine until my upgrade to the "cloud services" and upgrade to new version.  I have been without iTunes on my PC for a month.  Any suggestions on how to resolve this issue?

    I too have only recently encountered this problem. I have been able to burn disks before but it keeps making all these weird sounds. It might be a hardware problem but the fact that everything else that uses a disk works I doubt it.

  • I plug in my iPhone and this message showed. "This iPhone cannot be used because the required software is not installed. Run the iTunes installer to remove iTunes, then install the 64-bit version of iTunes." I did this but still not working. Please advise

    I have a problem with connecting my iPhone to iTunes. I uninstalled one of the computer program and restart my laptop. After restart my laptop and a message said that iTunes might not working because one of the component is missing and request to reinstall the iTunes. Hence I remove iTunes from my laptop and I reinstall iTunes to my laptop but still not working.
    Before this the iTunes will automatically launch when I plug in my iPhone. But after I reinstall iTunes, it's not working. When I try to plug in my iPhone after iTunes launched and message "This iPhone cannot be used because the required software is not installed. Run the iTunes installer to remove iTunes, then install the 64-bit version of iTunes." popped out. I did this twice but it's not working as well.
    Please advise what should I do to fix this.

    First make sue you are installing the 64 bit version of iTunes.
    Second make sure it is iTunes 10.7 or later.
    I would download a fresh copy of the 64 bit version of iTunes 11. After installation reboot your computer.
    Before connecting your phone reset your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider should one appear until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • My itune keeps saying i need the 64 bit, ive followed the instructions on redownloading itunes, but its still not working.

    my itune keeps saying i need the 64 bit, ive followed the instructions on redownloading itunes, but its still not working.

    Hello 19Brenda94
    Start with removing iTunes in the order of the first article states, which is iTunes, Apple Software Update, Apple Mobile Device Support, Bonjour, Apple Application Support (iTunes 9 or later). Once that is done, then download iTunes 64 bit version from the second link below and run that installer.
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/ht1923
    iTunes 11.1.5 for Windows (64-bit)
    http://support.apple.com/kb/DL1615
    Regards,
    -Norm G.

Maybe you are looking for

  • Wiki migration from 10.6.8 to 10.10 Server 4 no data loaded

    I'm trying to migrate wiki from an old OSX Server 10.6.8 to a brand new installation of 10.10.1 with Server App ver 4. I followed the article at http://krypted.com/mac-os-x/setup-os-x-yosemite-server-as-a-wiki-server/ I used the migration method: 1)

  • 6280 Screen light

    Hi, Something strange is going on with my 6280, after an hour i leave the phone on the table the phones screen wont go black, it stays on standby with i slightly lighted display it won't go black, Power save and sleep mode are on but it still doesn't

  • LSMW IBIP Unable to upload the PM operation task list

    Dear Experts, I'm trying to use LSMW to upload Equipment (PM) task list. I succeed in creating the Header of the task list, but not the operations. I have created 2 new structures :ZIBIPTLST  and ZIBIPTLOP Source structure  is : ZIBIPTLST u2026u2026u

  • Optical Audio Cable Troubles

    I recently purchased the the Panasonic G20 50" HDTV and the Panasonic blu-ray/reciever combo with surrond sound. I have the TV connected to the blu-ray player via the HDMI AV, I was told that I needed an optical audio cable to get surround sound from

  • FLAT file creation

    Hi, I want to create a .txt file at the time of Sharepoint feature activation. I am able to create that file using this code string fullFilePath = string.Format("{0}{1}", filePath, fileNmae); if (!System.IO.File.Exists(fullFilePath)) FileStream fs =