Widescreen monitor problem needs different solution

Earlier solutions offered for my problem did not work. I switched to a 19" widescreen. Now when I use PSE, the images are stretched (for example, when I go to Print, the screen shows what should look like a blank 8 1/2 x 11 sheet with my photo on it, but it actually looks like a square sheet, and if I put a foto on that sheet and it looks square, but then go back and turn it 90 degrees and put it on that sheet, it looks like a rectangle) It was suggested that I change the resolution via ControlPanel/Display/Settings. I changed the setting from 1024x768 to 1280x1024, but all that did was reduce the amount of screen surface being used. The other option offered is 800x600 but that was not much better.
Ed

As Barbara said, the widescreen native resolutions are typically widths larger than 1280. But to be sure, look in your monitor's manual for its native resolution, of if you don't have the manual, look it up at the manufacturer's Web site. For example, a Dell 19" widescreen 1908WFP has a 1440 x 900 native resolution:
http://accessories.us.dell.com/sna/products/Displays/productdetail.aspx?c=us&l=en&s=dhs&cs =19&sku=320-6138

Similar Messages

  • L197 Widescreen Monitor Problems

    Hi,
    I have purchsed a L197 widescreen monitor which has a 16:10 aspect ration and Im running it at its optimal resolution of 1440x900 but Im getting think black lines on the sides like it is running at 4:3.
    I have updated drivers and have played around with different resolutions but its always the same.
    Anyone got any ideas why this may be?
    Thanks
    Solved!
    Go to Solution.

    Bring up the on-screen display and you should find a menu option to preserve (or not) the aspect ratio of the incoming signal.
    Not sure if this may help but give it a try.
    Tim.

  • Extrnal widescreen monitor problems

    Hi
    I Have recently bought a 19 inch widescreen monitor Acer AL1916w and the resolution setting is 1440 x 900 which comes up as well as the name of the monitor when it is plugged in, however it doesnt expand the full size of the screen it 's about the same size of my powerbook screen, it works on the 1024 res but obviously the quality is bad.
    Please Help
    Thanks stiltcreature

    Hi,
    if you mirror your internal display this behaviour is normal. have you pressed F7 once to switch to dual display ?
    Volker

  • MouseListener Problems - need code solution

    I've been banging my head against the wall the past month or so on this assignment of mine - i've come to the stage where i really some help from a person that really know the java - i have a due date coming up and i really need to output this program.
    I've been thru event handling, but the majority of the code i didnt even have to look at it - im very new to java -doing it for about 6 months or less - did C so that helped a bit. But i can;t make head or tails about mousepressed,mouse pressed,mouse realsed,mouse entered and mouse exited - my code my out put is also blank...
    Can somebody, anybody help me with this coding - im sorry i dont have any dukes, but i promise as soon as i get i will remember the person and give as much as he or she wants.
    im gona paste my entire code assignment here...sorry for this...
    This is my main class : javac ShowRubik.java and java ShowRubik
    please let me know.
    Regards
    RAfiek
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ShowRubik extends JApplet implements MouseListener {
       Rubik cube;
       private int width = 300, height = 300;
       int count = 0;
       public void init()
         cube = new Rubik(width, height);
         cube.addMouseListener(this); 
         // get content pane and set its layout
         Container container = getContentPane();
         container.setLayout( new BorderLayout() );
         container.add(cube, BorderLayout.CENTER);
       // execute application
       public static void main( String args[] )
          int width=300, height=300;
          if (args.length !=2) {
         width = 300;
         height = 300;
          JFrame applicationWindow = new JFrame("Rubik's Cube Demo");
          applicationWindow.setDefaultCloseOperation(
             JFrame.EXIT_ON_CLOSE );
          ShowRubik appletObject = new ShowRubik();
          appletObject.setWidth(width);
          appletObject.setHeight(height);
          appletObject.init();
          appletObject.start();
          applicationWindow.getContentPane().add(appletObject);
          applicationWindow.setSize(width,height);
          applicationWindow.setVisible(true);
          applicationWindow.show();
       // enables application to specify width of drawing area
       public void setWidth( int newWidth )
          width = newWidth;
       // enables application to specify height of drawing area
       public void setHeight( int newHeight )
          height = newHeight;
    // MouseListener event handlers
       // handle event when mouse released immediately after press
       public void mouseClicked( MouseEvent event )
         if (count == 0){
         cube.Turn(Rubik.LEFT);
         if (count == 1){
         cube.Turn(Rubik.RIGHT);
         if (count == 2){
         cube.Turn(Rubik.UP);
         if (count == 3){
         cube.Turn(Rubik.DOWN);
         if (count == 4){
         cube.Twist(Rubik.LEFT,0);
         if (count == 5){
         cube.Twist(Rubik.RIGHT,1);
         if (count == 6){
         cube.Twist(Rubik.UP,2);
         if (count == 7){
         cube.Twist(Rubik.DOWN,0);
         if (count == 8){
         cube.Twist(Rubik.LEFT,2);
         if (count == 9){
         cube.Twist(Rubik.RIGHT,2);
         if (count == 10){
         cube.Twist(Rubik.UP,0);
         if (count == 11){
         cube.Twist(Rubik.DOWN,1);
         if (count == 12){
         cube.Twist(Rubik.LEFT,2);
         if (count == 13){
         cube.Twist(Rubik.RIGHT,0);
         if (count == 14){
         cube.Twist(Rubik.UP,1);
         if (count == 15){
         cube.Twist(Rubik.DOWN,2);
         if (count == 16){
         cube.Reset();   
         if (count == 17){
         cube.Scramble();
         if (count == 18){
         cube.Reset();   
         count++;
       // handle event when mouse pressed
       public void mousePressed( MouseEvent event )
         repaint();
         show();
       // handle event when mouse released after dragging
       public void mouseReleased( MouseEvent event )
         cube.repaint();
       // handle event when mouse enters area
       public void mouseEntered( MouseEvent event )
         cube.repaint();
       // handle event when mouse exits area
       public void mouseExited( MouseEvent event )
         cube.repaint();
    }My Rubik class
    * Rubik.java
    * Created on 10 May 2004, 01:50
    * @author  Rafiek Buffkins
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.JApplet;
    import java.io.*;
    import java.lang.*;
    import java.util.*;
    public class Rubik extends JPanel
    public static int UP =0;
    public static int DOWN = 1;
    public static int TOP = 0;
    public static int BOTTOM = 1;
    public static int LEFT = 2;
    public static int RIGHT = 3;
    public static int BACK = 4;
    public static int FRONT = 5;
    private Face[] faces = new Face[6];
    private Color[] colorList = new Color[] { Color.YELLOW, Color.BLUE, Color.GREEN, Color.WHITE, Color.ORANGE, Color.RED};
    private int current = 0;
    private int top = 4;
    private int height, width;
    //[6][6][4]
    private int[][][] neighbors = {
                   {     {-1,-1,-1,-1}, {2,0,4,5}, {-1,-1,-1,-1}, {2,0,5,4}, {2,0,1,3}, {2,0,3,1}     },
                   {     {3,0,4,5}, {-1,-1,-1,-1}, {3,0,5,4}, {-1,-1,-1,-1}, {3,0,1,2}, {3,0,2,1}     },
                   {     {-1,-1,-1,-1}, {0,2,5,4}, {-1,-1,-1,-1}, {0,2,4,5}, {0,3,2,1}, {0,3,1,2}     },
                   {     {1,3,4,5}, {-1,-1,-1,-1}, {1,3,5,4}, {-1,-1,-1,-1}, {1,3,2,0}, {1,3,0,2}     },
                   {     {5,4,1,3}, {5,4,2,0}, {5,4,3,1}, {5,4,0,2}, {-1,-1,-1,-1}, {-1,-1,-1,-1}     },
                   {     {4,5,3,1}, {4,5,0,2}, {4,5,1,3}, {4,5,2,0}, {-1,-1,-1,-1}, {-1,-1,-1,-1}     },
    Rubik(int w, int h)
      width = w;
        height = h;
    public void Reset()
        for (int i=0; i<6; i++)
         faces[i] = new Face(i);
        current = 0;
        top = 4;
        repaint();
    public void Turn(int direction)
        for (int i=0; i<3; i++)
         Twist(direction,i);
          repaint();
    public void Twist(int direction, int rowOrCol)
         int front_face = current;
         int top_face = top;
         int left_face = neighbors[top][current][RIGHT];
         int right_face = neighbors[top][current][LEFT];
         int bottom_face = neighbors[top][current][UP];
                 int back_face = neighbors[current][bottom_face][UP];     //trying to create and store faces into arrays and then
                                       //and then change them accordingly
         int face1, face2, face3, face4;
         if((direction==LEFT)||(direction==RIGHT))               //row twisting
              int[] rowCopy = new int[3];
              face1 = current;
              face2 = neighbors[top][face1][direction];          //trying to determine which faces are involved...
              face3 = neighbors[top][face2][direction];          //not sure....
              face4 = neighbors[top][face3][direction];
              rowCopy[0] = faces[face1].getBlocks(rowOrCol,0);     //copy face1
              rowCopy[1] = faces[face1].getBlocks(rowOrCol,1);
              rowCopy[2] = faces[face1].getBlocks(rowOrCol,2);
              for(int j = 0; j<3 ;j++)                    //twisting
                faces[face1].setBlocks(rowOrCol, j, faces[face2].getBlocks(rowOrCol,j));
              for(int j = 0; j<3; j++)
                faces[face2].setBlocks(rowOrCol, j, faces[face3].getBlocks(rowOrCol,j));
              for(int j = 0; j<3; j++)
                faces[face3].setBlocks(rowOrCol, j, faces[face4].getBlocks(rowOrCol,j));
              for(int j = 0; j<3; j++)
                faces[face4].setBlocks(rowOrCol, j, rowCopy[j]);
                                          //if twisting up :
                                       // back become reverse(top)
                                       // bottom become reverse(back)
                                       // front become bottom
                                       // top become front
         else if((direction==UP)||(direction==DOWN))          //trying column twist
           int[] colCopy = new int[3];
           int x, y, i;
         if(direction==UP)                         //twist up
           colCopy[0] = faces[front_face].getBlocks(0,rowOrCol);
           colCopy[1] = faces[front_face].getBlocks(1,rowOrCol);
           colCopy[2] = faces[front_face].getBlocks(2,rowOrCol);
         //front become bottom or bottom changes to front?
         for( i = 0; i<3; i++)
           faces[front_face].setBlocks(i, rowOrCol, faces[bottom_face].getBlocks(i, rowOrCol));
         //bottom become reverse(back)
         y = Math.abs(2 - rowOrCol);
         for( i = 0; i<3; i++)
         x = Math.abs(2-i);
           faces[bottom_face].setBlocks(i, rowOrCol, faces[back_face].getBlocks(x, y));
         //back become reverse(top)
         y = Math.abs(2 - rowOrCol);
         for( i = 0; i<3; i++)
         x = Math.abs(2-i);
           faces[back_face].setBlocks(x, y, faces[top_face].getBlocks(i, rowOrCol));
         // top become front or front become top
         for(i = 0; i<3; i++)
           faces[top_face].setBlocks(i, rowOrCol, colCopy);
                                       //when twisting down
                                       //top become reverse(back)
                                       //back become reverse(bottom)
                                       //bottom become front
                                       //front become top
         if(direction==DOWN)     
         //copy front
         for(i=0; i<3; i++)
         colCopy[i] = faces[front_face].getBlocks(i, rowOrCol);
         //front become top
         for(i = 0; i<3; i++)
         faces[front_face].setBlocks(i, rowOrCol, faces[top_face].getBlocks(i, rowOrCol));
         //top become reverse(back)
         y = Math.abs(2 - rowOrCol);
         for(i = 0; i<3; i++)
         x = Math.abs(2 - i);
         faces[top_face].setBlocks(i, rowOrCol, faces[top_face].getBlocks(x, y));
         //back become reverse(bottom)
         y = Math.abs(2 - rowOrCol);
         for(i = 0; i<3; i++)
         x = Math.abs(2 - i);
         faces[back_face].setBlocks(x, y, faces[bottom_face].getBlocks(i, rowOrCol));
         //bottom become front
         for(i = 0; i<3; i++)
         faces[bottom_face].setBlocks(i, rowOrCol, colCopy[i]);
         //if not middle row or colomn, twist the attached faces of the cube
         if(rowOrCol != 1)
         //row twisting
         //top row
         if((rowOrCol==0)&&(direction==RIGHT))
         faces[top].Rotate(Face.COUNTER);
         if((rowOrCol==0)&&(direction==LEFT))
         faces[top].Rotate(Face.CLOCK);
         //bottom row
         if((rowOrCol==2)&&(direction==RIGHT))
         faces[bottom_face].Rotate(Face.CLOCK);
         if((rowOrCol==2)&&(direction==LEFT))
         faces[bottom_face].Rotate(Face.COUNTER);
         //column twisting
         //left column
         if((rowOrCol==0)&&(direction==UP))
         faces[left_face].Rotate(Face.COUNTER);
         if((rowOrCol==0)&&(direction==DOWN))
         faces[left_face].Rotate(Face.CLOCK);
         //right column
         if((rowOrCol==2)&&(direction==UP))
         faces[right_face].Rotate(Face.CLOCK);
         if((rowOrCol==2)&&(direction==DOWN))
         faces[right_face].Rotate(Face.COUNTER);
         repaint();
    }//close public void twist...
    public void Scramble()
    int dir, slice;
    for (int i=0; i< 1000; i++)
    dir = (int) (Math.random() * 4);
    slice = (int) (Math.random() * 3);
    Twist(dir,slice);
    repaint();
         protected void paintComponent(Graphics g)
         super.paintComponent(g);
         for (int i=0; i<3; i++)
         for (int j=0; j<3; j++)
              g.setColor(getColor(faces[current].getBlocks(i,j)));
              g.fillRect(j*55,i*55,50,50);
         protected Color getColor(int index)
         return colorList[index];
         protected Face getFace(int which)
         int front_face = current;
         int top_face = top;
         int left_face = neighbors[top][current][RIGHT];
         int right_face = neighbors[top][current][LEFT];
         int bottom_face = neighbors[top][current][UP];
         int back_face = neighbors[current][bottom_face][UP];
         if (which == FRONT)
         return faces[front_face];
         else if (which == TOP)
         return faces[top_face];
         else if (which == LEFT)
         return faces[left_face];
         else if (which == RIGHT)
         return faces[right_face];
         else if (which == BOTTOM)
         return faces[bottom_face];
         else /* (which == BACK) */
         return faces[back_face];
    }//close of rubik class
    My face class
    public class Face
      private int side;
      private int[][] blocks = new int[3][3];
      public static int CLOCK = 0;
      public static int COUNTER = 1; 
         public Face(int sideOfCube)
           side = sideOfCube;
           for(int i=0; i<3; i++)
             for(int j=0; j<3; j++)
               blocks[i][j] = sideOfCube;     //Not sure about this....
    public int getBlocks(int i, int j)
       return blocks[i][j];
    public int setBlocks(int i, int j, int colorNum)
         return blocks[i][j] = colorNum;
       public void Rotate(int direction)
         int[][] blocks_old = new int[3][3];
         int x, y;
         for(int i = 0; i<3; i++)
            for(int j = 0;j<3; j++)
              blocks_old[i][j] = blocks[i][j];               //blocks = old_blocks???
            }                              //or blocks_new = blocks??
         if(direction==0)
           for(int i=0; i<3; i++)
               for(int j=0; j<3; j++)
              y = i;
              x = Math.abs(2-j);
              blocks[i][j] = blocks_old[x][y];
         if(direction==1)
            for(int i = 0; i<3; i++)
               for(int j = 0; j<3; j++)
              x = j;
              y = Math.abs(2-i);
              blocks[i][j] = blocks_old[x][y];

    What is your problem here?
    What are the different methods doing:
    mouseEntered(MouseEvent e) is being fired, when the mousepointer entered the current component.
    mouseExited(MouseEvent e) is being fired, when the mousepointer left the current component.
    mousePressed(MouseEvent e) is being fired, when the user presses any of the mousebuttons over the current component
    mouseReleased(MouseEvent e) is being fired, when the user releases the pressed button and
    mouseClicked(MouseEvent e) is being fired, when the user presses and releases any of the mousebuttons.
    the current component in this case is the component, where the mouseListener is registered to.
    Your code throws a NullPointerException, since the array faces is not initialized. "Reset" is missing in the constructor of Rubik.
    when you click the mouse (press and release), the colors changes 18 times, because what is missing in mouseClicked(...) is:
           if (count == 19){
                   count = 0;
           }for your example the Methods mousePressed to mouseExited are not nessessary and could be implemented empty:
         // handle event when mouse pressed
         public void mousePressed( MouseEvent event ) {}So: why are you bangig your head? What do you expect?
    Michael

  • There are two separate login problems, with different solutions

    I have just spent a couple of hours fixing a 24in iMac that kept rejecting the account login after installing Leopard. (login with correct password goes to blue screen then back to loginscreen)
    I went through the Apple tech doc that had you logging in as a single user (Cmd-s) and it did not work.
    What did work for me was an archive and install of Leopard.
    It seems that anyone with a new iMac that installed the recent imac update is having this problem. For those people, archive and install seems to work.
    http://discussions.apple.com/thread.jspa?threadID=1214059&tstart=0
    For other people, the single-user instructions seem to work.
    http://discussions.apple.com/thread.jspa?threadID=1202129&tstart=0
    hope this helps
    cheers
    bruce

    > When working with word, documents or emails in the middle of a sequence
    > the picture or window suddenly is yanked off the screen to the right.
    Microsoft Word?  What version and service pack?
    Microsoft Office 2011 SP2 includes Word version 14.2.2.  Some Office 2011 updates addressed problems with Lion.

  • Need a solution for my problem. My stuff seems to be gone.

    Hi. 
    I have an annoying problem which I solution for. When I started my laptop and logged in on my account, (there are two, my account's the administrator) everything on my desktop seemed to be deleted. But when i looked in C:/ it was still there, all the foto's
    music and stuff. Before the problem, i had a background for my desktop and many shortcuts. Now i dont have any shortcut and when i go to library's, it says that the folder is empty. But when i go to -DELL is my account- C:/Users/DELL/pictures, every picture
    seems to be there. What's also weird is that when i log on to the other account which isn't an administrator and which i don't use that often, nothing has changed. 
    PS: I have a windows 7 laptop
    Please help
    (sorry for bad english)

    Wahh Wahh stfu I never asked anyone to my work for
    me. All i asked for is help. If you read your first post and honestly consider it to be a reasonable request for help, rather than a lazy twat whining to have his work done for him, then you need even more help in basic communication than you do in computer science.
    Apparently the people
    that fill this board are just too good to help or put
    anyone in the right direction to help.And yet, thousands of people get lots of very good help here. So is it just random whim, or do the people who get help do something different than knobgobblers like you?

  • I need a solution of this complicated problem to finalize my final project

    Introduction
    This project revolves around an important text processing task, text compression. In particular, you will be required to encode a sequence of words read from a source file into binary strings (using only the characters 0 and 1). It is important to note that text compression makes it possible to minimize the time needed to transmit text over a low-bandwidth channel, such as infrared connection. Moreover, text compression is helpful in storing large documents more efficiently. The coding scheme explored in this project is the Huffman Coding Scheme. While standard encoding schemes, such as Unicode and ASCII, use fixed-length binary strings to encode characters, Huffman coding assigns variable-length codes to characters. The length of a Huffman code depends on the relative frequency of its associated character. Specifically, Huffman coding capitalizes on the fact that some characters are used more frequently than others to use short codewords when encoding high-frequency characters and long codewords to encode low-frequency characters. Huffman coding saves space over state of the art fixed-length encoding and is therefore at the heart of file compression techniques in common use today. Figure 1 shows the relative frequencies of the letters of the alphabet as they appear in a representative sample of English documents.
    Letter     Frequency     Letter     Frequency
    A     77     N     67
    B     17     O     67
    C     32     P     20
    D     42     Q     5
    E     120     R     59
    F     24     S     67
    G     17     T     85
    H     50     U     37
    I     76     V     12
    J     4     W     22
    K     7     X     4
    L     42     Y     22
    M     24     Z     2
    Figure 1. Relative frequencies for the 26 letters of the alphabet.
    Huffman coding and decoding
    Huffman’s algorithm for producing optimal variable-length codes is based on the construction of a binary tree T that represents the code. In other words, the Huffman code for each character is derived from a full binary tree known as the Huffman coding tree, or simply the Huffman tree. Each edge in the Huffman tree represents a bit in a codeword, with each edge connecting a node with its left child representing a “0” and each edge connecting a node with its right child representing a “1”. Each external node in the tree is associated with a specific character, and the Huffman code for a character is defined by the sequence of bits in the path from the root to the leaf corresponding to that character. Given codes for the characters, it is a simple matter to use these codes to encode a text message. You will have simply to replace each letter in the string with its binary code (a lookup table can be used for this purpose).
    In this project, you are not going to use the table given in Figure 1 to determine the frequency of occurrence per character. Instead, you will derive the frequency corresponding to a character by counting the number of times that character appears in an input file. For example, if the input file contains the following line of text “a fast runner need never be afraid of the dark”, then the frequencies listed in the table given in Figure 2 should be used per character:
    Character          a     b     d     e     f     H     i     k     n     O     r     s     t     u     v
    Frequency     9     5     1     3     7     3     1     1     1     4     1     5     1     2     1     1
    Figure 2. The frequency of each character of the String X.
    Based on the frequencies shown in Figure 2, the Huffman tree depicted in Figure 3 can be constructed:
    Figure 3. Huffman tree for String X.
    The code for a character is thus obtained by tracing the path from the root of the Huffman tree to the external node where that character is stored, and associating a left edge with 0 and a right edge with 1. In the context of the considered example for instance, the code for “a” is 010, and the code for “f” is 1100.
    Once the Huffman tree is constructed and the message obtained from the input file has been encoded, decoding the message is done by looking at the bits in the coded string from left to right until all characters are decoded. This can be done by using the Huffman tree in a reverse process from that used to generate the codes. Decoding the bit string begins at the root of the tree. Branches are taken depending on the bit value – left for ‘0’ and right for ‘1’ – until reaching a leaf node. This leaf contains the first character in the message. The next bit in the code is then processed from the root again to start the next character. The process is repeated until all the remaining characters are decoded. For example, to decode the string “0101100” in the case of the example under study, you begin at the root of the tree and take a left branch for the first bit which is ‘0’. Since the next bit is a ‘1’, you take a right branch. Then, you take a left branch (for the third bit ‘1’), arriving at the leaf node corresponding to the letter a. Thus, the first letter of the coded word is a. You then begin again at the root of the tree to process the fourth bit, which is a ‘1’. Taking 2 right branches then two left branches, you reach the leaf node corresponding to the letter f.
    Problem statement
    You are required to implement the Huffman coding/decoding algorithms. After you complete the implementation of the coding/decoding processes, you are asked to use the resulting Java code to:
    1.     Read through a source file called “in1.dat” that contains the following paragraph:
    “the Huffman coding algorithm views each of the d distinct characters of the string X as being in separate Huffman trees initially with each tree composed of a single leaf node these separate trees will eventually be joined into a single Huffman tree in each round the algorithm takes the two binary trees with the smallest frequencies and merges them into a single binary tree it repeats this process until only one tree is left.”
    2.     Determine the actual frequencies for all the letters in the file.
    3.     Use the frequencies from the previous step to create a Huffman coding tree before you assign codes to individual letters. Use the LinkedBinaryTree class that we developed in class to realize your Huffman coding trees.
    4.     Produce an encoded version of the input file “in1.dat” and then store it in an output file called “out.dat”.
    5.     Finally, the decoding algorithm will come into play to decipher the codes contained in “out.dat”. The resulting decoded message should be written to an output file called “in2.dat”. If nothing goes wrong, the text stored in “in1.dat” and the one in “in2.dat” must match up correctly.

    jschell wrote:
    I need a solution of this complicated problem to finalize my final project The solution:
    1. Write code
    2. Test code3. If test fails, debug code, then go to step 2.

  • Good day I need the solution to the problem presented my iphone with ios upgrade from 7 to access any app, I get a message that says "log on to itunes to receive notifications"

    Good day I need the solution to the problem presented my iphone with ios upgrade from 7 to access any app, I get a message that says "log on to itunes to receive notifications"

    After the iOS 7.0.2 update words with friends is not working for me either. When I attempt to open the app it just closes itself after a few seconds of being open. This happens every time I attempt to open it.

  • Just download lightroom cc and not open at all. Have desistarei and will install several times and the problem continues ... I need a solution .. thank you  Operating System Windows 7 64bit

    just download lightroom cc and not open at all. Have desistarei and will install several times and the problem continues ... I need a solution .. thank you  Operating System Windows 7 64bit

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • I have removed all music/movies/etc. from iTunes due to duplicates. I have connected iTunes to a NEW library only to have the same problem, duplicates (2 or 3 of every song). I need a solution.

    I have removed all music/movies/etc. from iTunes due to duplicates. I have connected iTunes to a NEW library (38.33 GB) only to have the same problem, duplicates (2 or 3 of every song or 63.80 GB). I did not have this problem until syncing my library with the new Macbook Pro. I need a solution (a solution IS NOT sifting through my iTunes song by song and deleting the duplicates).

    Try disabling the computer's antivirus and firewall.
    - Next try the manual install method of:
    iDevice Troubleshooting 101 :: iPhone, iPad, iPod touch
    Place the iPod in recovery mode after the firmware download is complete and then restore using the instructions in the article. Sometimes recovery mode timeouts and returns to disabled before the firmware download is complete.
    - Then try on another computer

  • Dear frnz, i am doing my prjct in Lview. ie online PQ monitoring​. i need to simulate the system with disturbanc​es generated in Lview. so can any bdy plz tel me how to genrte PQ problems in labview. thanks in advance..

    dear frnz, i am doing my prjct in Lview. ie online PQ monitoring. i need to simulate the system with disturbances generated in Lview. so can any bdy plz tel me how to genrte PQ problems in labview. thanks in advance..

    I work in the power conversion industry and do these types of measurements all the time…
    Do you want to just measure power quality or create and measure power quality problems?
    What hardware are you using?
    Power quality analyzer?
    Programmable AC power source?
    Fast Transient Generator?
    Here is an example of what I do.
    To create PQ problems I use a California Instruments AC source set to nominal power for the unit under test. Using Labview I program several transients consisting of fixed and random duration dropouts and surges. I also use a Schaffer Fast Transient Burst Generator to apply high frequency noise bursts directly onto power lines.
    For measuring power quality I use a Voltech PM3000A power analyzer and Labview to measure everything from voltage, current, and frequency, to  harmonics and %THD
    Message Edited by RTSLVU on 07-23-2008 10:31 AM

  • I recently upgraded to Lion, and immediately started having consistent problems with Open Office 12 (would hang, and need a Force quit to recover). Has anybody else seen these problems? Any solutions other than going back to Snow Leopard? (I did).

    I recently upgraded to Lion, and immediately started having consistent problems with Open Office 12 (would hang, and need a Force quit to recover). Has anybody else seen these problems? Any solutions other than going back to Snow Leopard? (I did). But I'd like to use iCloud with iPad.

    Hi Pete. The repair of disk permissions can help resolve  any application crashing or misbehaving.
    As for Lion and the two camps, I think that is a reasonable observation. In my office we have about a dozen Mac's and about one third of those Mac's had problems after updating from 10.6 to 10.7. The main problem for these Mac's was a loss of wifi stability. But for the other two-thirds, Lion was a smooth transition.
    Personally, my Lion experience was fine. But I did get a new i7 MacBook Pro with Lion already installed and only had to migrate my user data from a 10.6.8 TM backup.
    So I think that is a key for Lion's operational success. A clean install of Lion on a new Mac would not cause too many operational issues. But an installation, or more correctly, an update to Lion from SL increased the chances of failure for some users - especially when old software & plugins resided on the Mac. And I would say that they were the people that you saw at the Apple store.
    As for the "latest release of Lion fixed my problems" statement, my experience with these and other forums is that people mostly only go there to complain about the problems they are having. If they are having no problems then they either keep it to themselves or they try to help the users who are experiencing trouble...

  • Hello i have a problem with onfocus function on ipad. i am trying to bring my cursor on a text box on a button click. It works fine with safari web browser but not on ipad. Need a solution.

    Hello i have a problem with onfocus function on ipad. I am trying to bring my cursor on a text box on a button click. It works fine with safari web browser but not on ipad. Need a solution.

    I don't think that a software update from Apple will solve the issues that you are having. You have a rogue installation. After you posted I have just done the following:
    Disk Utility can verify  my partitioned Volume (including my boot disk) AND REPAIR the non-boot disks on the same Volume without a glitch. It repairs the non-boot disks containing data smoothly.
    I have used Mail to send some mails from some Yahoo and Hotmail accounts to my Thunderbird client containing GMail accounts - absolutely normal.
    I have iLife '09 but my iMovie '09 and iPhoto '09 open in a jiffy and I see no issues here. I have 6GB RAM (Maximum) on an early 2008 Macbook Pro with a 750GB hard drive partitioned with 120GB reserved for the Boot Drive.
    I am sorry that I cannot help further but I am sure there must be a way to reinstall the software without having to revert to restoring your ML backup. I have two clones and if you have such I would attempt to do that through that rather than through Time Machine - that is of course if you have a cloned drive.
    Good luck!

  • Possibly mundane Mini-DVI to VGA into an external monitor problem

    Hi,
    I've had a look over the interwebs regarding my problem and it seems as if it's not unusual to have external monitor problems but I'm not sure if mine is slightly different:
    I had a perfectly working set up with my new Macbook (the white one, '06 model I believe), that was connected to my Hanns-G HU196D monitor via a mini-DVI to VGA adapter, no problems whatsoever. But for a couple of weeks now my Macbook just flickers a light blue colour, with nothing at all on the monitor, and my macbook is unusable until I remove the adapter. I've read about updating firmware but I can't see my desktop once the macbook is connected to the monitor so it's not possible to configure anything. I've read somewhere that my external monitor isn't compatible with this set up, but it was until a couple of weeks ago!
    My Macbook's 4 months old now and since then I've bought a new mini-dvi to vga adapter and a new VGA cable, no connections seem loose on either mini-dvi port or my monitor's vga port.
    Thanks if you can help!
    Jack

    You will need to use a mini Dvi-dvi and a dvi-svideo/rca adapter.
    Joy joy hallelujah.
    Pardon the sarcasm...I just wasted 3 hours of my life trying to sort the issue out.
    Heard a KWORLD PlusTV PCTOTV Converter SA235 USB 2.0 Interface would sort the issue out for under 40$ but it's not Mac.
    Hope that helps.
    ~r

  • M30: FX G05200 + external Widescreen Monitor: Resolution 1440x900 not available

    Hi!
    I`ve got the following problem:
    I`d like to connect a external TFT Widescreen Monitor with a native resolution of 1440x900 to my Satellite M30 with a GeForce FX Go5200.
    But: It is not possible to adjust the resolution of the Graphics Card to 1440x900 (16:10), there are just standard resolutions (4:3) available.
    I tried nearly everything:
    - installed Monitor Drivers ==> no effect
    - updated Drivers for the Go5200 (to 4644) ==> no effect
    - updated Bios (to 1.7) ==> no effect
    - Tried RIVAtuner and PowerStrip ==> no clue = no effect
    Now Im pretty helpless and I dont know what to do...
    Maybe someone faced the same problem here and found a solution.
    Thank you for your help.
    Christian

    Got the solution:
    http://www.laptopvideo2go.com/forum/index.php?showtopic=9243

Maybe you are looking for

  • Duplicate Apps

    In my launchpad it shows that i have two of every standard app that comes the mac. Do I just delete one of each? Or what should I do to get rid of them.

  • CS3 MAC: Linking with Xerces: 2000 warnings

    Hello! I have now another problem. I am linking my plugin with my selfbuild static Xerces library. I get 2000 warning messages from the linker. They sound all the same. Example: ld: warning typeinfo for xercesc_2_8::XMLDeleterhas different visibility

  • Online Redo Log groups

    Dear All, How to check the health of redo log file, we have 200 MB undo tablespace in our production server is it enough for huge transactions. Can I check how much time my redo log file data have been overwritten? Further in which situation we will

  • Delete multiple photos from ipad in ios7

    How do you delete multiple photos from ipad in ios7?  I need to clear out old photos to free up some space and don't want them deleted from other devices.  Also, what is the best source to learn how photos are shared, streamed, etc.  I assume that st

  • Wireless setting for Apple devices

    Hi All, I would like to share your experiences on how to optimize your network for Apple devices. The use of Apple devices are far more common in the U.S. than it is in Denmark (Europe) where I am. We are getting there, but certainly still "lags" a l