Probably an easy problem with a JScrollPane

Hi,
I would like to scroll a JScrollPane from outside my JScrollPane, of course I could used the setValue of the JScrollBar but I would prefer to simulate a click on the up/down buttons of my bar. Does anyone can help me?
Thanks.
S�bastien

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class souptier extends JFrame implements ActionListener {
  JScrollPane scrollPane;
  JButton
    upButton,
    downButton;
  JRadioButton
    unitButton,
    blockButton;
  public souptier() {
    upButton = new JButton("Up");
    upButton.addActionListener(this);
    downButton = new JButton("Down");
    downButton.addActionListener(this);
    ButtonGroup group = new ButtonGroup();
    unitButton = new JRadioButton("unit");
    group.add(unitButton);
    blockButton = new JRadioButton("block");
    blockButton.setSelected(true);
    group.add(blockButton);
    JPanel buttonPanel = new JPanel(new GridBagLayout());
    GridBagConstraints gbc = new GridBagConstraints();
    gbc.insets = new Insets(0,0,0,45);
    buttonPanel.add(upButton, gbc);
    buttonPanel.add(downButton, gbc);
    gbc.insets = new Insets(0,0,0,0);
    buttonPanel.add(unitButton, gbc);
    buttonPanel.add(blockButton, gbc);
    JPanel panel = new JPanel(new GridBagLayout());
    gbc.insets = new Insets(0,50,0,0);
    gbc.weightx = 1.0;
    gbc.weighty = 1.0;
    gbc.gridwidth = gbc.REMAINDER;
    gbc.anchor = gbc.WEST;
    for(int j = 0; j < 20; j++)
      panel.add(new JLabel(String.valueOf(j)), gbc);
    panel.setBackground(Color.yellow);
    panel.setPreferredSize(new Dimension(1000,1000));
    scrollPane = new JScrollPane(panel);
    scrollPane.getVerticalScrollBar().setUnitIncrement(50);
    scrollPane.getVerticalScrollBar().setBlockIncrement(200);
    getContentPane().add(scrollPane, "Center");
    getContentPane().add(buttonPanel, "South");
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    setSize(400,300);
    setLocation(300,400);
    setVisible(true);
  public void actionPerformed(ActionEvent e) {
    JButton button = (JButton)e.getSource();
    int inc;
    if(button == upButton) {
      JScrollBar vertBar = scrollPane.getVerticalScrollBar();
      int currentValue = vertBar.getValue();
      if(unitButton.isSelected())
        inc = vertBar.getUnitIncrement(-1);
      else
        inc = vertBar.getBlockIncrement(-1);
      if(currentValue + inc < vertBar.getMaximum())
        vertBar.setValue(currentValue + inc);
      else
        vertBar.setValue(vertBar.getMinimum());
    if(button == downButton) {
      JScrollBar vertBar = scrollPane.getVerticalScrollBar();
      int currentValue = vertBar.getValue();
      if(unitButton.isSelected())
        inc = vertBar.getUnitIncrement(1);
      else
        inc = vertBar.getBlockIncrement(1);
      if(currentValue - inc > vertBar.getMinimum())
        vertBar.setValue(currentValue - inc);
      else
        vertBar.setValue(vertBar.getMinimum());
  public static void main(String[] args) {
    new souptier();
}

Similar Messages

  • I keep getting this diologue box as I start up Firefox "Could not initialise the application's security component. The most probable cause is problems with files in your browser's profile directory. ... what should I do exactly?

    I keep getting the following dialogue box when I start Firefox " Could not initialise the application's security component. The most probable cause is problems with files in your browser's profile directory. Please check that this directory has no read/write restrictions." I am not sure how to find or change the profile directory. I have gone to the Options: General: Save files to ...box but it wont allow me to browse to another file and the box remains blank. ideas please!

    See [[Could not initialize the browser security component]]
    Continue here: [/questions/780717]

  • Why do I get an alert saying "Could not initialise the application's security component. The most probable cause is problems with files in your browser's profile directory. How can I solve it??

    The full alert is " Could not initialise the application's security component. The most probable cause is problems with files in your browser's profile directory. Please check that this directory has no read/write restrictions and your hard drive is not full or close to full. It is recommended that you exit the browser and fix the problem. If you continue to use this browser session, you might see incorrect browser behaviour when accessing security features."
    This is just started three/four days ago. I need assistance quickly as I can't access any secure sites e.g bank accounts/homepage etc.

    See [[Could not initialize the browser security component]]

  • Problem with the JScrollPane...

    Hi there!
    I have a little problem controling the JScrollPane.
    In some class - which extends the JPanel class - I build the GUI within the constructor.
    This class is later included by another class into the center of a border layout. Now when
    I make this whole window visible, everything looks fine except that the scrollpane scrolled
    down to approx. 3/4 of the panel, but I want the Scrollpane to scroll all the way to the top...
    I already tried to manage this by using
    scrollPane.getVerticalScrollBar().setValue(0);
    But this does not do anything as long as I am calling this function from within the constructor.
    When I trigger this function by pressing some JButton it works fine!
    I guess this has something to do with the way Java paints the Frames and the Panels. And that
    maybe the Scrollpane is not yet existend as such when I try to scroll all the way to the top....
    Do you have any suggestions??
    Thx in advance!!

    But this does not do anything as long as I am calling this function from within the constructor.
    scrollPane.getVerticalScrollBar().setValue(0);Try wrapping the above line in a SwingUtilities.invokeLater(...)
    or maybe using
    component.scrollRectToVisible(...);

  • A small problem with a JScrollPane and child windows

    Hi !
    I have created a customized JComponent inside a JScrollPane and when my application starts I create two JTextField's that I put in the JComponent and so far it all works fine to start with, but when ever the JComponent is redrawn after that the JTextField's are overdrawn or at least are not visible any longer...
    Do I need to repaint the sub components of my own JComponent myself or am I doing something very wrong here ?
    a JScrollPane
    a JComponent with some drawing going on in paint()
    a JTextField
    another JTextField
    Mikael

    Ooppps !
    Forget about it, I forgot to put a super.paint( g) at the top of my paint method, that was the problem.
    Mikael

  • Easy problem with EasyVPN remote

    Hi, I'm setting up a remote EasyVPN and everything is cool but when a remote computer on the private LAN tries to get the internal networks it doesn't work. Users in that LAN can acces to the Inet after connecting with user//pass but not access the VPN networks. Maybe I'm missing an ACL or something ? Another issue is that we want to keep the password for this connection, we want it to connect totally auto. I added save-password at the server group config but It doen't work either. I'm adding the config for you to take a look, it's very simple !

    Okay, this is slightly more complex. Here is the way I found it to work:
    //First we get the text from the JTextField
    //and convert it to lowercase to get a color name:
      String colorName = t2.colcampo.getText().toLowerCase();
    //Then we are going to use Reflection to find the name
    //of the color as a variable in the Color Class.
    //Note, this works only for those colors listed in the
    //Color class as static class members.
      Color backColor = Color.class.getField(colorName).get(null);
    //Finally we set the color
      t2.campo.setBackground(backColor);You will have to surround this with a try/catch block to catch
    IllegalArgumentException, SecurityException, IllegalAccessException,
    and NoSuchFieldException.
    ps There is a method in the Color class called getColor() which you wold call like this:
      String colorName = t2.colcampo.getText();
      Color backColor = Color.getColor(colorName);
      t2.campo.setBackground(backColor);but it would not work on my machine for any of the common color names, so I don't know what was going on, you may wanna try that.

  • Problems with the Fios 20/5 connection speed in my area dropping down to less than 3mbs.

    I have written out a flyer that I plan to go door to door with. Since I am under contract with Verizon, I am forced to honor my side of the contract. Even if they are allowed to make me pay for a service that I am not completely getting. I am very displeased and as soon as my contract is up, I will change back to My local cable companies all in one that does not require a contract and has no issue such as the one I am having.
    Do you have Verizon Fios Internet?
    Are you on the 20/5 connection?
    If so, you may not be getting the speed you are paying for. I am on a 20/5 connection and when my computer is on for longer than an hour the internet download speed with Verizon Fios starts to slow down until it is below 3mbs. It takes about 24 hours to get down to 3mbs but only about an hour or two to get down to about 6-7mbs when I am paying for 20mbs…
    I have 3 computers in my home that have Windows Vista, Windows XP home edition and Windows Media Edition 2005. All of the computers run into this same exact issue, I have tried every setting I could think of with my 24 years of computer technical experience. I finally took one machine with Windows XP and ran a full format on the hard drive and reinstalled a fresh Windows Xp Operating system onto the hard drive so it is a bare bones OS. This way there is no other software on the machine that could possibly be causing the problem and found that when I connected online through Verizon Fios the machine still ran into the same exact issue. This proves to me that the issue is not on any of my machines.
    Now all of this time my buddy that lives 1.2 miles away from my house has been having the same issue with three computers at his home also. He has Windows Vista on two machines and Windows XP Pro on one.
    When I concluded that it was a Verizon Fios issue, after a few months of trying to get by, researching, diagnosing and losing much information in order to verify it was on Verizon’s side, I contacted technical support at Verizon’s online website. The agent and I went through the regular procedure that anyone would have to go through and I patiently explained what I had done to try to diagnose the issue. The agent came to the conclusion that he could not figure out the problem so he guessed that the Verizon router/modem may be the issue and told me he would send me a new one by mail.
    I received the new Verizon router/modem, installed it and had to call to have it activated. Afterward it still had the same exact issue as the prior router/modem. So now we know it’s not my computers, it’s not the router/modem. My Verizon router/modem is connected right at the Optical Network Terminal (ONT), which is the box that connects the fiber-optics to your home, usually just inside or outside your garage wall. Mine is just outside…
    From here my buddy, who has been having this problem also the entire time, called the local office of Verizon Fios and an installer was setup to come over to his home and trouble shoot the issue. My buddy called me and told me when the installer was headed to his home and I met him at his home to see what the installer found and in hope that my issue would be fixed at the same time. The installer went through the system at his house and was frustrated about not finding the reason for the issue and ready to leave without fixing anything. I simply asked that he stay long enough to see the issue present itself within an hour-hour and a half.
    His laptop itself already showed the speed drop from 20mbs to between 16-17mbs, it was on its way down. He basically told us something that online tech support already stated to me, it is extremely difficult to prove it is on Verizon’s side. In other words it is extremely difficult to prove it, in a way that will convince Verizon to check its own servers, routers and software updates to their own systems. The installer, good guy, couldn’t/wouldn’t stay but we did convince him not to simply drop the issue. He called shop and they sent another installer out to take over the issue.
    The new installer, great guy, got up to speed on what was already done at my buddies home. The first installer, checked and replaced the Verizon router/modem, checked the wiring and splitters. Basically went through the entire system up to the Optical Network Terminal (ONT), the box that connects the fiber-optics to your home. He pulled and replaced the Optical Network Terminal (ONT), thinking that perhaps the unit was compromised. While he was doing this job a tech was called and asked to stop by for assistance with the issue. The tech checked the computers inside and tried to do some settings that the main office informed him to try. I explained to the tech that the same issue was happening at my house, that I went through every setting I could think of and find online to help alleviate the issue. After some shop talk about what I had tried, including the full format and reinstall of the operating system on one of my machines, he just as I came to the conclusion that it couldn’t be with the computers and since everything that had to do with the Verizon Fios system from the street to the end-user computer had been checked, verified and/or replaced, the issue had to be coming from Verizon’s main office.
    The installer had already checked the main at the road that has the 3x2 green service cover on it by the side walk. Everything was in good working order. The tech called the main office to see if my buddy and I were on the same hub, basically a big splitter that continues the service from the main office to the homes, we were not. So that was ruled out…
    My understanding of the system ends there. The only other components I know of are the Main branch’s routers, servers and software.
    Verizon had a new connection speed added to their system, 25/15 about the same time our issue began. So I am guessing that when they updated the system to include this new connection speed they corrupted the software for the 20/5 connection.
    We have been waiting to hear from the tech that was at my buddy’s house, to see if the issue will be dealt with. My buddy has called him a couple of times and he has mentioned that he is trying to get it addressed and to call back if we hadn’t heard from him. He remembered who he and I were and what the issue was, so I believe he is taking it seriously. How far he can move the issue is beyond me…
    I want to add that my buddy and I have been customers with the all in one package from Verizon Fios since their services have moved into our area, about a year and a half… It has only been since about June that this issue has presented itself, before then we were on 7th heaven with the speeds. We couldn’t have been more than happy with the services.
    This issue has caused that to all go afoul, not only do the speeds get down to less than 3mbs but the speed is not smooth at all. Rather the 3mbs speed is stop and go, freezing in between at times, very choppy. Barely usable at times, unless you restart the computers and start over.
    We are hoping that anyone with Verizon Fios Internet Services will keep an eye on their speeds by going to http://speedtest.net and doing tests to verify they are getting the speeds they are paying Verizon for.
    This is what it will take for Verizon to take this issue seriously is to gather everyone on the system that may be having the same issue. I believe it is everyone that is within the 1.2 miles from my house to my buddy’s and will distribute flyers to each and every house in between.
    If you find that your speed is not as fast as it should be please contact me and I will add you to the list, this way we can see exactly how far this problem covers and perhaps it will also help to show a pattern and understanding as to why the issue is present in the first place.
    My contact information,
    I have left this out here, you can contact me on these forums...

    Actually what this came down to was an issue between Windows Vista and an Ethernet Card on one of the machines in each of our local networks.
    Even though our two machines are 6 years apart, we both have the same ethernet adapter on our main desktops. A RealTek RTL8139/810x Family Fast Ethernet Nic. It seems that the adapter does not work at the 20mbs download speeds with Vista. For some reason the adapter does not shut down when the computer does? I don't understand why but it doesn't, it keeps the connection alive. I removed the ethernet cable and pulled the power cable and had my two other computers still connected to the network and found that the issue was resolved. The way I found out was that I used the connections on my main computer to hook up one I had laying around and through further testing found the problem no longer existed...
    Then I realized that my buddy and I installed Windows Vista at about the same time, a couple of months ago. Funny how you can forget an important detail like that. Then I remembered that he had the same identical ethernet adapter as I did, I had noticed that while trouble shooting his computer at his home but didn't think it was important at the time. Until the issue was narrowed down to the adapter, then it all seemed to all fall into line.
    Quite humbling... In the end, anyone who has Windows Vista and this NIC probably will have problems with the 20mbs download speed of the computers on their own networks. I tried the latest Vista driver from RealTek and also tried to roll back the driver, with no success....
    Back at the beginning when we first had fios installed in our homes there wasn't an issue when we had the 10/2 speeds and had Vista. Then we decided to change from Vista to XP because we both were having issues as to what programs you could use and which you could not, shortly after having fios installed. Then when verizon upgraded us to 20/5 we were amazed at the speed and still had no issue because we had XP on our main computers with the RealTek adapters...
    We reinstalled Vista because it seemed like we were having more issues with XP by getting hit with Antivirus2008 and its variants and thought it time for a change back...
    It didn't really hit us that Vista could be the culprit because we both have a laptop in our networks that have had Vista on them from the get go when there were no issues... We also didn't notice just how bad it was right away and over time kind of left the Vista install out of the equation.
    Just strange that one computer can effect all the other computers on the network, even when it is shut down...
    I allowed the other two computers to run 24hours and the issue did not present itself, when I added the main computer with the RealTek adapter back to the mix it reappeared. The Realtek adapter is the only real common denominator between his machine and mine.
    So now we have three choices,
    We can go back to Windows XP.
    We can buy a new NIC or a wireless card to replace the RealTek...
    Hopefully this post will help anyone else who runs into this problem, it has been very frustrating to say the least...
    Thanks to everyone for their help and I apologize for complaining about verizon when it was not a verizon issue. I came to the conclusion that the only part verizon really played was upgrading us to a 20/5 tier which I am thankful for...
    Would be nice if this card was on a list that Verizon support could use to troubleshoot , diagnose or eliminate for future support issues.
    Message Edited by keiser0619 on 08-06-2009 03:58 PM

  • Problem with display of JScrollPane

    I have made a small GUI.
    It has a JFrame and four JPanels are added to the frame.
    The placement is done by program and hence layout manager is set to null.
    Two of the panels contain JScrollPane.
    One scroll pane is associated with a JList.
    Another scroll pane is associated with a JTextArea.
    I am creating panel components in their respective paintComponent() method.
    Now my problem is whenever I run the code, the behaviour of the display of the GUI is erratic. Sometimes it appears perfectly fine other times the JList contents and JTextArea along with their scroll bars don't appear. I have tried running the code on different platforms and different systems. On some systems it works perfectly fine, on some it behaves erratically.
    Moreover my experience is that it is giving problem on somewhat lower configuration systems (low RAM and CPU) and running fine on higher configuration systems.
    I ran it on my laptop with 512MB RAM and centrino duo processor. (Both on windows and ubuntu it gave the same problem, random display behavior)
    I ran it on a desktop with 1GB RAM and higher processor (Both on windows and ubuntu it displayed fine)
    Does this problem relate to insufficient painting time or something of this sort? Why is this problem is coming and what's the solution?
    Thanks in advance.
    Also if anybody has encountered similar problem please do share so that I could at least say this is not a unique one.

    The placement is done by program and hence layout manager is set to null.That is (probably) your first problem. Learn to use use LayoutMangers, they save time in the long run.
    Sometimes it appears perfectly fine other times the JList contents and JTextArea along with their scroll bars don't appearProbably because preferred sizes are not set correctly. Since you are not using a layout manager that is your responsibility. Easy solution is to use a proper combination of layout managers.
    I am creating panel components in their respective paintComponent() method.That is (probably) your second problem. paintComponent() is for doing custom painting, not creating new components dynamically.
    I suggest you start by reading the Swing tutorial for example programs.

  • Strange but probably easy problem

    Strange but probably easy problem...
    I have made two pages recently. One for a company and one for
    a game I'm making during my spare time. I have made them both in
    the same way with an html page for every side.
    The problem is that when it changes sides... On the first
    page I made it looks like it leaves the back ground graphic and
    just reload the text that has changed... this is how I want it to
    be. But on the second it loads the backgrounds's every time...
    These are the links... I hope someone understands what I mean
    1st page www.ardent.se
    2:nd page www.indylc2.com

    cjh81 wrote:
    > Strange but probably easy problem...
    >
    > I have made two pages recently. One for a company and
    one for a game I'm
    > making during my spare time. I have made them both in
    the same way with an html
    > page for every side.
    >
    > The problem is that when it changes sides... On the
    first page I made it looks
    > like it leaves the back ground graphic and just reload
    the text that has
    > changed... this is how I want it to be. But on the
    second it loads the
    > backgrounds's every time... These are the links... I
    hope someone understands
    > what I mean
    >
    >
    > 1st page www.ardent.se
    > 2:nd page www.indylc2.com
    >
    it's the same, but the first page loads faster than the
    second.
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    Downloads: Slide Show, Directory Browser, Mailing List

  • Design problem with JScrollPane

    First, I have problems with english. I hope u understand without problems that Im trying to say here. Sorry about that.
    Mi problem is whit a JScrollPane. I want to put an image whit a predefined size for draw inside it. I dont have any information about it, just the size. I want to put it in a JPane. The best choice is use the JPane area. The problem is that I want to use a JScrollPane because the image is bigger that the visualization area.
    Im unable to put a Canvas in the ScrollPane, or a JPane whit a predefined size or an image whit a predefined size. Im sure that is a design problem. Somebody can tell me something I can start whit? What do u think is better choice to put inside a JScrollPane?
    I dont send any source code because I dont have anything else that is show in the example.
    Gracias.

    import java.awt.*;
    import javax.swing.*;
    import java.net.URL;
    public class Test extends JFrame {
      String url = "http://www.sandbox-usa.com/images/product_images/2piece_16.gif";
      public Test() {
    //    System.getProperties().put( "proxySet", "true" );  // uncomment if you have proxy
    //    System.getProperties().put( "proxyHost", "myproxy.mydomain.com" ); // Your proxyname/IP
    //    System.getProperties().put( "proxyPort", "80"); // Sometimes 8080   
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);   
        Container content = getContentPane();
        try {
          Image i = Toolkit.getDefaultToolkit().getImage(new URL(url));
          JLabel jl = new JLabel(new ImageIcon(i));
          content.add(new JScrollPane(jl), BorderLayout.CENTER);
          setSize(200, 200);   
          setVisible(true); 
        } catch (Exception e) { e.printStackTrace(); }
      public static void main(String[] args) { new Test(); }
    }

  • Hi. I am having an issue with music on my Ipod. It would probably be easier to explain my specific issue: I have songs by Band of Horses from Cease to Begin. When viewing my albums through cover flow, it shows Cease To Begin as two separate albums, one wi

    Hi. I am having an issue with music on my IPod. It would probably be easier to explain my specific issue: I have songs by Band of Horses from Cease to Begin. When viewing my albums through cover flow, it shows Cease To Begin as two separate albums, one with only Islands on the Coast, and the other having Islands on the Coast with 3 other songs. If I delete the album with only one song from my IPod, it deletes the song from the other "album" as well. If I go to "All Songs" by Band of Horses, it only shows one Islands on the Coast, so it is not a duplicate issue. Also, in Itunes, it only shows one album. I just recently updated to iOS5 on my 4th Gen IPod Touch, if that helps.

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • HT201412 Have a problem with iPad2, apple logo appears but iPad won't boot up, then logo disappears & iPad dies - probably caused due to insufficient hard disk space (too many apps) - any help greatly appreciated

    I have a problem with iPad2, apple logo appears but iPad won't boot up, then logo disappears & iPad dies - probably caused due to insufficient hard disk space (foolishly loaded up too many apps) - any help/advice greatly appreciated

    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    Update and restore alert messages on iPhone, iPad, and iPod touch
    http://www.buybuyla.com/tech/view/012953a0d412000e.shtml
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
     Cheers, Tom

  • Problem with a JList and JScrollpane

    Hi,
    Im having a problem with horizontal scrolling in that I have a simple JList inside a panel and a text box below where the user enters text. Now the text box has a width of 15, but the user can type as many characters as they want..Now the Jlist only displays 15 characters, but the horizontal scroller does not come up, instead just displays for example abcdefghijkl... (the three dots in the end)..
    Isnt my scroller supposed to be automatically scrolling when there is more on the line then the screen displays?? I already have this so far..
    scroller = new JScrollPane(dataList, ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);thanks!

    Try the following code:
    package sample;
    import java.awt.*;
    import javax.swing.*;
    public class MyDialog extends JDialog {
      public static void main( String[] args) {
        new MyDialog().setVisible(true);
      JPanel contentPanel = new JPanel();
      JScrollPane scrollPane = new JScrollPane();
      JList list = new JList( new Object[] {"abcdefghijklmnopqrstuvwxyz", "123456789012345678901234567890"});
      public MyDialog() {
        contentPanel.setLayout(new BorderLayout());
        getContentPane().add(contentPanel);
        contentPanel.add(scrollPane, BorderLayout.CENTER);
        scrollPane.getViewport().add(list, null);   
        setSize( 100,100);
        setLocation( 100,100);
    }Michael

  • Easier and better ways to solve current problems with Acrobat?

    Is there no better and easier way to solve the problems (installation, re-installing and crashing) with Acrobat? I really think that the ball is in Acrobat's corner right now, because I should not (for example) need to deactivate and re-activate my subscription in order to get AcrobatPro XI to work on my computer, let alone deinstalling an older version that (for now) does work, risking that in the end neither of them work. I need the (great) AdobeCloud applications to do my work as a freelancer, and I really cannot afford this kind of trouble with my applications, nore loose time repairing them. These are difficult times as it is.
    Regards,
    Marc

    Sorry, I can't. When I installed it there was no message that said I had to deinstall the old version first, and with other Adobe CC applications there had been no trouble at all, so I installed it with The previous version still on my computer.
    After installing, neither of them would start up properly, so I deinstalled version XI, after which the old version worked again, but my Adobe Application Manager does not let me download the XI version a second time, so I cannot try again.
    Regards,
    Marc
    Op 7 dec. 2012 om 00:41 heeft David Kastendick <[email protected]> het volgende geschreven:
    Re: Easier and better ways to solve current problems with Acrobat?
    created by David Kastendick in Acrobat Installation & Update Issues - View the full discussion
    The description of the issue you originally presented isn't something that I've seen happen to Acrobat when installed as a part of Creative Cloud.
    Could you provide a specific description of the behavior that occurs when you launch Acrobat XI now?
    Thanks,
    David
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4902597#4902597
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4902597#4902597
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4902597#4902597. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Acrobat Installation & Update Issues by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Problem with BSOD/Freezing probably related to Nvidia driver on Touchsmart IQ810

    I have an HP Touchsmart IQ810, now a little elderly but otherwise going strong.
    For the last couple of years now I've had a problem with occasional/frequent BSODs, one or two a week. Using crash  dump analyser WhoCrashed this is almost certainly related to the driver for onboard Nvidia 9600GM video chip. The usual advice is to make sure you have the latest driver, but I've tried more recent drivers and they seem to make the problem worse - rather than BSODs, I get screen freezes at least once a day, so I've gone back to the old driver version.
    I've run the hardware diagnostic tools and found no problems, I've even tried using MSI Afterburner to turn down the clock speed of the card to prevent overheating, but this makes no difference. BSODs/freezes sometimes occur not long after booting, so surely it can't be overheating.
    I've pretty much had to put up with this but I would like it fixed. Any suggestions?

    NVIDIA and RADEON Drivers, depending oin what they are doing can really point you in the right spot. If you are still having issues after fully removing and reinstalling the drivers then you are looking towards a Hardware issue. I would check the contact points on your motherboard and other hardware, this is looking more like an issue with your motherboard.
    The biggest problems for example when it comes to computers with RADEON cards, because they are big like the NIVIDA cards; just moving your computer or bumping it can cause damage to your componets within your computer and cause issue like this. RADEONS cards are known to have screen tearing and different colored lines through the screen, another thing I would check is to make sure the swtich or voltage on you video card isn't flipped. If the switch is flipped the wrong way, if you end up forcing your card to hard with the little voltage it has running through it your computer WILL BSOD and MSI Afterburner won't even matter, usually voltage is a setting that you don't want to mess with when it comes to using that program, that is why they make switches on these cards.
    If it was a driver issue, your machine won't not be BSOD. The reason why I say that is because BSOD happens to help you prevent further damage to your hardware and if the correct settings are not how they should be, something as simple as skype can cause your machine to do thing's it shouldn't. I've had many issues myself that I've gone through, being in the IT field as well I've seen this to be a common issue due to changing configurations or changing what you do on your computer.
    You may of not changed anything but just a simple virus can cause programs to do what they are not meant to do.
    Boot into safemode and see if you run into this issue still after running it for a few hours, with safemode as you know. You boot with the processes that you need to run the core functions of your computer. If nothing happens it is because your computer has taken a chill pill. If everything is good and you boot into your main OS then you start having this issue again then you know it IS hardware and setting's related. Little thing's like this will make a hug difference.
    The switch also is verd had to find but it will be very small and colored white, if you still have the box you video card came in they should have it pointed out where it is.
    I hope this helps, if you have any questions please ask.

Maybe you are looking for

  • HP Photosmart C5180 won't scan to computer?

    I want to scan a picture to my computer so I can later email it to someone. I put the picture in the front right part of the scanner as directed, but when I clicked on Scan Menu, the only options were Scan and Reprint and Scan to Memory Card. There's

  • Can't get rid of thin outline around embedded movie?

    ...even after setting it to "Invisible Rectangle" in the settings box. I'm trying to get a flash animation, converted to quicktime movie (imported with legacy format option), embedded into the PDF, and then playing as the page becomes visible (i.e. t

  • Photoshop CS5 Mac Dual Monitor color problems

    Hi all, I know this problem has been raised before, but I can't seem to find a definitive answer - there is a lot of conjecture and opposing opinions so I'm trying to get to the bottom of this once and for all. Gear: MacBook Pro, Photoshop CS5, Wacom

  • Business area & profit center

    hi sap gurus, When it is useful to activate new Profitcenter & when it is useful to activate Business Area. Can any body narrate difference and benefts of each Thanks & Regards krishna.

  • Distributed transaction error in WL 7.1

    Hi, I'm trying to set-up distributed transactions for weblogic. We have a requirement to go against 2 different databases within a single transaction. My config.xml looks like: <JDBCConnectionPool CapacityIncrement="1" DriverName="oracle.jdbc.xa.clie