Need Help With Iteration Problem

So I recently decided I would try and make a program to help me edit my mp3 ID3 tags. I'm relatively new to Java but can usualy figure things out on my own. My code is rarely efficient but it gets the job done. So here's the deal. I got this package from ID3.org and started messing around with it. I can get it to edit the tags but not with an iteration. Here's my code:
import javax.swing.*;
import de.vdheide.mp3.*;
import java.io.*;
class ID3TagEdit {
     public static void main(String args[]) {
          String dir = chooseDir();
          String[] fileList = makeList(dir);
          String filename = "";
          for(int i = 0; fileList[i] != "null"; i++) {
               try {
                    filename = dir + "\\" + fileList;
                    MP3File currentFile = new MP3File(filename);
                    TagContent tc = currentFile.getArtist();
                    tc.setContent("TEST");
                    currentFile.setArtist(tc);
                    currentFile.update();
               catch(IOException e) {
                    System.out.println("Error 101");
               catch(FrameDamagedException e) {
                    System.out.println("Error 102");
               catch(NoMP3FrameException e) {
                    System.out.println("Error 103");
               catch(TagFormatException e) {
                    System.out.println("Error 104");
               catch(ID3Exception e) {
                    System.out.println("Error 105");
               catch(ID3v2WrongCRCException e) {
                    System.out.println("Error 106");
               catch(ID3v2Exception e) {
                    System.out.println("Error 107");
     public static String chooseDir() {
          String FolderPath = "";
          try {
               JFileChooser chooser = new JFileChooser();
               chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
               int returnVal = chooser.showOpenDialog(null);
               FolderPath = chooser.getSelectedFile().getPath();
          catch(IllegalArgumentException e) {
               System.out.println("Error 201");
          return FolderPath;
     public static String[] makeList(String dir) {
          File directory = new File(dir);
          String[] fileList = directory.list();
          return fileList;
If I don't iterate it then it will work. If I omit the 'for' loop and change the code to this:
                    filename = dir + "\\" + fileList[3];
                    MP3File currentFile = new MP3File(filename);
                    TagContent tc = currentFile.getArtist();
                    tc.setContent("TEST");
                    currentFile.setArtist(tc);
                    currentFile.update();
It works just fine. Any suggestions on what I'm doing wrong?

If I don't iterate it then it will work. If I omit
the 'for' loop and change the code to this:
It works just fine. Any suggestions on what I'm
doing wrong?You said
without loop it works just fine.Then what's the wrong?
If you don't use loop then your fileList may not be null.And then your program'll be in infinite loop.

Similar Messages

  • Need help with daq problem

    Hi,
    I need to generate a clock with a period of 20 micro seconds, duty cycle of
    approx 20% and a data line as well as an address line all linked to the clock
    pulse.
    I have tried many different solutions, all using the Daq PCI-1200 but nothing
    seems to work correctly. Usually the system bombs and I have to do a manual
    reset to over come the problem.
    Any suggestions?
    Ken

    Hallo, Ken,
    Du meintest am 20.02.00 zum Thema Need help with daq problem:
    > I need to generate a clock with a period of 20 micro seconds, duty
    > cycle of approx 20% and a data line as well as an address line all
    > linked to the clock pulse.
    You'll need an external clock, expecially under Windows.
    Windows ticks with appr. 18 Hz, and the CPU tick isn't always available
    when Windows tasks multi.
    Viele Gruesse!
    Helmut

  • Need help with getResource() problem under weblogic 6.1

    Hey all,
              I've got a serious problem that I can't figure out. This should be really
              simple - but it's alluding me. I have an ear file with a number of servlets
              inside it. This ear file also contains a resource that my servlets want to
              read from. This resource is located (within the ear file) at:
              "/content/structure/a.txt". The file contains raw ascii.
              To have my serlvet read from this file, I thought it would be as simple as:
              URL content =
              servlet.getServletContext().getResource("/content/structure/a.txt");
              // pw is an instance of PrintWriter
              pw.print(content.getContent());
              However, when I execute the above I get the following exception:
              java.lang.NullPointerException
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              at java.net.URLConnection.getContentHandler(URLConnection.java:979)
              at java.net.URLConnection.getContent(URLConnection.java:581)
              OK, so fine - I figure that I'm new to this. The documentation for the URL
              class tells me there is another way around this. It says that rather then
              calling getContent() directly, I can open a stream on the URL and read from
              that, like so:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              FileInputStream fis = content.openStream();
              but when I do this I get the following different exception:
              java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              Apparently this thing is trying to return a web-logic-specific stream (which
              is incompatible with an FileInputStream) - which I don't want to use or
              learn about since I want my stuff to work under other webservers.
              Can anyone tell me what I'm doing wrong? This should be simple.
              -john
              John Hilgedick
              WisdomTools, Inc.
              [email protected]
              

    Wenjin,
              I appreciate your response. I tried treating it as a normal InputStream -
              but it didn't make any difference. Here's what I did:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              InputStream is = (InputStream)content.getContent();
              And here's the exception:
              java.lang.NullPointerException^M
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)^M
              at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)^M
              at java.net.URLConnection.getContent(URLConnection.java:554)^M
              at java.net.URL.getContent(URL.java:807)^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              You can see that it is definitely breaking somewhere in getContent().
              If you have any other ideas, I'd appreciate hearing about them.
              -john
              ----- Original Message -----
              From: "Wenjin Zhang" <[email protected]>
              Newsgroups: weblogic.developer.interest.servlet
              Sent: Wednesday, November 20, 2002 5:03 PM
              Subject: Re: Need help with getResource() problem under weblogic 6.1
              >
              > The "/" in getServletContext().getResource("/content/structure/a.txt")
              means the
              > web (WAR) application root, not your EAR root.
              >
              > The ClassCastException is because that content.openStream() is not
              FileInputStream
              > and has nothing to do with Weblogic. You should treat it as normal
              InputStream.
              >
              >
              > "John Hilgedick" <[email protected]> wrote:
              > >Hey all,
              > >
              > >I've got a serious problem that I can't figure out. This should be
              really
              > >simple - but it's alluding me. I have an ear file with a number of
              servlets
              > >inside it. This ear file also contains a resource that my servlets want
              > >to
              > >read from. This resource is located (within the ear file) at:
              > >"/content/structure/a.txt". The file contains raw ascii.
              > >
              > >To have my serlvet read from this file, I thought it would be as simple
              > >as:
              > >
              > >URL content =
              > >servlet.getServletContext().getResource("/content/structure/a.txt");
              > >// pw is an instance of PrintWriter
              > >pw.print(content.getContent());
              > >
              > >However, when I execute the above I get the following exception:
              > >
              > >java.lang.NullPointerException
              > > at
              > >java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              > > at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)
              > > at java.net.URLConnection.getContent(URLConnection.java:581)
              > >
              > >OK, so fine - I figure that I'm new to this. The documentation for the
              > >URL
              > >class tells me there is another way around this. It says that rather
              > >then
              > >calling getContent() directly, I can open a stream on the URL and read
              > >from
              > >that, like so:
              > >
              > >URL content =
              >
              >servlet.getServletContext().getResource("/content/structure/scenario2resour
              c
              > >es.txt");
              > >FileInputStream fis = content.openStream();
              > >
              > >but when I do this I get the following different exception:
              > >
              > >java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              > > at Utility.writeFileToOutput(Utility.java:134)^M
              > >
              > >Apparently this thing is trying to return a web-logic-specific stream
              > >(which
              > >is incompatible with an FileInputStream) - which I don't want to use
              > >or
              > >learn about since I want my stuff to work under other webservers.
              > >
              > >Can anyone tell me what I'm doing wrong? This should be simple.
              > >
              > >-john
              > >
              > >
              > >--
              > >John Hilgedick
              > >WisdomTools, Inc.
              > >[email protected]
              > >
              > >
              >
              

  • Need Help with Scrolling Problem

    I have a JTree displayed in scrollpane. Based on search criterial I select the nodes where the search criteria is found. If the match is located off the screen further down into the tree, the node is highlighted but the scrollpane doesn't automatically scroll down to show it. Any help with this problem is appreciated.

    Wow.. Thanks. I thought I would need some fancy code to handle this problem. scrollPathToVisible did it for me. Thanks.

  • Need help with a problem after cloning my HD....

    I recently cloned my HD to a backup drive. I did an erase and install of Tiger on my original drive. I recently cloned everything back onto my original drive from my backup drive. Now when I go to boot up on my original drive, for the first time ever I must type a Username and Password to log on to the computer. Trouble with this is, I tried my username and password and it would not work. I double, triple, quadruple checked my spelling and tried different combinations just in case i was being stupid, NOPE. It won't let me log on to my main HD. Can anyone help with this?

    Let me get this straight. You did
    1: Cloned your original boot drive to a external - not a problem
    (did you boot from the clone to check it out?, did you use cloning software or???)
    2: You erased your original boot drive - ok no problem.
    3: You then installed Tiger on your original boot drive - ok no problem there
    4: But you cloned from your clone back onto your original, freshly installed Tiger drive?
    Why did you do this?
    Cloning copies the whole drive, all the little hidden stuff, copy protection etc.
    That's why it's called a clone.
    Did you mean to say you copied certain folders/files from the clone onto the new Tiger install on your original boot drive?
    What folders/files was these?
    You need to copy the contents of certain folders inside your User folder, not the folders themselves.
    What software did you use to clone with?
    Read my detailed instructions here
    http://homepage.mac.com/hogfish/Personal6.html
    http://homepage.mac.com/hogfish/Personal10.html

  • I need help with simple problems. im a student.

    i'd like to be advanced with my studies so i will post questions.. i need help on how to answer. thank you.
    1. create a java program that will evaluate if the value entered is a positive, negative, vowel, consonant and special characters.
    im actually done with the positive and negative using if else statements.. i used an integer data type. now my question is how do conjoin the characters when i need to evaluate a vowel and a consonant. i cant use char either. please help. i dont know what to do yet.
    2. create java program that will translate the input from numbers to words. e.g. input:123 output: one hundred twenty-three.
    i have an idea to use a switch case statement. but i have no idea on how will i be able to do it. so if you guys can help me.. well then thankies..

    Welcome to the Sun forums. First, please note that you have posted in the wrong forum. This forum is for topics related to Sun's JavaHelp product. You should post your questions in the New to Java forum.
    As part of your learning, you will have to develop the ability to select an approach to a problem, create a design that reflects that approach, and then implement the design with code that you create.
    So, it's inappropriate for us to take the problem statement that you have been given and short-circuit your learning process by giving you the implemented problem solution. We can comment on the individual questions that you may have, and point out problems and errors that we see in the code that you develop.
    As a hint, when you are stuck, forget about Java and programming. Just start with a sheet of paper and a pencil, and figure out how to layout the task on paper. The consider how to translate that to programming.
    If you have problems, post short example code that shows the problem, and explain your question clearly. We can't read minds.
    Make sure you post code correctly so that it's not mangled by the forum software, and so that formatting is maintained. Select your typed or pasted code block and press the CODE button above the typing area.

  • I like many need help with a problem of burning cds

    I am trying to burn a simple playlist to a memorex music cd-r. Every time I try a message pops up with the error code of 4261 and then pops out the cd. Any help will be very much appriciated as I am at my wits end with this problem. Thank you so very much!
    Windows, Media Center PC    

    Place the PSU in and connect the 20 pins connector and the 4 pins connector will do.
    You may also try swapping the RAMs with another one to test f the RAM is to be at fault.

  • Need help with video problems

    Hi!
    Back in May I was having problems with video on my Mac. I was helped by this site and am hoping for more help. I downloaded the realaudio, but was still having problems. I assumed because I was on dial up. It was so slow. It would take forever to load and then play for a few minutes then need to load some more. I now have DSL and was looking forward to kissing the video problems good-bye! My new problem is that when I try to watch or listen to anything like innertube it "stutters." Is there something else I should be doing? How can I fix this problem?

    With those specs you should be absolutely fine. I would suggest that you update to 10.4.10 at least (download the full Combo updater). Once you are on that:
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, QT 7.3 and OS 10.4.11. (If you are running Leopard, ensure that all plug-ins have been updated for OS 10.5)
    Assuming you already run Tiger versions OS 10.4.9 or above (this has not yet been verified with Leopard) and have Quicktime 7.2 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 10 for Mac from http://forms.real.com/real/player/blackjack.html?platform2=Mac%20OS%20X&product= RealPlayer%2010&proc=g3&lang=&show_list=0&src=macjack
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    Adobe FlashPlayer from http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS. This: http://www.macworld.co.uk/news/index.cfm?email&NewsID=19845 may also interest you.)
    In Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    See also the very informative post from QuickTimeKirk dated Dec 3, 2007 in this thread: http://discussions.apple.com/thread.jspa?threadID=1268489&tstart=0
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them).
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them).
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz.
    Important: Now repair permissions and restart.
    The world should now be your oyster!
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.

  • Need help with simple problem.......

    Hello, I'm fairly new to Java, taking my first year in it. I have a little applet that I have to write up but I'm having some difficulties. Someone please help :)
    OBJECTIVE: Print out the following using a FOR loop.
    OUTPUT:
    JavaProgramming
    JavaProgramming
    JavaProgramming
    JavaProgramming
    JavaProgramming
    I am really having trouble doing the loop and spacing, so that it would have "JavaProgramming" appear 5 times and automatically indent 2 spaces everytime. I've done a "HSA" Console Program (NOT APPLET) where there are 5 words that are not spaced but when I try to do the same in an applet, it simply wont repeat in the loop. Below is the program where there are 5 words WITHOUT spacing in my applet program, I don't know how to repeat it 5 times and have it space 2 times everytime :(
    public class Test extends Applet
        // Place instance variables here
        public void init ()
        } // init method
        public void paint (Graphics g)
            for (int i = 0 ; i < 5 ; i++)
                g.drawString ("JavaProgramming", 20, 20);
        } // paint method
    } // Test classThis will only show "JavaProgramming" once when i run the program. I need it to show 5 times, with 2 spaces indented every time!

    this:
    g.drawString ("JavaProgramming", 20, 20);
    probably needs to be something like:
    g.drawString("JavaProgramming", 20+(i*10), 20+(i*10));
    i.e: increase x and y pos for each iteration.

  • Need help with G4 problem

    Months ago I have a problem on my G4 MDD which intermittently shuts down after putting it to sleep. Now some new problems are coming out. First one I noticed is that sometimes even the power switch light would turn off even though the computer is still on. I can still use the internet and such but noticed that when I need to digitized video footage using FCE there would be some noise on the video which leads me to conclude that the power is unstable. Am I correct in this? 2nd problem is sometimes it will not even power up unless I either pull the plug and plug it in again or open the side of the computer. Now regarding opening the side of the computer, I noticed that if I powered it up with the side door opened and try to close it the computer will shut down. Sometimes I managed to close the door and it will stay on with out a problem. Right now I just leave the side door open and so far power seems to be ok for 72 hours. So is this a logic board problem or a connection problem between the psu and the logic board?

    I'm leaning towards Tom's opinion of heat, too. Modern Macs have thermal sensors that shut down the computer if key temps rise too high. Dual processor MDDs run especially hot, as do MDDs with both slots in the front drive bay occupied.
    The two cheap things to do first are a) give the inside a cleaning, focusing on the main fan and its housing, and b) check your workspace to ensure that there is room around the computer for intake and exhaust air.
    The primary air intake is not the four molded "ducts" on the front but rather the area at the bottom of the front panel below them. Keep that area clear--it's best not to put "bottom breather" computers like the MDD on the floor where that can pull in even more dirt. Crowding the exhaust in the back can run up temps, too. Try to position the tower so nothing is within 8 inches of the back,

  • Need help with download problems on Ipod-5th Generation

    Hello everyone. Another newbie here who is not technologically inclined but love their Ipod. I just purchased new music videos from the Itunes store, connected my Ipod to the PC and left everything alone until I saw the update complete prompt. However, I am now in a panic because not only did it not sync my new purchases but...all of my previously purchased TV shows, music videos, etc are no longer on my Ipod. I did not request nor click to have anything erased. What can I do to restore my complete library of tunes, videos, tv shows, as I have spent a lot of money on my purchases for this Ipod?
    Also, while I'm asking for help: do any of you have problems with downloads timing out before the downloads from the Itunes Store are complete? I purchased several music videos during downloads that said there was an error due to download timeouts; not only did the items never show up in my library but never synced to my Ipod. There were error codes assigned to these videos but...who do I do when this happens? Thanks in advance.

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    -  Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Noob needs help with dreamweaver- problem encountered

    madelinebeth.net
    This is the website i am trying to create. It is not
    complete, but on Safari it looks fine. When i open it on firefox,
    it gets all messed up and i dont know how to change it. It
    initially gets messed up on dreamweaver when i add links o
    different slices. Any help would be greatly appreciated.

    > is a bug in firefox that does not render correctly using
    tables
    Never heard of that. Are you sure?
    >yes you can use photoshop, fireworks, etc. thats what
    they are for
    Could not disagree more. Image apps are for
    creating/manipulating images.
    Period. The HTML they spew is second-rate at best.
    Walt
    "Silkrooster" <[email protected]> wrote in
    message
    news:g0t18h$erv$[email protected]..
    >A few things I see that need to be changed. your first
    issue is tables,
    >there
    > is a bug in firefox that does not render correctly using
    tables. I don't
    > recall
    > the bug and how it works, but the easiest way to
    overcome the bug is to
    > use css
    > instead of tables.
    > The other issue is to add a DTD at the top of your code,
    this will stop
    > the
    > browsers especially IE from using the quirks mode.
    > Other than that the code is fine. These problems can
    easily be fixed in
    > Dreamweaver. And yes you can use photoshop, fireworks,
    etc. thats what
    > they are
    > for, as long as you know the bugs they may create. The
    biggest being the
    > DTD,
    > next is the tables issue, which photoshop can use either
    tables or css.
    > Fireworks currently only supports tables, hopefully that
    will get fixed in
    > the
    > next version.
    > To make sure your code is correct from the get go, it is
    best to
    > use
    > dreamweaver as it is aware of the DTD and can use css or
    tables.
    > I agree about the leopard skin, way too hard on the
    eyes.
    > Hope this helps
    >

  • Need help with Backup problems - anyone seen this before?

    I am experiencing 2 primary problems:
    1) When attempting a recent backup with HotSync on my desktop PC (Treo 700p, HotSync Manager v. 6.01, XP): I hadn't backed up for a few weeks, and this time it crashed sometime during the backup of the Calendar (and this behavior is repeated).  So I then unchecked the backup of Calendar, but then it just hung on Contacts for about 15 minutes, so I realized it wasn't doing anything anymore (I have lots of contacts, but not not 15 minutes worth).  At this point I gave up, but I obviously need to figure out how to make HotSync work again.  Any ideas?
    2) (not sure if this is the forum to address this): When using Backup Buddy v. 2.04 a couple of days ago, every time I tried to backup, it would get maybe 1/5th into the backup and crash and restart.  I figured out in short order that Address.DB is what was causing the crash. [I tried to e-mail the file so I could examine it and save it, but just attaching it in SnapperMail made the device crash].  So I took the chance of deleting the Address.DB (as it seemed small and didn't appear to contain any backup information), and it looks like all of my information was retained.  My question here is: two times since the initial problem, something has recreated Address.DB, which again causes the 700p to crash, so I have had to delete it again.  So when is this file being (re)created, and what is the purpose of it?
    An additional (minor) difficulty that I've had occur on a couple of occasions: After a recovery (where my BackupBuddy information was more current than my HotSync data), I restored, and all the calendar entries were double - 2 identical entries adjacent to one another. Has anyone seen this?
    Thanks in advance -
    B
    Post relates to: Treo 700p (Verizon)

    Sounds like the device has become corrupted.
    Post relates to: None

  • I NEED HELP WITH SYNC PROBLEM!

    I have already posted about this once and got no help! I can not afford Apple's greedy fee for helping us with a product we paid a lot for
    My iPad will not sync with iTunes anymore!
    The error I get is: The iPad "Jonnathon's iPad" cannot be synced. An error occurred while reading from the device.
    Sometimes the error is different saying it cant find a required disk.
    It always occurs just after downloading apps that had been purchased or updated since the last sync.
    I have made sure my iTunes is up to date and the iPad does have the latest version of it's OS.
    I did do a "Run Diagnostics" and did both "Device connectivity tests" and "Device sync tests" and no problems were found. But I still get the errors!

    This is wiered.You better call the Apple and say your problem.Maybe they could help you.Or maybe your iPad has a virus.If you think it has a virus , you have to restore it.

  • Hey guys i really need help with this problem...

    Hey guys how is everyone? I have a Soundblaster X-Fi XtremeMusic. and i am having a real annoying problem, here is how it all started. I took the time and dusted out my computer by using a can of air duster, and i think a little got on there and it turned into frost. Weird thing is it happened before and i never had this problem. I turn my computer on and crank the volume up i receive no sound what so ever. I know it has to work because i have a pair of DJ headset hooked into the jack, and i heard a little pop sound. And no audio, every last port on the card i cannot get no sound out of it except one of them, it's really annoying i hate this doing this and i have to hook my 5.1 using one jack just to get sound. And it doesnt sound good i have some really powerful 1,000 watt speakers with 2 amps. I know this is yet due to the fact i only have the lime jack in This is the only way it'll work. And i have a THX cable and it works sometime. I hope my soundcard isnt messed up. I really hope you guys can help me with this issue. I cannot contact creative cust service via email because i dont have my box no more, and my serial number is faded on the card (i think that was the serial)
    I try to explain the best way i can describe it. Below is my System Specs.
    <pre>Processor: AMD Athlon X3 425 @ 2.7GHz
    Video Card: ATI HD 5770 1GB
    Hard Drive:1TB Western Digital, 500GB Western Digital, 300GB Seagate (all SATA connections)
    Heatsink: Zalman CNPS7000C-Cu
    Power Supply: Antec 550 Watts True Power II
    Sound Card: Creative Soundblaster XI-FI Xtreme Music
    Motherboard: ASUS M4A79XTD EVO
    DVD Drives x2. Plextor DVD-RW/DL/ Sony DVD-ROM Drive via PATA connections</pre> Thanks in advance hope you all have a splended weekend.

    Hello
    Thank you for your help but unfortunately still have troubles with the soundcard.
    I upgraded my system to
    RAM: Corsair Vengeance LP 16GB DDR3
    Processor: AMD Phenom II X6 1090T Processor, Black Edition 3.3GHz
    Video Card: Sapphire 100314-3L Radeon HD 6870 1GB
    Hard Drive: 1TB Western Digital, 500GB Western Digital, 300GB Seagate (all SATA connections)
    Heatsink: Zalman CNPS7000C-Cu
    Power Supply: Corsair TX850W 850 Watt SLI/Crossfire Certified
    Sound Card: Creative Labs Soundblaster X-FI Titanium Fatal1ty Professional (getting this soon)
    Motherboard: ASUS M4A79XTD EVO (BIOS: 2102)
    DVD Drive(s): Plextor DVD-RW/DL/ Sony DVD-ROM Drive via PATA connections
    And i still run into problems i think its a matter of a hardware issue. The plugs dont really work
    only one does (where lime goes in) And the bass has toned down as well... Isn't as powerful
    as it used to be, so my best be is to upgrade to Creative Labs Soundblaster X-FI Titanium Fatal1ty Professional
    Thats my only hope...
    But again thank you for your help

Maybe you are looking for

  • HT3702 Hi Team,

    Hi team, I was registering my Credit Card, throgh my iPhone 5s, Issue is faced is that while entering the information i was tapping on done, and nothing was happening on the screen, so i though that it is not registered, so i keep on doing this for 7

  • Text Caption Doesn't Show in Edit

    Has anyone else had this issue, it has happened a few times for us: A Text Caption can not be seen, accessed or updated on the Edit Screen .. But, it is visible on the Thumb Nail, Timeline, and Storyboard. When a Preview is run, it also shows up as i

  • Actual settlement in tx CJ88

    Hi all, When doing actual settlement using Tx code CJ88, we are getting the following errors for different WBS: 1. Asset xxxxxxxxxxxx not in company code CEBM or 2. Either the sender is already settled, or there is nothing to settle                  

  • No sales organizations in the list

    When create any sales document error message "Enter a sales organization" appears but no Sales Organization exists in the list. The org. structure is created according to C01_BB_ConfigGuide. When editing a business partner in Sold-to-party role, no s

  • Query: Correlation ID and Correlation sets.

    Hello, Can somebody please brief me about the Concept and implementation of the correlation ID and correlation sets ? Thanks in advance.