Can someone pls help me?

I am trying to "see & hear" my MACBOOK on my HDTV. I have the picture connected perfectly. But I cannot get the audio to work. I have hooked it with a cable from my Macbook where I put headphones and speakers into the back of the TV... can someone confirm which port I am supposed to have the red and white ends plugged in to?
Thank you VERY much.
HJB

Thank you. But I used the PC video in port from a DVI cable. So there is ONE light green round (but a LITTLE larger than most) port for "PC/DVI AUDIO IN" beside it. It obv does not correlate to the red and white plugs I have. Is there and do I need a special cable for that? Hope that makes sense.
Ideas?
Thanks so much.

Similar Messages

  • Can someone pls help me with this code

    The method createScreen() creates the first screen wherein the user makes a selection if he wants all the data ,in a range or single data.The problem comes in when the user makes a selection of single.that then displays the singleScreen() method.Then the user has to input a key data like date or invoice no on the basis of which all the information for that set of data is selected.Now if the user inputs a wrong key that does not exist for the first time the program says invalid entry of data,after u click ok on the option pane it prompts him to enter the data again.But since then whenever the user inputs wrong data the program says wrong data but after displaying the singlescreen again does not wait for input from the user it again flashes the option pane with the invalid entry message.and this goes on doubling everytime the user inputs wrong data.the second wrong entry of data flashes the error message twice,the third wrong entry flashes the option pane message 4 times and so on.What actually happens is it does not wait at the singlescreen() for user to input data ,it straight goes into displaying the JOptionPane message for wrong data entry so we have to click the optiion pane twice,four times and so on.
    Can someone pls help me with this!!!!!!!!!
    import java.util.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.text.*;
    import java.util.*;
    public class MainMenu extends JFrame implements ActionListener,ItemListener{
    //class     
         FileReaderDemo1 fd=new FileReaderDemo1();
         FileReaderDemo1 fr;
         Swing1Win sw;
    //primary
         int monthkey=1,counter=0;
         boolean flag=false,splitflag=false;
         String selection,monthselection,dateselection="01",yearselection="00",s,searchcriteria="By Date",datekey,smonthkey,invoiceno;
    //arrays
         String singlesearcharray[];
         String[] monthlist={"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec"};
         String[] datelist=new String[31];
         String[] yearlist=new String[100];
         String[] searchlist={"By Date","By Invoiceno"};
    //collection
         Hashtable allinvoicesdata=new Hashtable();
         Vector data=new Vector();
         Enumeration keydata;
    //components
         JButton next=new JButton("NEXT>>");
         JComboBox month,date,year,search;
         JLabel bydate,byinvno,trial;
         JTextField yeartext,invtext;
         JPanel panel1,panel2,panel3,panel4;
         JRadioButton single,range,all;
         ButtonGroup group;
         JButton select=new JButton("SELECT");
    //frame and layout declarations
         JFrame jf;
         Container con;
         GridBagLayout gridbag=new GridBagLayout();
         GridBagConstraints gc=new GridBagConstraints();
    //constructor
         MainMenu(){
              jf=new JFrame();
              con=getContentPane();
              con.setLayout(null);
              fr=new FileReaderDemo1();
              createScreen();
              setSize(500,250);
              setLocation(250,250);
              setVisible(true);
    //This is thefirst screen displayed
         public void createScreen(){
              group=new ButtonGroup();
              single=new JRadioButton("SINGLE");
              range=new JRadioButton("RANGE");
              all=new JRadioButton("ALL");
              search=new JComboBox(searchlist);
              group.add(single);
              group.add(range);
              group.add(all);
              single.setBounds(100,50,100,20);
              search.setBounds(200,50,100,20);
              range.setBounds(100,90,100,20);
              all.setBounds(100,130,100,20);
              select.setBounds(200,200,100,20);
              con.add(single);
              con.add(search);
              con.add(range);
              con.add(all);
              con.add(select);
              search.setEnabled(false);
              single.addItemListener(this);
              search.addActionListener(new MyActionListener());     
              range.addItemListener(this);
              all.addItemListener(this);
              select.addActionListener(this);
         public class MyActionListener implements ActionListener{
              public void actionPerformed(ActionEvent a){
                   JComboBox cb=(JComboBox)a.getSource();
                   if(a.getSource().equals(month))
                        monthkey=((cb.getSelectedIndex())+1);
                   if(a.getSource().equals(date)){
                        dateselection=(String)cb.getSelectedItem();
                   if(a.getSource().equals(year))
                        yearselection=(String)cb.getSelectedItem();
                   if(a.getSource().equals(search)){
                        searchcriteria=(String)cb.getSelectedItem();
         public void itemStateChanged(ItemEvent ie){
              if(ie.getItem()==single){
                   selection="single";     
                   search.setEnabled(true);
              else if (ie.getItem()==all){
                   selection="all";
                   search.setEnabled(false);
              else if (ie.getItem()==range){
                   search.setEnabled(false);
         public void actionPerformed(ActionEvent ae){          
              if(ae.getSource().equals(select))
                        if(selection.equals("single")){
                             singleScreen();
                        if(selection.equals("all"))
                             sw=new Swing1Win();
              if(ae.getSource().equals(next)){
                   if(monthkey<9)
                        smonthkey="0"+monthkey;
                   System.out.println(smonthkey+"/"+dateselection+"/"+yearselection+"it prints this");
                   allinvoicesdata=fr.read(searchcriteria);
                   if (searchcriteria.equals("By Date")){
                        System.out.println("it goes in this");
                        singleinvoice(smonthkey+"/"+dateselection+"/"+yearselection);
                   else if (searchcriteria.equals("By Invoiceno")){
                        invoiceno=invtext.getText();
                        singleinvoice(invoiceno);
                   if (flag == false){
                        System.out.println("flag is false");
                        singleScreen();
                   else{
                   System.out.println("its in here");
                   singlesearcharray=new String[data.size()];
                   data.copyInto(singlesearcharray);
                   sw=new Swing1Win(singlesearcharray);
         public void singleinvoice(String searchdata){
              keydata=allinvoicesdata.keys();
              while(keydata.hasMoreElements()){
                        s=(String)keydata.nextElement();
                        if(s.equals(searchdata)){
                             System.out.println(s);
                             flag=true;
                             break;
              if (flag==true){
                   System.out.println("vector found");
                   System.exit(0);
                   data= ((Vector)(allinvoicesdata.get(s)));
              else{
                   JOptionPane.showMessageDialog(jf,"Invalid entry of date : choose again");     
         public void singleScreen(){
              System.out.println("its at the start");
              con.removeAll();
              SwingUtilities.updateComponentTreeUI(con);
              con.setLayout(null);
              counter=0;
              panel2=new JPanel(gridbag);
              bydate=new JLabel("By Date : ");
              byinvno=new JLabel("By Invoice No : ");
              dateComboBox();
              invtext=new JTextField(6);
              gc.gridx=0;
              gc.gridy=0;
              gc.gridwidth=1;
              gridbag.setConstraints(month,gc);
              panel2.add(month);
              gc.gridx=1;
              gc.gridy=0;
              gridbag.setConstraints(date,gc);
              panel2.add(date);
              gc.gridx=2;
              gc.gridy=0;
              gc.gridwidth=1;
              gridbag.setConstraints(year,gc);
              panel2.add(year);
              bydate.setBounds(100,30,60,20);
              con.add(bydate);
              panel2.setBounds(170,30,200,30);
              con.add(panel2);
              byinvno.setBounds(100,70,100,20);
              invtext.setBounds(200,70,50,20);
              con.add(byinvno);
              con.add(invtext);
              next.setBounds(300,200,100,20);
              con.add(next);
              if (searchcriteria.equals("By Invoiceno")){
                   month.setEnabled(false);
                   date.setEnabled(false);
                   year.setEnabled(false);
              else if(searchcriteria.equals("By Date")){
                   byinvno.setEnabled(false);
                   invtext.setEnabled(false);
              monthkey=1;
              dateselection="01";
              yearselection="00";
              month.addActionListener(new MyActionListener());
              date.addActionListener(new MyActionListener());
              year.addActionListener(new MyActionListener());
              next.addActionListener(this);
              invtext.addKeyListener(new KeyAdapter(){
                   public void keyTyped(KeyEvent ke){
                        char c=ke.getKeyChar();
                        if ((c == KeyEvent.VK_BACK_SPACE) ||(c == KeyEvent.VK_DELETE)){
                             System.out.println(counter+"before");
                             counter--;               
                             System.out.println(counter+"after");
                        else
                             counter++;
                        if(counter>6){
                             System.out.println(counter);
                             counter--;
                             ke.consume();
                        else                    
                        if(!((Character.isDigit(c) || (c == KeyEvent.VK_BACK_SPACE) || (c == KeyEvent.VK_DELETE)))){
                             getToolkit().beep();
                             counter--;     
                             JOptionPane.showMessageDialog(null,"please enter numerical value");
                             ke.consume();
              System.out.println("its at the end");
         public void dateComboBox(){          
              for (int counter=0,day=01;day<=31;counter++,day++)
                   if(day<=9)
                        datelist[counter]="0"+String.valueOf(day);
                   else
                        datelist[counter]=String.valueOf(day);
              for(int counter=0,yr=00;yr<=99;yr++,counter++)
                   if(yr<=9)
                        yearlist[counter]="0"+String.valueOf(yr);
                   else
                        yearlist[counter]=String.valueOf(yr);
              month=new JComboBox(monthlist);
              date=new JComboBox(datelist);
              year=new JComboBox(yearlist);
         public static void main(String[] args){
              MainMenu mm=new MainMenu();
         public class WindowHandler extends WindowAdapter{
              public void windowClosing(WindowEvent we){
                   jf.dispose();
                   System.exit(0);
    }     

    Hi,
    I had a similar problem with a message dialog. Don't know if it is a bug, I was in a hurry and had no time to search the bug database... I found a solution by using keyPressed() and keyReleased() instead of keyTyped():
       private boolean pressed = false;
       public void keyPressed(KeyEvent e) {
          pressed = true;
       public void keyReleased(KeyEvent e) {
          if (!pressed) {
             e.consume();
             return;
          // Here you can test whatever key you want
       //...I don't know if it will help you, but it worked for me.
    Regards.

  • HT1152 hi can someone pls help

    hi can someone pls help
    my imac cannot read any discs and they keep ejecting
    thanku

    Intel-based Macs: Resetting the System Management Controller (SMC) - http://support.apple.com/kb/ht3964
    Apple Computers: Troubleshooting the slot-loading SuperDrive - http://support.apple.com/kb/HT2801

  • Can someone pls Help me: How to create a Fake target table(Dummy)  in DAC

    Hi There,
    Can someone pls Help me in creating a Fake target table(Dummy) in DAC?
    Thanks,
    Raghu

    Raghu
    You need to create a task so that you can hook sources and targets together.
    First, Design --> Tables tab --> New --> Below 'Edit' -->Table Type (Source) for your source tables.
    Design --> Tables tab --> New --> Below 'Edit' -->Check warehouse and Table Type (Fact or Fact Temporary) for your target tables.
    Points if helpful
    Kris

  • Hi! I have an iPhone 4s and when I FaceTime the sound is really low. When I phone call someone, its totally different and works better. I also have a MacBok Pro and the FaceTime sound works perfectly there as well. Can someone pls help me? Thanks :)

    Hi! I have an iPhone 4s and when I FaceTime the sound is really low. It´s really annoying. When I do phone calls it works, and on my MacBook Pro it works much better on FaceTime than on my phone. Can someone pls help to so solute this? Really need help! Thanks

    This sounds like something similar to https://discussions.apple.com/thread/3388112?start=105&tstart=0.
    Try turning down the speak volume (System Preferences->Sound->Output->Output Volume)  or the microphone gain (System Preferences->Sound->Input->Input Volume). Do this on both sides of the call.

  • Hi guys can someone pls help! im gg crazy...

    Hi guys can someone pls help! im gg crazy... im doing this java prograamming project and cant seem to work the Search function. My program compiles well and runs, but after i key in the details for "Add new customer" , and i attempt to search the customer name that i keyed in, the program does not return my input! My teacher says its something to do with assigning an array length or something but how do i code that.... Heres the code, pls try to help..
    import java.io.*;
    public class shop
    static String Name, Address,Gender,Country,Pdtname,Type,Dob,
    Hometel,Mobile,Purchase,ID,Cost,Quantity,Introdate;
    static int x;
    public static void main(String[] args) throws Exception
    char choice;
    do{
    System.out.println("MAIN MENU");
    System.out.println("(1). Add New Customer");
    System.out.println("(2). Search Customer");
    System.out.println("(6). Quit");
    System.out.print("Pls. enter a choice :");
    choice = Character.toUpperCase((char)System.in.read());
    System.in.read();
    System.in.read();
    switch(choice)
         case '1':Add();
         break;
         case '2':Search();
         break;
         case '6':Quit();
         break;
         default:System.out.println("- Sorry, You have entered an invalid option, please try again -");
    }while(choice != '6');
    public static void Add()throws Exception
         BufferedReader data=new BufferedReader
         (new InputStreamReader(System.in));
    String Name, Dob, Hometel, Mobile, Country, Purchase;
    boolean valid;
    int x;
    valid=true;
         do
         System.out.print("Please enter Customer's Name:");
         Name=data.readLine();
         if (Name.equals(""))
         System.out.println("Name must not be empty");
         else
         for (x=0; x<Name.length();x++)
         if(!(Character.isLetter(Name.charAt(x))) && Name.charAt(x) !=' ')
         System.out.println("Please enter letters only[A-Z] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Name.equals(""));
         do{
         System.out.print("Please enter Customer's Address:");
         Address=data.readLine();
         if (Address.equals(""))
         System.out.println("Address must not be empty");
         }while (Address.equals(""));
         do{
         System.out.print("Please enter Customer's Gender (M/F):");
         Gender=data.readLine();
         if (!Gender.equalsIgnoreCase("M") && !Gender.equalsIgnoreCase("F"))
         System.out.println("Please input either M or F");
         else
         if (Gender.equals(""))
         System.out.println("Gender must not be empty");
         }while (!Gender.equalsIgnoreCase("M") && !Gender.equalsIgnoreCase("F") || Gender.equals(""));
         do
         System.out.print("Please enter Customer's Date of Birth (dd/mm/yyyy):");
         Dob=data.readLine();
         if (Dob.equals(""))
         System.out.println("Dob must not be empty");
         else
         for (x=0; x<Dob.length();x++)
         if(!(Character.isDigit(Dob.charAt(x))) && Dob.charAt(x) !='/')
         System.out.println("Please enter only numbers in dd/mm/yyyy format");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Dob.equals(""));
         do
         System.out.print("Please enter Customer's Contact no(Home):");
         Hometel=data.readLine();
         if (Hometel.equals(""))
         System.out.println("Home number must not be empty");
         else
         for (x=0; x<Hometel.length();x++)
         if(!(Character.isDigit(Hometel.charAt(x))) && Hometel.charAt(x) !=' ')
         System.out.println("Please enter numbers only [0-9] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Hometel.equals(""));
         do
         System.out.print("Please enter Customer's Contact no(Mobile):");
         Mobile=data.readLine();
         if (Mobile.equals(""))
         System.out.println("Mobile number must not be empty");
         else
         for (x=0; x<Mobile.length();x++)
         if(!(Character.isDigit(Mobile.charAt(x))) && Mobile.charAt(x) !=' ')
         System.out.println("Please enter numbers only [0-9] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Mobile.equals(""));
         do
         System.out.print("Please enter Customer's Country:");
         Country=data.readLine();
         if (Country.equals(""))
         System.out.println("Country must not be empty");
         else
         for (x=0; x<Country.length();x++)
         if(!(Character.isLetter(Country.charAt(x))) && Country.charAt(x) !=' ')
         System.out.println("Please enter letters only[A-Z] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Country.equals(""));
    public static void Search()throws Exception
         BufferedReader data=new BufferedReader
         (new InputStreamReader(System.in));
         String target;
         boolean found;
         found=false;          //record not found
         System.out.print("Enter the name that you want to search:");
         target=data.readLine();
         if (target.equalsIgnoreCase(Name))
         System.out.println("The customer's name is "+Name);
         System.out.println("The customer's address is "+Address);
         System.out.println("The customer's gender is "+Gender);
         System.out.println("The customer's date of birth is "+Dob);
         System.out.println("The customer's home contact number is "+Hometel);
         System.out.println("The customer's mobile number is "+Mobile);
         System.out.println("The customer's Country is "+Country);
         System.out.println("Record found");
         found=true;               //record found
         if (found==false)
         System.out.println("Record not found");
         public static void Quit()
         System.out.println("Thank You For Using Database Application System Designed For Crystalodge Gift Shop");
    }

    Thank you for your interest in just plopping down your code and asking for someone to just fix it for you. We'll get right on it...

  • Can someone pls help me with java on my macbook pro because after i download the mountain lion java has died and i need java to see streaming quotes from stock market

    can someone pls help me with java on my macbook pro because after i download the mountain lion java has died and i need java to see streaming quotes from stock market

    Java is no longer included in Mac OS X by default. If you want Java, you will have to install it.
    However, note that you should think twice before installing Java for such a trivial need as looking at stock market quotes. There are other ways to get that information that don't involve Java, and using Java in your web browser is a HUGE security risk right now. Java has been vulnerable to attack almost constantly for the last year, and has become a very popular, frequently used method for getting malware installed via "drive-by downloads." You really, truly don't want to be using it. See:
    Java is vulnerable… Again?!
    http://java-0day.com

  • HT1212 The problem is that my iphone isnt connected/synced to iTunes and i've forgotten my password so iTunes isnt connected either so can someone pls help me?

    The problem is that my iphone isnt connected/synced to iTunes and i've forgotten my password so iTunes isnt connected either so can someone pls help me?
    PLEASE HELP ME

    Hi Someonewashere,
    In the article you were coming from, there is actually a section regarding what to do if you have never synced to iTunes before:
    If you have never synced your device with iTunes, or you do not have access to a computer
    If you see one of following alerts, you need to erase the device:
    "iTunes could not connect to the [device] because it is locked with a passcode. You must enter your passcode on the [device] before it can be used with iTunes."
    "You haven't chosen to have [device] trust this computer"
    If you have Find My iPhone enabled, you can use Remote Wipe to erase the contents of your device. If you have been using iCloud to back up, you may be able to restore the most recent backup to reset the passcode after the device has been erased.
    Alternatively, place the device in recovery mode and restore it to erase the device:
    Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to shut down.
    While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    Continue holding the Home button until you see the Connect to iTunes screen.
    iTunes will alert you that it has detected a device in recovery mode. Click OK, and then restore the device.
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/HT1212
    Regards,
    - Brenden

  • Can someone pls help me with setting up an apple id.Whats the itunes gift code?

    Hi,
    I have recently purchased an iphone 5S. I am not able to use my apple ID in app store as it states you have to reveiw it in itunes before you proceed.When i review it, it asks for my credit card details.Thats fine.However I am not able to get itunes gift code.Can someone help me with this.Thanks

    Hi,
    I have recently purchased an iphone 5S. I am not able to use my apple ID in app store as it states you have to reveiw it in itunes before you proceed.When i review it, it asks for my credit card details.Thats fine.However I am not able to get itunes gift code.Can someone help me with this.Thanks

  • Using weblogic as web server for Enterprise Manager can someone pls help?

    hello,
    can i have your help on this?
    i want to use Weblogic as web server instead of apache in the structure of Enterprise Manager 10g R3?
    have any of you try this? can someone please provide me some link related to how to configure Weblogic as web server for Enterprise Manager.
    Many thanks in advance
    Cheers,
    Cosmin

    You'll probably have better luck posting in the Enterprise Manager forum:
    Enterprise Manager

  • Trying to copy files and getting this error message, One or more items can't be copied because you don't have permission to read them. this is really annoying, can someone pls help..?

    i have two network drive and i am trying to copy a file from my mac mini to one of the network drives, but i keep getting this error message "One or more items can’t be copied because you don’t have permission to read them." i have no idea why this is since i have always been able to copy stuff back and forth. i checked my file sharing permissions and it is set to read and write for admin (me), none for everyone and read for guests. can someone please, this is very annoying and this is the second time it has happened to me.

    neither move nor copy is working. both way gives same error message. what i would like to do however is move the file. yes i am logged in as a the admin and the issue is affecting not just that particular file in my system but others as well. i looked at get info and no the file is not locked but under permission, it says everyone and read only. it will not let me change this setting from get info however when i look under system preferences for file sharing, my setting is read and write for admin (me), none for everyone and read for guests.

  • Can someone pls help me to change AS3 code to AS2 code

    Hello! Dear All,
    I dont understand why with AS3 code my swf file is not working smooth at all. I would like to try it with AS2. In publish setting when I am selecting Flash Player 8, AS2 my swf is running good but showing lots of code errors.
    I dont have much knowledge about AS2 so if someone can help me with this...it would be great.
    Thanks,
    Cheers!
    Code1:
    import flash.external.ExternalInterface;
    ExternalInterface.addCallback("GetVars",GetVars);
    ExternalInterface.addCallback("SetVariable1",SetVariable1);
    function GetVars():Array {
    return [
      {VariableName:"SetVariable1",DefaultValue:"Variable1"}
    function SetVariable1(variable:String):void {
    for (var i:int = 0; i < numChildren; i++) {
      var mc:MovieClip=getChildAt(i) as MovieClip;
      if (mc!=null&&mc.name=='Audi_Cup') {
       mc.variable1=variable;
       mc.SetVariable1(variable);
    Code 2
    this.mask_mc.cacheAsBitmap=true;
    this.mask_mc.cacheAsBitmap=true;
    Text1.mask=(mask_mc);
    function SetVariable1(variable:String):void {
    if (variable!=null) {
      for (var i:int = 0; i < numChildren; i++) {
       var mc:MovieClip=getChildAt(i) as MovieClip;
       if (mc!=null&&mc.name=='Text1') {
        var object:TextField=mc.getChildByName('InputTextField1') as TextField;
        if (object!=null) {
         object.text=variable;
    SetVariable1(this.variable1);

    it's possible, but unlikely, you'll fix anything by converting to as2.  so, what problems are you having with as3?

  • HT3986 blue screen of death when windows 7 is trying to complete install on iMac late 2006 running on Lion 10.7.5 with bootcamp 4.0.4...can someone pls help and thanks

    trying to install windows 7 32bit ultimate on my late 2006 iMac with bootcamp 4.0.4 running on Lion 10.7.5, but it can't complete install, the BSoD appears as soon as it tries to reboot to continue setup, last stage reached " setup preparing computer for first time use and registry change" never seen reaching setup checking video performance then BSoD kicks in followod by black screen sayinng windows did not shut down properly, tried in safe mode, with advance mode, rebooted in install disk and ran repair, says cant fix it automatically, with messge 07: Failure during setup o.s. version 6.1.7600.2.0.0.256.1, tried to install nvidia geforce 7600 but mac says cant or not needed, been trying everything i can for 2 days no sleep...im slowly losing it
    ...any help will be appreciated and thanks

    One person had iffy 3rd RAM.
    You updated AMD graphic driver too to 11.8+ right? not just Apple's.
    Plenty of free space for Windows to play with.
    Do a chkdsk
    Boot from Windows DVD and run memtest and also do system check
    Restore points are better used, and image Windows
    Rollback drivers works well, too
    Some had trouble after NetFrame 4? update in Windows (but not on my 3 computers)
    Apple drivers can be iffy and buggy
    AppleHFS.sys has been known to be trouble. HFS allows for filenames that NTFS won't.
    Paragon has HFS9.x driver that adds write support and does a better job
    BC 4.x is still it seems trouble for more than a few (but obviouslly not in the 10s of thousands)

  • I know my back up exists I can see it on disk utility but migration and disc utility wont work to restore my back up on my new hard drive it shows up with the message "this disk is already in use" i am so done. someone pls help me

    I know my back up exists I can see it on disk utility but migration and disc utility wont work to restore my back up on my new hard drive it shows up with the message "this disk is already in use" i am so done. someone pls help me

    Otherwise software may be attempted to access the drive. The the computer up in Safe Mode by holding shift when you turn it on. Also be sure to power off and on the hard drive itself.

  • I can't see + - up down icons for repeating region. Could someone pls help?

    I can't see + - up down icons for repeating region. Could someone pls help?

    Please elaborate like what sort of repeating region, which version of Dreamweaver. Perhaps an image that will help us to understand the question.

Maybe you are looking for

  • Service Registry in PI 7.1

    What difference does it make if we have service registry in PI 7.1? Is it compulsory and essential to have it?

  • Safari on ipad not logging onto website

    When attemting to logon to a secure site (such as my webmail account) Safari seems to hang or not pass full details through to the authenticating server and returns an error message (unable to log you on etc).  Any ideas - is there a setting on Safar

  • Moved half of right screen to left

    hi i have macbook pro 17'  made  2011 with vga 1 amd radeon core i 7 8gig ram hdd 750 last night when i worked my screen  got half and the part of half right went to left .. my quarranty support is finished . and i need to repair this .. as i ask  th

  • Srvctl config service should be updated using srvctl modify command

    Hai all, I have created a service recently on oracle RAC srvctl config service -d dbname -s servicename Disconnect: false Service role: PRIMARY Management policy: AUTOMATIC DTP transaction: false AQ HA notifications: false Failover type: NONE Failove

  • Sync yahoo contact and got address all mixed up

    I just sync my yahoo contact to my iPhone and saw that I have lots of friends named AAA. Also, some addresses and phone numbers are all mixed up. It feels like someone just grabbed the addresses and swapped them. Can anyone tell me what's going on? W