I don't know why my sound is not working

all of a sudden my sound is not working

@Katmar,
What is the product number?
Go to device manager and expand the sound category.  Is the sound card listed with an error?  If it has an error, open the device and let me know the status message.
If it is a recent issue, have you tried a system restore?
↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

Similar Messages

  • I keep getting "Unable to connect" for my firefox. It was working yesterday and I turned my computer off. I can get to the web using internet explorer 9. I don't know why my firefox is not working. Everything else is working. HELP....

    I keep getting "Unable to connect" for my firefox. It was working yesterday and I turned my computer off. I can get to the web using internet explorer 9. I don't know why my firefox is not working. Everything else is working.

    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.com/kb/Server+not+found
    *https://support.mozilla.com/kb/Firewalls

  • I don't know why my screensaver does not work...

    I Set up my screensaver through system preferences, but it doesn't go to screensaver mode on my laptop after the time it should begin..

    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can check for problems caused by recent Flash updates and try these:
    *disable a possible RealPlayer Browser Record Plugin extension for Firefox and update the RealPlayer if installed
    *disable protected mode in Flash 11.3 and later
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting

  • HeLLO I AM USING AN IPHONE 5 From Last few days I DON'T KNOW WHAT HAPEND TO MY SET ITS DISTURBING ME A LOT DON'T KNOW WHY BUT I AM NOT ABLE TO UPGRADE ANY APPS BECAUSE WHEN I AM TRYING TO UPGRADE OR DOWNLOAD ANY APP THROUGH WIFI ND 3G BOTH AFTER SOMETIME

    HeLLO I AM USING AN IPHONE 5 From Last few days I DON'T KNOW WHAT HAPEND TO MY SET ITS DISTURBING ME A LOT DON'T KNOW WHY BUT I AM NOT ABLE TO UPGRADE ANY APPS BECAUSE WHEN I AM TRYING TO UPGRADE OR DOWNLOAD ANY APP THROUGH WIFI ND 3G BOTH AFTER SOMETIMES IT STOPS DOWNLOADING AND SHows THAT "UNABLE TO DOWNLOAD THIS APP" IT'S SHOWING THIS MESSAGE IN EVERY APP AND ALSO AT ITS DISTURBING ME AT THE TIME OF WATCHING ANY VIDEOS TOO. BECAUSE WHEN I AM TRYING TO WATCH ANY VIDEO IN YOUTUBE IT'S DISTURBING VIDEOS ARE NOT PLAYING ND SOUNDS ARE NOT COMING PROPERLY ND THE IMAGE QUALITY ALSO BECOMES POOR AND THE VIDEO STOPS AFTER SOME TIMES THIS PROBLEM IS HAPPENING AT ALL THE VIDEO ND IT'S HARASSING A LOT. THE SAME PROBLEM IS ALSO HAPPENING TO MY BROTHER'S PHONE TOO.. REQUEST TO APPLE PLEASE ANALYSE AND FIXED THE PROBLEM AS SOON AS POSSIBLE OR ELSE MAYB I NEED TO STOP USING APPLE PRODUCTS. CAUSE IT'S HARASSING MY DAILY LIFE A LOT....

    These are user to user forums.  You ARE NOT addressing Apple by posting here.
    Also, why are you YELLING at us??  Stop using ALL CAPS.
    What steps have you done to try and fix the problem?

  • Hi, Someone Know why my charger is not working properly but always it was been working good but now when conect my iphone (3gs) shows a yellow triangle saying : Charging is not supported with this accessory. Please I need some help here. Thanks =D

    Hi Someone Know why my charger is not working properly but always it was been working good but now when conect my iphone (3gs) appears a golden triangle saying :Charging is not Supported with this accessory. Please I Need Some Help Here. Thanks =D

    sounds like the cable or the iphone connector are somehow damaged

  • I don't know why my code isn't working, Can you see what is wrong?

    I'm putting together a program that reads input from a text file and then decides what type of input it is (male or female) and then calculates the final sum for both.
    m=male and f=female. The numbers after the letter are GPAs. Here is the input file:
    m 2.4
    f 3.2
    m 3.7
    m 4.0
    f 2.9
    f 1.8
    f 3.8
    m 1.7
    m 3.4
    f 2.6
    m 2.8
    m 1.7
    f 3.7
    m 3.9
    f 4.0
    f 3.6
    m 2.3
    f 2.9
    m 3.0
    m 2.7now here is my code:
    import java.io.*;
    import java.util.*;
    public class gradecalc {
         * @param args the command line arguments
        public static void main(String[] args)
                                throws FileNotFoundException{
            // TODO code application logic here
    double sumMale=0;
    int numMale=0;
    double sumFemale=0;
    int numFemale=0;
    char gender;
    double gpa;
         Scanner inFile= new Scanner(new FileReader("gpa.txt"));
            PrintWriter outFile= new PrintWriter("gpaResult.txt");
    while (inFile.hasNext())
        gender= inFile.next().charAt(0);
        gpa= inFile.nextDouble();
        switch (gender)
            case 'M':
            case 'm':
                sumMale= sumMale + gpa;
                numMale++;
                break;
            case 'F':
            case 'f':
                sumFemale= sumFemale + gpa;
                numFemale++;
                break;
            default:
                System.out.println("Invalid gender code: "+gender);
    outFile.print("Sum of male students GPAs: " + sumMale);
    outFile.print("Sum of female students GPAs: " + sumFemale);
    outFile.close();
    }and this is the error message I get when I build and then try to run the program:
    init:
    deps-jar:
    compile:
    run:
    Exception in thread "main" java.util.NoSuchElementException
            at java.util.Scanner.throwFor(Scanner.java:838)
            at java.util.Scanner.next(Scanner.java:1461)
            at java.util.Scanner.nextDouble(Scanner.java:2387)
            at gradecalc.main(gradecalc.java:32)
    Java Result: 1
    BUILD SUCCESSFUL (total time: 0 seconds)I feel like I have the code right, yet it doesn't output anything to my file and gives me the above exception. What's the problem here??

    I actually figured it out. I think some of you programmers out there would be proud of me if you saw this completed code. This forum has really helped me out, but I still make some stupid mistakes. Like the one I realized I made on this program seconds after I made this pose. I realized that I had an unknown character at the end of my input document, which you can't see in my post because I must have not copied and pasted that part. I would delete this post, but don't know how.

  • I don´t know, why event counter doesn´t work

    Hi, I have a problem. I use DAQ 6221 and when I configure in test panel of Measurement & Automation the edge counting, this is functional. Now I trie to run the code example of DAQmx ANSI C Dev, CntDigEv_Fn and the code ran, I hadn't problem, but the counter wasn't functional. I don´t know what's wrong. Please If somebody know, please tell me. It´s very important.

    Hi,
    The first thing that I would make sure is that you have the correct device number in the example you are trying to run. That is, the default for this program is dev1, and if this is not the same as in MAX then obviously your program won't run. So, make sure that these are the same, and let me know either way what happens.
    George

  • Hello my name is Vittorio about 2 years agoi've bought an student teacher licensed cs6 master collection, which worked quite well until recently. I don't know why but now it quit working, and keeps asking for my serial number. When i enter my serial numbe

    Hello my name is Vittorio. 2 years ago i've bought the CS6 master collection which has worked perfectly until recently.
    Now i keep getting the question to enter my serial number and when i do that i get the Invalid reaction. But it is the same number that worked before! What can i do to make CS6 work again?

    Hi Vittorio,
    We would like to know if you have re-installed your product on this machine. We would also like to know your OS version.
    Meanwhile, try:
    Error "The serial number is not valid for this product" | Creative Suite
    Invalid serial number error
    Error "Invalid serial number" | Acrobat 9 | CS4
    -Atul Saini

  • HT5048 hello i dont know why my itunes is not working

    its says to download latest version of osx but i did and it wont work

    @Katmar,
    What is the product number?
    Go to device manager and expand the sound category.  Is the sound card listed with an error?  If it has an error, open the device and let me know the status message.
    If it is a recent issue, have you tried a system restore?
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Why does Sound Check not work?

    Although I've checked Sound Check the volumes vary from song to song. It worked previously, but after one of the Itunes updates it stopped working. Does anyone know what I can do?

    Make sure one of your iTunes updates did not flip your setting in iTunes for Sound Check

  • I don't understand why my code is not working please help!

    import(flash.events.MouseEvent);{
    stop();
    button1.addEventListener(MouseEvent.CLICK,showpic1);
    button1.addEventListener(MouseEvent.CLICK,showpic2);
    button1.addEventListener(MouseEvent.CLICK,showpic3);
    button1.addEventListener(MouseEvent.CLICK,showpic4);
    function showpic1(Event:MouseEvent);{
              gotoAndstop("pic1");
    function showpic2(Event:MouseEvent);{
              gotoAndstop("pic2");
    function showpic3(Event:MouseEvent);{
              gotoAndstop("pic3");
    function showpic4(Event:MouseEvent);{
              gotoAndstop("pic4");

    And another thing. Event (with capital E) is a particular datatype in AS3. You should avoid using reserved words. The handlers should look like this:
    function showpic1(event:MouseEvent);
              gotoAndStop("pic1");

  • I synced about 50 books to my new ipad air 2.  When I click any other books, the sync starts all over again for all books (it shows 51 books syncing).  If I abort the sync, all of a sudden, all books are gone from my ipad.  I don't know why.

    I synced about 50 books to my new ipad air 2.  When I click any other books, the sync starts all over again for all books (it shows 51 books syncing).  If I abort the sync, all of a sudden, all books are gone from my ipad.  I don't know why.  I did not have this problem on my old ipad...or before I upgraded to the latest version of iTunes.  Any help would be greatly appreciated.

    Hi were you able to resolve yours?
    I was very worried losing all my medical stuff on my iPad Air 2, plus i have nothing to use for the next day! So i have to try all the possible things i read on the internet!! And this worked on my part (Thank God, and thank you Google)
    Perform a hard reboot
    Hold down the Home button and Power button on your iPhone or iPad and keep holding them until you see the Apple logo. Once you do, you can let go. When your device boots back up, go ahead and check to see if the apps have started re-downloading. If they still appear to be stuck, continue on.

  • Why does streaming video not work?

    I have almost always had trouble streaming video....form Youtube and Netflix and other streams...and I don't know why! What needs to work better for streaming? Is a 3G hotspot connection not fast enough?? What do I need to do to make this seemingly simple operation run smooth?
    RSB

    3G is a painfully slow cellular connection. You would be much better off with a high speed internet connection. Cable or DSL depending on what may be offered in your area.

  • Why does Server Monitor not work with non-Xserves?

    Does anyone know why Server Monitor does not work with non-Xserve computers? We acquired a Power Mac for a server, based on there being no apparent difference except for the obvious. Turns out there are some differences after all.
    Do Power Macs lack some hardware components or is this just a software thing?

    God question, unfortunitly I dont have the answer but I would also like to know why the software only works for X-Serve....Is there any 3rd Party Software that is similar to "Server Monitor"?
    Thanks

  • My computer is making a terrible whirring sound.  I don't know why....?

    Hello! My computer is making a terrbile whirring sound, and I don't know why....?  I checked the CPU%, and there was nothing over 10%!  I am in confused on why the noise randomly starts up, and then stops.....  Can anybody help?
    Thank you!

    Good, open Time Machine and make sure that it is up to date (it should be) and then go to the Apple Store and have them diagnose what is making the noise.
    (I assume here that Time Machine is backing up to an external drive)

Maybe you are looking for

  • How do I get a photo back it i excidently deleted it

    I evidently deleted some pictures photos how do I get them back is there anyway to reset my iPad to go a few days back like on a computer ?

  • How to download the e-learning video

    Hi all, Does anyone know how to download the e-learning video in SAP Business One ? Because some of the links don't have the link for download and i must click it to watch the video. It will help me to watch it in offline connection. Thanks in advanc

  • Force exponential window in sound&vibration toolkit

    hello, I work on shock acquisition and analysis. I would like to use a window "force exponential" before computing fft. But I don't find the vi to do it directly in sound&vibration toolkit and VI express toolkit.  So I try to do it by using the VI in

  • Imapact of SQL Server Analysis services

    Hi  What will be the impact of installing analysis services on an existing SQL Server database which is shared among different web applications Project Server 2013 (PWA) and other SharePoint Applications?In my environment SQL Server database is share

  • How do I watch BBC iPlayer in full screen with flash player 10.1

    I was able to watch BBC iPlayer in full screen with Firefox. I can now only watch full screen with IE. Why can I not watch iPlayer in full screen with Firefox anymore? == After Flashplayer 10.1 installed