Still major problem with packages

Here is my record
Saved in C:/database/record/record.java
package database.record;
public class Record
     {                                               //Data mebers
          public int idNumber;             // Key field identifying each product
          public int serial;               // Serial number situated on product
          public int quantity;             // Quantity of each product
          public String product;           // The product's name
          public String supplier;          // Name of the supplier
          public Record()
                                               // Initialising data members
                    this.idNumber = 0;
                    this.serial = 0;
                    this.quantity = 0;
                    this.product = null;
                    this.supplier = null;
                                                     // Constructor for objects of class BeachRecord
          public Record(int Id, int SerialNumber, int Quantity, String ProductName, String SupplierName)
                    setID(Id);
                    setSerial(SerialNumber);
                    setQTY(Quantity);
                    setName(ProductName);
                    setSupplier(SupplierName);
                                                    // Set Id Number
                 public void setID(int id)
                    idNumber = id;
              }                                     // End Method
                                                   // Get Id Number
                   public int getID()
                    return idNumber;
              }                             //End Method
                                                  // Set Serial Number
                 public void setSerial(int serialNumber)
                    serial = serialNumber;
              }                                     // End Method
                                                   // Get Id Number
                   public int getSerial()
                    return serial;
              }                             //End Method
                                                  // Set Quantity
                 public void setQTY(int Quantity)
                    quantity = Quantity;
              }                                     // End Method
                                                   // Get Id Number
                   public int getQTY()
                    return quantity;
              }                             //End Method
                                                  // Set Product Name
                 public void setName(String productName)
                    product = productName;
              }                                     // End Method
                                                   // Get Id Number
                   public String getName()
                    return product;
              }                             //End Method
                                                  // Set Supplier Name
                 public void setSupplier(String supplierName)
                    supplier = supplierName;
              }                                     // End Method
                                                   // Get Id Number
                   public String getSupplier()
                    return product;
              }                             //End Method
   }// End Class BeachRecordThis class creates my text-file
Saved also in C:/database/record/
import java.io.FileNotFoundException;
import database.record.Record;
import java.lang.SecurityException;
import java.util.Formatter;
import java.util.FormatterClosedException;
import java.util.NoSuchElementException;
import java.util.Scanner;
public class CreateTextFileNew
   private Formatter output; // object used to output text to file
   // enable user to open file
   public void openFile()
      try
         output = new Formatter( "clients.txt" );
      } // end try
      catch ( SecurityException securityException )
         System.err.println(
            "You do not have write access to this file." );
         System.exit( 1 );
      } // end catch
      catch ( FileNotFoundException filesNotFoundException )
         System.err.println( "Error creating file." );
         System.exit( 1 );
      } // end catch
   } // end method openFile
   // add records to file
   public void addRecords()
      // object to be written to file
      Record record = new Record();
      Scanner input = new Scanner( System.in );
      System.out.printf( "%s\n%s\n%s\n%s\n\n",
         "To terminate input, type the end-of-file indicator ",
         "when you are prompted to enter input.",
         "On UNIX/Linux/Mac OS X type <ctrl> d then press Enter",
         "On Windows type <ctrl> z then press Enter" );
      System.out.printf( "%s\n%s",
         "Enter account number (> 0), first name, last name and balance.",
      while ( input.hasNext() ) // loop until end-of-file indicator
         try // output values to file
            // retrieve data to be output
                       record.setID(input.nextInt());
                     record.setSerial(input.nextInt());
                     record.setQTY(input.nextInt());
                     record.setName(input.next()) ;
                      record.setSupplier(input.next());
            if ( record.getID() > 0 )
               // write new record
                  output.format( "%d %s %s %.2f\n", record.getID(),
                  record.getSerial(), record.getQTY(), record.getSupplier(),
                  record.getName() );
            } // end if
            else
               System.out.println(
                  "Account number must be greater than 0." );
            } // end else
         } // end try
         catch ( FormatterClosedException formatterClosedException )
            System.err.println( "Error writing to file." );
            return;
         } // end catch
         catch ( NoSuchElementException elementException )
            System.err.println( "Invalid input. Please try again." );
            input.nextLine(); // discard input so user can try again
         } // end catch
         System.out.printf( "%s %s\n%s", "Enter account number (>0),",
            "first name, last name and balance.", "? " );
      } // end while
   } // end method addRecords
   // close file
   public void closeFile()
      if ( output != null )
         output.close();
   } // end method closeFile
} // end class CreateTextFileProblem is there:
public class CreateTextFileTest
   public static void main( String args[] )
      CreateTextFile application = new CreateTextFile();
      application.openFile();
      application.addRecords();
      application.closeFile();
   } // end main
} // end class CreateTextFileTestI get these errors:
C:\database\record\CreateTextFileTest.java:8: cannot find symbol
symbol : class CreateTextFile
location: class CreateTextFileTest
CreateTextFile application = new CreateTextFile();
^
C:\database\record\CreateTextFileTest.java:8: cannot find symbol
symbol : class CreateTextFile
location: class CreateTextFileTest
CreateTextFile application = new CreateTextFile();
I use TextPad, and i changed the parameters to
-classpath C:\ $File
Can somebody help me fix this please

ok i think that is fixed but i still get this:
here are the 2 last classes again
import java.io.FileNotFoundException;
import java.lang.SecurityException;
import java.util.Formatter;
import java.util.FormatterClosedException;
import java.util.NoSuchElementException;
import java.util.Scanner;
import com.deitel.jhtp6.ch14.AccountRecord;
public class CreateTextFile
   private Formatter output; // object used to output text to file
   // enable user to open file
   public void openFile()
      try
         output = new Formatter( "clients.txt" );
      } // end try
      catch ( SecurityException securityException )
         System.err.println(
            "You do not have write access to this file." );
         System.exit( 1 );
      } // end catch
      catch ( FileNotFoundException filesNotFoundException )
         System.err.println( "Error creating file." );
         System.exit( 1 );
      } // end catch
   } // end method openFile
   // add records to file
   public void addRecords()
      // object to be written to file
      AccountRecord record = new AccountRecord();
      Scanner input = new Scanner( System.in );
      System.out.printf( "%s\n%s\n%s\n%s\n\n",
         "To terminate input, type the end-of-file indicator ",
         "when you are prompted to enter input.",
         "On UNIX/Linux/Mac OS X type <ctrl> d then press Enter",
         "On Windows type <ctrl> z then press Enter" );
      System.out.printf( "%s\n%s",
         "Enter account number (> 0), first name, last name and balance.",
      while ( input.hasNext() ) // loop until end-of-file indicator
         try // output values to file
            // retrieve data to be output
            record.setAccount( input.nextInt() ); // read account number
            record.setFirstName( input.next() ); // read first name
            record.setLastName( input.next() ); // read last name
            record.setBalance( input.nextDouble() ); // read balance
            if ( record.getAccount() > 0 )
               // write new record
               output.format( "%d %s %s %.2f\n", record.getAccount(),
                  record.getFirstName(), record.getLastName(),
                  record.getBalance() );
            } // end if
            else
               System.out.println(
                  "Account number must be greater than 0." );
            } // end else
         } // end try
         catch ( FormatterClosedException formatterClosedException )
            System.err.println( "Error writing to file." );
            return;
         } // end catch
         catch ( NoSuchElementException elementException )
            System.err.println( "Invalid input. Please try again." );
            input.nextLine(); // discard input so user can try again
         } // end catch
         System.out.printf( "%s %s\n%s", "Enter account number (>0),",
            "first name, last name and balance.", "? " );
      } // end while
   } // end method addRecords
   // close file
   public void closeFile()
      if ( output != null )
         output.close();
   } // end method closeFile
} // end class CreateTextFile public class CreateTextFileTest
   public static void main( String args[] )
      CreateTextFile application = new CreateTextFile();
      application.openFile();
      application.addRecords();
      application.closeFile();
   } // end main
} // end class CreateTextFileTestThe CreateTextFileTest compiles now. i get an error in the CreateTextFile class:
:\com\deitel\jhtp6\ch14\CreateTextFile.java:10: package com.deitel.jhtp6.ch14 does not exist
import com.deitel.jhtp6.ch14.AccountRecord;
^
C:\com\deitel\jhtp6\ch14\CreateTextFile.java:40: cannot access AccountRecord
bad class file: .\AccountRecord.class
class file contains wrong class: com.deitel.jhtp6.ch14.AccountRecord
Please remove or make sure it appears in the correct subdirectory of the classpath.
AccountRecord record = new AccountRecord();

Similar Messages

  • Help: Still got problems with package

    I still got problems with my self-defined packages. My source files are all put in a directory as the package
    name suggests. The questions are:
    1. Before the classes in the package can be cited by the outside programmes, should I compile
    every sources files in the package respectively?
    2. Secondly, I want to put the .class files in another directory, such as \classes\package name, should
    I set the path mannully? If yes, how to do it?
    3. I downloaded some *.java files from Internet and put them in a directory as their package name suggested.
    However, when I run javac a.java I got error: cannot read a.java. What problem could it be?
    Thanks!

    1. Before the classes in the package can be cited by the outside programmes, should I compile
    every sources files in the package respectively?Yes, you can't run .java files. The JVM only uses the .class files, so you have to compile them.
    2. Secondly, I want to put the .class files in another directory, such as \classes\package name, should
    I set the path mannully? If yes, how to do it?You have to put the .class file in the package directory structure. You have no choice about that.
    3. I downloaded some *.java files from Internet and put them in a directory as their package name
    suggested. You need to read a lot of stuff, but start with this:
    http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/classpath.html
    However, when I run javac a.java I got error: cannot read a.java. What problem could it
    be?You don't run .java files. You run .class files.

  • 64-bit LabVIEW - still major problems with large data sets

    Hi Folks -
    I have LabVIEW 2009 64-bit version running on a Win7 64-bit OS with Intel Xeon dual quad core processor, 16 gbyte RAM.  With the release of this 64-bit version of LabVIEW, I expected to easily be able to handle x-ray computed tomography data sets in the 2 and 3-gbyte range in RAM since we now have access to all of the available RAM.  But I am having major problems - sluggish (and stoppage) operation of the program, inability to perform certain operations, etc.
    Here is how I store the 3-D data that consists of a series of images. I store each of my 2d images in a cluster, and then have the entire image series as an array of these clusters.  I then store this entire array of clusters in a queue which I regularly access using 'Preview Queue' and then operate on the image set, subsets of the images, or single images.
    Then enqueue:
    I remember talking to LabVIEW R&D years ago that this was a good way to do things because it allowed non-contiguous access to memory (versus contigous access that would be required if I stored my image series as 3-D array without the clusters) (R&D - this is what I remember, please correct if wrong).
    Because I am experiencing tremendous slowness in the program after these large data sets are loaded, and I think disk access as well to obtain memory beyond 16 gbytes, I am wondering if I need to use a different storage strategy that will allow seamless program operation while still using RAM storage (do not want to have to recall images from disk).
    I have other CT imaging programs that are running very well with these large data sets.
    This is a critical issue for me as I move forward with LabVIEW in this application.   I would like to work with LabVIEW R&D to solve this issue.  I am wondering if I should be thinking about establishing say, 10 queues, instead of 1, to address this.  It would mean a major program rewrite.
    Sincerely,
    Don

    First, I want to add that this strategy works reasonably well for data sets in the 600 - 700 mbyte range with the 64-bit LabVIEW. 
    With LabVIEW 32-bit, I00 - 200 mbyte sets were about the limit before I experienced problems.
    So I definitely noticed an improvement.
    I use the queuing strategy to move this large amount of data in RAM.   We could have used other means such a LV2 globals.  But the idea of clustering the 2-d array (image) and then having a series of those clustered arrays in an array (to see the final structure I showed in my diagram) versus using a 3-D array I believe even allowed me to get this far using RAM instead of recalling the images from disk.
    I am sure data copies are being made - yes, the memory is ballooning to 15 gbyte.  I probably need to have someone examine this code while I am explaining things to them live.  This is a very large application, and a significant amount of time would be required to simplify it, and that might not allow us to duplicate the problem.  In some of my applications, I use the in-place structure for indexing
    data out of arrays to minimize data copies.  I expect I might have to
    consider this strategy now here as well.  Just a thought.
    What I can do is send someone (in US) via large file transfer a 1.3 - 2.7 gbyte set of image data - and see how they would best advise on storing and extracting the images using RAM, how best to optimize the RAM usage, and not make data copies.  The operations that I apply on the images are irrelevant.  It is the storage, movement, and extractions that are causing the problems.  I can also show a screen shot(s) of how I extract the images (but I have major problems even before I get to that point),
    Can someone else comment on how data value references may help here, or how they have helped in one of their applications?  Would the use of this eliminate copies?   I currently have to wait for 64-bit version of the Advanced Signal Processing Toolkit for LabVIEW 2010 before I can move to LabVIEW 2010.
    Don

  • I am experiencing some major problems with my MacBook Pro. I have had some issues with it turning on/off at random times, but today, when starting, I get the grey start-up screen and a recovery bar. After filling in approx 1/4 of the way, the machine dies

    I am experiencing some major problems with my MacBook Pro. I have had some issues with it turning on/off at random times, but today, when starting, I get the grey start-up screen and a recovery bar. After filling in approx 1/4 of the way, the machine dies. After starting it in recovery mode, it will not allow me to download OS X Mavericks- it says the disk is locked. Any ideas? I do not have a back-up and do not want to erase everything before I have explored my options. Help?

    try forcing internet recover, hold 3 keys - command, option, r - you should see a spinning globe
    most people will tell you to do both pram and smc resets (google) and if you still have issues, either clean install (easy) or troubleshoot (hard)

  • Major problems with Premiere CS4

    Hello there!
    I'm having major problems with CS4. I recently bought a new computer - essentials are as follows:
    Intel Core i7 920 2.66GHz
    2 x Kingston 3x2GB, DDR3 1333MHz (=12 GB RAM)
    Ati Radeon HD 5770 v2
    Asus P6T SE, LGA1366, X58, DDR3, ATX
    2 x 500GB, Barracuda 7200.12 (RAID1), system disk
    2 x 1TB Barracuda 7200.12, media disks
    Windows 7 Pro 64 bit
    Adobe CS4 Production Premium + latest updates
    The problem I have has mostly to do with Premiere although I think the rest of Production Premium softwares should be running better on this computer as well.
    For starters, I was highly disappointed when I couldn't view a single HD clip from the Premiere timeline (it was an .m2ts rip from a previously self-burned Bluray disc) at all. Rendering is very slow and even after that the video doesn't run normally, showing just a few individual frames per second. When I point the timeline at a certain spot, it takes many seconds until even that very frame is shown in the monitor window.
    And this is not all - I decided to try with a basic DV AVI clip, previously captured with my PPro 1.5 on my earlier computer (3.2ghz Pentium from 2005). It's a native file so it doesn't even need rendering and still the same problem occurs. With normal playback only about 6-10 frames are shown per second. It's absolutely ridiculous - even my 2004 laptop runs DV AVIs more smoothly with PPro 1.5.
    While I'm running the Premiere, the level of used RAM comes only up to around 24 percents. The processor, then again, comes close to a hundred when play is pressed on the timeline.
    I haven't had such immense problems with other Production Premium softwares (though as I said, I think they should be running faster as well). Otherwise the computer is running smoothly.
    A friend of mine pointed out that the graphics card I'm using isn't on the Adobe website's list of supported ones with Premiere, but afaik it shouldn't even be a graphics card problem with this high-end machinery.
    So - I sure could use some help and ideas about how to get the Premiere working. My main intention for buying a new computer and Adobe CS4 Production Premium was to start HD editing after all! Thanks beforehand!

    Hi
    Yeah, I hope he solves problem and knows how it got solved and tells us all...it's like being a detective !  " Mr Plum did it in the "svchost" room ! "
    I got a little lost on this....
    You are welcome and I'm glad that it paid off so nicely for you. One more  suggestion, if I may: I'm a big fan of a fixed pagefile size. When making a  fresh install of Windows, one of my first actions is to set a fixed pagefile on  a different disk (min=max) before installing anything else on that different  disk and removing the pagefile on the C drive. This will ensure that the  pagefile in on the fastest part of the drive and will never be  fragmented.
    I think it used to be that I made swapfiles, or swapdisks which now seems to be called pagefile.  That in itself is a little confusing semantic wise, because of the use of mempage stuff.  It used to be that base memory was 640k, with the upper memory (to make up 1024 kb) was mostly for drivers and stuff.  If more memory was needed than 640k (an event the inventor never thought possible...  "who could want more than the enormous amount of 640K ?", he said..)..the extended and expanded memory got invented to swap memory pages from that 640k as needed with the rest of RAM.  That's basically correct right ?  Sooooo, I don't know if that still goes on, but I suspect it does, unless someone totally changes the architecture of the computer and cpu and fsb and everything...  but I don't know what is going on nowadays.  Anyway, there were other ways besides windows OS to create virtual memory on the hard drive, and Photoshop was one of the programs that could do that, I think.
    Why MS would want to call the swapdisk virtual memory "pagefile" is beyond me.
    Anyway, be that as it may, I understand that making the pagefile first on a drive so it's close to the center of the drive (heads don't have to travel far to access).  But I haven't added a lot of drives to a system before, and I suspect I will be pretty soon...and this is the part I don't get...
    You add drives and put OS on them?  So they are bootable ?  I've added a drive or two but just formatted and used as more storage but didn't put OS on them.  So that part is confusing...
    Then you take the pagefile off the C: drive ?  Are you then using the new drive as your boot drive and the C: drive is too full to use accept to run the programs already installed ?
    Thanks again !
    Rod

  • Strange major problem with 975X PowerUp Intel MOBO

    I’m suddenly having a strange major problem with a MSI 975X Platinum PowerUP Edition V2.1 MS-7246 Intel socket 775 motherboard. Previously, it had given me no problems at all.
    It went like this:
    Powered on system in the morning, booting from a cold start.
    Hit DEL key to get into the BIOS.
    Missed the window and the system booted into Windows normally.
    Re-started the system from within Windows.
    Hit DEL key to get into the BIOS and was successful the second time.
    Hit the ENTER key on the first item “Standard CMOS Features”.
    The DATE, TIME and other information was displayed on the next screen, but at this point, the BIOS screen became completely unresponsive to any keyboard input.
    The only thing I could do at that point was to power off.
    Subsequent power on boot-ups resulted in the system always freezing at the BIOS splash screen after the video card sign-on.
    I have switched power supplies, hard drives, keyboards and video cards. I have disconnected everything except the video card, keyboard and one RAM module. I have switched the four RAM modules around and then reduced the RAM to one 256MB module in the proper slot. I even changed the battery on the MOBO, in case it had shorted out and removed and re-seated the BIOS chip. It still halts at the BIOS splash screen.
    The BIOS chip can’t be completely dead, because I powered off and pushed the BIOS reset button on the MOBO to reset the BIOS to the factory defaults. When I re-booted, I could tell that it had actually reset to the factory defaults because I had previously set the BIOS to reboot the system on resumption of power and the factory default was to remain off until the power button was pushed, which was now the default.
    I’m stumped! All I can think of is to get a new pre-programmed BIOS chip and see if that makes any difference, but I’m not sure this system is even worth the expense with no guarantee of success. Any suggestions on how I might get past the BIOS splash screen or do I for sure have a corrupt BIOS chip?

    System specs as per the posting guidelines -
    Board: MSI 975X Platinum PowerUP Edition V2.1 MS-7246 Intel socket 775
    Bios: Version (can’t recall & can’t check since it won’t go past the BIOS splash screen)
    VGA: ASUS EN7600GS nVidia GeForce 7600GS PCI-e 256MB DDR2 (also tried new XFX nVidia
             Geforce 210 PCI-e 2.0 512MB DDR3)
    PSU: Chiefmax 680W ATX (also tried new OCZ 700W ATX)
    CPU: Intel 2.8GHz LGA-775 Core2 Duo Dual-Core Processor
    MEM: 4 x Samsung 512MB 1Rx8 PC2-5300U (2GB total)
    HDD: Seagate Barracuda 250GB SATA2 (also tried Seagate Barracuda 500GB SATA2)
    COOLER: Intel OEM LGA 775 fan/heatsink C25897-001
    OC: No
    OS: Vista Home Premium 32-bit
    I have been through the BIOS reset procedure several times and pretty much as outlined. As I said before, I could tell that it had taken a reset to the factory defaults, because the power on option had changed.

  • I had a major problem with my PC yesterday, and subsequently lost Mozilla Foxfire. When I reloaded it onto my PC it opened up with "Welcome to AOL - Mozilla Foxfire". I don't want AOL attached or tagged to Foxfire. How I do prevent that? And hopefully I h

    I had a major problem with my PC yesterday, and subsequently had to reload Mozilla Foxfire. When reloaded, it opened with "Welcome to AOL - Mozilla Foxfire". I don't want AOL associated or tagged with Foxfire. I went in to "Programs and Files" and deleted everything with AOL, including Quicktime. Tried loading Foxfire again, but it still opened with AOL tagged. I do use AOL for emails and some browsing, but I want to use Foxfire soley for browsing and search engine. And yes, I did also reload AOL. Can't seem to figure out why AOL is tagging onto Foxfire. Hopefully I have not lost all of my Foxfire Bookmarks - that would really suck.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729)

    Hello Larry.
    Hopefully this support article is what you need:
    http://support.mozilla.com/en-US/kb/How+to+set+the+home+page

  • I have a major problems with adobe air.

    i have a major problems with adobe air. day before yeasterday it work. now it tell me that it is musconfigure. so i have tried a download it again. but still not working.

    You really need to explain what you are doing, and what your "major problems" are.  We do not even know if you mean the AIR runtime, or AIR SDK?  Nor your operating system.

  • 10.9.3 = major problem with fast user switching

    I've found a major problem with the 10.9.3 update with my 27" iMac, you probably won't see it if your on a laptop. I did all the updates in past few days i.e., 10.9.3 combo update, iTunes 11.2.1.
    Afterward I noticed a bug when Fast User Switching i.e. FUS. I have 5 accounts but the bug can be replicated with only 2.
    I login to userA  have some windows open but you can just open a Finder window. Now make the window at least half the with of the screen and move it to the right side of the screen. Then login in to userB and setup the windows the same way as userA. Now FUS to userA and then back to userB. You will notice that the Finder window has been moved to the upper left corner of the screen. This problem happened's to all user accounts you login to except the first account you logged into.
    Since I didn't know what update caused the problem I had to use Time Machine to revert to my last version of 10.9.2. I then double checked the for the bug and sure enough everything was working fine. I now was going to install one update at a time and to see which one was causing the bug. So I installed 10.9.3 first and found the bug immediately.
    I now know what's happening. When the switch occurs the screen is resized to about the equivalent of a 13" MBP. At this point the windows that fall some ware outside that size get moved to the upper left corner and resized. Then the screen resizes to normal but it's too late, all the window have moved and been resized to fit the 13" screen size.
    You can reproduce this effect by going to System Preferences and selecting Display and then select the Scaled radio button. No select the smallest size, say, 1280 x 720. Now select the Best for display radio button again. You will now see all the windows you have open that were too big no moved and resized to the upper left corner. I know why the Mac moves the windows, it's so you don't have any windows stuck off screen.
    Now when I say 13" it could be some other size but it's about that size give or take.

    Yes, it's when you user Fast User Switching.
    Here's snapshot before the screen resized. Ignore the window in the lower right, I moved it from the upper left before taking the screen shot.
    I hate to say it but I'm glad I'm not the only one with this bug.

  • I had already update mi new factory unlocked iPhone 4S to iOS 5.1.1 and I still having problems with "invalid sim". I'm from Argentina and here we don't have official service. PLEASE HELP ME, WHAT CAN I DO??? In Argentina is too expensive an iPhone 4S.

    I had already update mi new factory unlocked iPhone 4S to iOS 5.1.1 and I still having problems with "invalid sim". I'm from Argentina and here we don't have official service. PLEASE HELP ME, WHAT CAN I DO??? In Argentina is too expensive an iPhone 4S. Please I need help to continue believing in Apple. Thanks a lot. If anybody speak spanish better.  

    Was it purchased from an official Apple Store, not a reseller?  Only Apple Stores sell official factory unlocked phones.  The others sell hacked to unlock phones, and the unlocking is unstable.
    Try these steps, as needed:
    1. Reset phone - press both home and on/off buttons for at least 10 seconds until the Apple logo appears.
    2. Settings > General > Reset > Reset Network Settings.
    3. Replace SIM card (and reset network settings again)
    4. Restore Phone in iTunes using a backup
    5. Restore in iTunes as new, without using a backup

  • I am having major problems with my trackpad on my macbook pro.  I can no longer press down on the bottom left and right corners for it to click and follow my command.  Please can anyone help?

    I am having major problems with my track pad on my macbook pro.  Even though my settings haven't changed...my trackpad is no longer responding as it did before.  The left hand corner no longer clicks when I press it and my personal commands which I set up in preferences no longer seem to be workin.  Please help!

    Some websites have an internal mute or volume setting. If that's not the issue, see below.
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data...
    and confirm. Close the window. Then select
               ▹ System Preferences… ▹ Flash Player ▹ Advanced ▹ Delete All...
    In the sheet that opens, check the box marked
              Delete All Site Data and Settings
    then click Delete Data. Close the preference pane.

  • I use only two channels, have plenty of memory in my hard disk, and external hard drive, no effects, and still having problems with Garage band. Giving messages as you have too many live channels

    I'm frustrated, I am doing everything you recommend, I use only two channels, have plenty of memory in my hard disk, and external hard drive, no effects, and still having problems with Garage band. Giving messages as you ave too many live channels, the disk is slow prepare...can you help?

    Quote from: Richard on 15-November-07, 20:33:05
    tornado2003,
    What you need to do is boot into Safe Mode. Then delete the VGA Drivers.
    After that boot normally and install the latest nVidia ForceWare Drivers
    Take Care,
    Richard
    i guess you missed that:
    Quote from: tornado2003 on 15-November-07, 17:26:52
    ive tryed booting xp in safe mode but it just freezes after it loads up a couple of needed files .
    ive even formatted my hard drive and tryed installing a fresh xp on it but it just keeps locking up when it gets to the "starting windows setup" .(this is just after it loads all the drivers from the xp cd)

  • I am still having problems with my music videos freezing (all purchased from iTunes) since the update.  Have restarted, rebooted etc. and it is worse than before.  Help!  Spent a lot of money on these and they won't play properly.

    I am still having problems with my music videos freezing (all purchased on iTunes) since the update.  The first day of the update, no problems...played 6 hours of music videos and no freezing.  Today...every single video froze!!! So frustrating!  I rebooted, restarted, powered down and no help.   I would appreciate any suggestions.  Thanks.

    I don't know how to do this without using a mouse point.
    This may help, http://www.computerhope.com/issues/ch000542.htm
    As for question #2, you call tell how iTunes is sorting songs by the up or down arrow next to a header name.
    Even the original order that the songs were entered or date added or last played can be sorted.
    Much easier with a mouse or touch pad.

  • Does anyone still have problems with Premier Pro on Maverick? and is there any known fix?

    Does anyone still have problems with Premier Pro on Maverick? and is there any known fix?

    I know OSX 10.9 Mavericks introduced a power saving feature called App Nap which is meant to slow down applications that it determins are inactive (or when minimized). This would mostly likely cause problems if you're dynamically linking After Effects comps to your timeline or sometimes exporting to Media Encoder.
    Try disabling App Nap for all your Adobe App files...
    Go to your Applications folder
    Go into individual Adobe app folders (ie. Adobe Premiere Pro CC)
    Right-click on the Adobe app file (ie. Adobe Premiere Pro CC.app) and select Get Info
    When the info window opens up, add a checkmark beside "Prevent App Nap"
    Restart the application
    This fixed all my performance issues.
    -Pete

  • Hi all, I'm still having problems with my security questions as they were not the ones I answered. Now I'm confused

    Still having problems with my security questions as they were not the ones I answered and now I'm confused.

    Howdy Paul,
    If you are having an issue with your Apple ID security questions, you can reset them using the steps in this article -
    If you forgot the answers to your Apple ID security questions - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

Maybe you are looking for

  • [RESOLVED] dbms_metadata.get_ddl() issues

    Hi all, I'm having a bit of an issue using the dbms_metadata package. I've never used it so possibly I'm unaware of something basic. I'm getting diferent results in my production and dev servers, both of which have this configuration: Oracle9i Enterp

  • OBIEE 11.1.1.6.2 BP1 - Sample Application (V207)

    Hi Experts, i have installed OBIEE 11g with patch released recently i.e. OBIEE 11.1.1.6.2 BP1. now i wanted to have look into Sample app, but when i go the link mentioned below for downloading. it downloads some VM files. is ther any link to download

  • Menu options not working in web reports

    Hai,      I made a template in WAD based on a query view. When I publish, none of the options in the menu, that appears when I right click on the characteric object, "Keep filter value, select filter value, remove drill down" etc. allof them doesn't

  • I have a Compaq Presario CQ62-213AX but i can't get 5.1 surround over HDMI. How can i get this?

    My Compaq Presario CQ62-213AX should be able to output 5.1 surround over HDMI but in 'supported formats' only stereo is listed. This computer has a ATI Mobility Radeon™ HD 5430 and according to the specs, http://www.amd.com/us/products/notebook/graph

  • How to clear WinJS listview

    I am new to WinJS, and want to clear a list view. I am having trouble even selecting the list view. When attaching events I selected list view like var listView = document.getElementById("listView"); listView.addEventListener("iteminvoked", goToJob);