W98 and JRE 1.5 Problem

I am successfully using JRE 1.4.2_06 with my W98 SE system. However, I cannot get JRE 1.5 to work under W98.
I uninstalled 1.4.2_06, then used the offline installation version of 1.5. No error messages were obtained; the installation finished normally. However, clicking on Java under the Control Panel produces no result, except for a message eventually that "javaw is not responding". If I do an End Task on javaw, and then run Firefox 1.0PR and select a site with a Java app, Firefox crashes with an "illegal operation" message. Uninstalling 1.5 followed by reinstallation of 1.4.2_06 produces working Java on my W98 SE system. The only problem is that 1.4.2_06 takes 25-60 seconds to run a Java app - higher initialization speed is why I would like to run JRE 1.5.
Is Sun aware of any problems with running JRE 1.5 under W98? More importantly, does Sun know how I can get the JRE 1.5 javaw program to not hang under W98 SE?

Further information regarding the problem described above. Examination of the file java_install_reg.log on my Win98 SE machine reveals that the call:
Start JNICALL Java_com_sun_deploy_panel_PlatformSpecificUtils_getPublicJres
never completes. I know this, because on a friend's machine that is successfully running JRE 5.0 the call above is followed with:
Start JNICALL Java_com_sun_deploy_panel_PlatformSpecificUtils_onLoad
Hopefully this data will help in solving my problem running JRE 5.0 on my W98 Second Edition system.

Similar Messages

  • Windows XP style and JRE 5 update 9,10 and JRE 6.0 problem

    Good day.
    I have an application that is deployed on more than 700 PCs in different countries. Application is being deployed via Java Web Start and is being used by our clients for more than 3 years already.
    Today we are receiving more and more complains coming from our clients because of application GUI misbehavior. What happens is this. When JRE on the client PC is updated to JRE 5 update 9 or update 10 or re-installed to Java 6 AND Windows XP Theme is applied then most of the Elements(JCheckBox, JRadioButton, JTextField become larges and etc.) on JToolBar disappear. If Windows XP Theme is changed to Classic everything gets to normal.
    On JRE 5 update 1 up to update 6 User Interface works fine even with Windows XP Theme applied.
    Application GUI is build using Borland JBuilder GUI Designer.
    Please, please advise where could be the problem.
    Thank you very much!

    Good day.
    I have an application that is deployed on more than 700 PCs in different countries. Application is being deployed via Java Web Start and is being used by our clients for more than 3 years already.
    Today we are receiving more and more complains coming from our clients because of application GUI misbehavior. What happens is this. When JRE on the client PC is updated to JRE 5 update 9 or update 10 or re-installed to Java 6 AND Windows XP Theme is applied then most of the Elements(JCheckBox, JRadioButton, JTextField become larges and etc.) on JToolBar disappear. If Windows XP Theme is changed to Classic everything gets to normal.
    On JRE 5 update 1 up to update 6 User Interface works fine even with Windows XP Theme applied.
    Application GUI is build using Borland JBuilder GUI Designer.
    Please, please advise where could be the problem.
    Thank you very much!

  • Socket problems with aol 7 and jre 1.2.2.008

    The introduction of AOL 7.0 has given me the following error message.
    java.net.SocketException: connect (code=10061)
      at java.net.PlainSocketImpl.socketConnect(NativeMethod)
      at java.net.PlainSocketImpl.doConnect(Unknown Source)
      at java.net.PlainSocketImpl.connectToAddress(UnknownSource)
      at java.net.PlainSocketImpl.connect(Unknown Source)
      at java.net.Socket.<init>(Unknown Source)
      at java.net.Socket.<init>(Unknown Source)
      at sun.net.NetworkClient.doConnect(Unknown Source)
      at sun.plugin.protocol.jdk12.http.HttpClient.doConnect(UnknownSource)
      at sun.net.www.http.HttpClient.openServer(UnknownSource)
      at sun.net.www.http.HttpClient.openServer( UnknownSource)
      at sun.net.www.http.HttpClient.<init>(Unknown Source)
      at sun.net.www.http.HttpClient.<init>(Unknown Source)
      at sun.plugin.protocol.jdk12.http.HttpClient.<init>(UnknownSource)
      at sun.plugin.protocol.jdk12.http.HttpClient.New(UnknownSource)
      at sun.plugin.protocol.jdk12.http.HttpURLConnection.privBlock(UnknownSource)
      at sun.plugin.protocol.jdk12.http.HttpURLConnection$PrivilegedBlockAction.run(UnknownSource)
      at java.security.AccessController.doPrivileged(NativeMethod)
      at sun.plugin.protocol.jdk12.http.HttpURLConnection.connect(UnknownSource)
      at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(UnknownSource)
      at JApplet.start(JApplet.java, Compiled Code)
      at sun.applet.AppletPanel.run(Unknown Source)
      at java.lang.Thread.run(Unknown Source)I have stripped the original code down to a minimmal applet that simply echos the text of a web page. The code is...
    public class JApplet extends javax.swing.JApplet {
        /** Creates new form JApplet */
        public JApplet() {
            initComponents();
        public void start(){
            final int EOF = -1;
            final int BUFFER = 4096;
            final String PAGE = "/Test.html";
            try{
                java.net.URL cgiURL;
                java.net.URLConnection conn;
                java.io.InputStream InStream;
                byte[] buffer = new byte[BUFFER];
                int bytesRead;
                // build connection string
                cgiURL = new java.net.URL("http",  getDocumentBase().getHost(), 80, PAGE);
                System.out.println("Getting web page "  + cgiURL.toString());
                System.out.println("openConnection");
                // open the web connection
                conn = cgiURL.openConnection();
                System.out.println("getInputStream");
                // get an input stream for the web data
                InStream = conn.getInputStream();
                System.out.println("START Reading stream");
                // while there is more data, read each character
                while ((bytesRead = InStream.read(buffer)) != EOF) {
                    // get each character from the buffer
                    for (int i=0; i<bytesRead; i++){
                        System.out.println("next char is '" + (char)buffer[i] + "'");
                        jTextArea1.append(String.valueOf((char)buffer));
    System.out.println("DONE Reading stream");
    } catch (java.net.MalformedURLException ex){
    ex.printStackTrace();
    //throw new DataNotAvailableException();
    } catch (java.io.IOException ex) {
    ex.printStackTrace();
    //throw new DataNotAvailableException();
    private void initComponents() {
    jTextArea1 = new javax.swing.JTextArea();
    getContentPane().add(jTextArea1, java.awt.BorderLayout.CENTER);
    // Variables declaration - do not modify
    private javax.swing.JTextArea jTextArea1;
    // End of variables declaration
    When ran, the code outputs getInputStream ,but never gets to START Reading stream
    This problem does not exist when I use aol 6.0, has anyone heard of this problem before, is it my code, maybe the fact I an using jre 1.2.2.008?
    thanx for your help

    Interesting. I tried the demo, I have IE 6.0 and JRE 1.4 beta installed. It told me my JRE was ok and to click proceed to the demo. I clicked proceed and it gave me this mess:
    java.lang.SecurityException: SHA1 digest error for XMLClient.jar.sign
         at sun.security.util.ManifestEntryVerifier.verify(ManifestEntryVerifier.java:194)
         at java.util.jar.JarVerifier.processEntry(JarVerifier.java:210)
         at java.util.jar.JarVerifier.update(JarVerifier.java:197)
         at java.util.jar.JarVerifier$VerifierStream.read(JarVerifier.java:382)
         at sun.plugin.cache.CachedJarLoader.authenticate(CachedJarLoader.java:532)
         at sun.plugin.cache.CachedJarLoader.access$900(CachedJarLoader.java:63)
         at sun.plugin.cache.CachedJarLoader$4.run(CachedJarLoader.java:373)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.cache.JarCache.privileged(JarCache.java:340)
         at sun.plugin.cache.CachedJarLoader.download(CachedJarLoader.java:355)
         at sun.plugin.cache.CachedJarLoader.load(CachedJarLoader.java:116)
         at sun.plugin.cache.JarCache.get(JarCache.java:286)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(CachedJarURLConnection.java:81)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(CachedJarURLConnection.java:63)
         at sun.misc.URLClassPath$JarLoader.getJarFile(URLClassPath.java:501)
         at sun.misc.URLClassPath$JarLoader.<init>(URLClassPath.java:462)
         at sun.misc.URLClassPath$2.run(URLClassPath.java:258)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath.getLoader(URLClassPath.java:247)
         at sun.misc.URLClassPath.getLoader(URLClassPath.java:224)
         at sun.misc.URLClassPath.getResource(URLClassPath.java:137)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:193)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:189)
         at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:130)
         at sun.plugin.security.PluginClassLoader.findClass(PluginClassLoader.java:185)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:308)
         at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:110)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:264)
         at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:379)
         at sun.applet.AppletPanel.createApplet(AppletPanel.java:542)
         at sun.plugin.AppletViewer.createApplet(AppletViewer.java:1264)
         at sun.applet.AppletPanel.runLoader(AppletPanel.java:478)
         at sun.applet.AppletPanel.run(AppletPanel.java:293)
         at java.lang.Thread.run(Thread.java:539)
    java.lang.SecurityException: SHA1 digest error for ViewCafe.jar.sign
         at sun.security.util.ManifestEntryVerifier.verify(ManifestEntryVerifier.java:194)
         at java.util.jar.JarVerifier.processEntry(JarVerifier.java:210)
         at java.util.jar.JarVerifier.update(JarVerifier.java:197)
         at java.util.jar.JarVerifier$VerifierStream.read(JarVerifier.java:382)
         at sun.plugin.cache.CachedJarLoader.authenticate(CachedJarLoader.java:532)
         at sun.plugin.cache.CachedJarLoader.access$900(CachedJarLoader.java:63)
         at sun.plugin.cache.CachedJarLoader$4.run(CachedJarLoader.java:373)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.cache.JarCache.privileged(JarCache.java:340)
         at sun.plugin.cache.CachedJarLoader.download(CachedJarLoader.java:355)
         at sun.plugin.cache.CachedJarLoader.load(CachedJarLoader.java:116)
         at sun.plugin.cache.JarCache.get(JarCache.java:286)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(CachedJarURLConnection.java:81)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(CachedJarURLConnection.java:63)
         at sun.misc.URLClassPath$JarLoader.getJarFile(URLClassPath.java:501)
         at sun.misc.URLClassPath$JarLoader.<init>(URLClassPath.java:462)
         at sun.misc.URLClassPath$2.run(URLClassPath.java:258)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath.getLoader(URLClassPath.java:247)
         at sun.misc.URLClassPath.getLoader(URLClassPath.java:224)
         at sun.misc.URLClassPath.getResource(URLClassPath.java:137)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:193)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:189)
         at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:130)
         at sun.plugin.security.PluginClassLoader.findClass(PluginClassLoader.java:185)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:308)
         at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:110)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:264)
         at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:379)
         at sun.applet.AppletPanel.createApplet(AppletPanel.java:542)
         at sun.plugin.AppletViewer.createApplet(AppletViewer.java:1264)
         at sun.applet.AppletPanel.runLoader(AppletPanel.java:478)
         at sun.applet.AppletPanel.run(AppletPanel.java:293)
         at java.lang.Thread.run(Thread.java:539)
    java.lang.SecurityException: SHA1 digest error for XMLClient.jar.sign
         at sun.security.util.ManifestEntryVerifier.verify(ManifestEntryVerifier.java:194)
         at java.util.jar.JarVerifier.processEntry(JarVerifier.java:210)
         at java.util.jar.JarVerifier.update(JarVerifier.java:197)
         at java.util.jar.JarVerifier$VerifierStream.read(JarVerifier.java:382)
         at sun.plugin.cache.CachedJarLoader.authenticate(CachedJarLoader.java:532)
         at sun.plugin.cache.CachedJarLoader.access$900(CachedJarLoader.java:63)
         at sun.plugin.cache.CachedJarLoader$4.run(CachedJarLoader.java:373)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.cache.JarCache.privileged(JarCache.java:340)
         at sun.plugin.cache.CachedJarLoader.download(CachedJarLoader.java:355)
         at sun.plugin.cache.CachedJarLoader.load(CachedJarLoader.java:116)
         at sun.plugin.cache.JarCache.get(JarCache.java:286)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.connect(CachedJarURLConnection.java:81)
         at sun.plugin.net.protocol.jar.CachedJarURLConnection.getJarFile(CachedJarURLConnection.java:63)
         at sun.misc.URLClassPath$JarLoader.getJarFile(URLClassPath.java:501)
         at sun.misc.URLClassPath$JarLoader.<init>(URLClassPath.java:462)
         at sun.misc.URLClassPath$2.run(URLClassPath.java:258)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath.getLoader(URLClassPath.java:247)
         at sun.misc.URLClassPath.getLoader(URLClassPath.java:224)
         at sun.misc.URLClassPath.getResource(URLClassPath.java:137)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:193)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:189)
         at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:130)
         at sun.plugin.security.PluginClassLoader.findClass(PluginClassLoader.java:185)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:308)
         at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:110)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:264)
         at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:379)
         at sun.applet.AppletPanel.createApplet(AppletPanel.java:542)
         at sun.plugin.AppletViewer.createApplet(AppletViewer.java:1264)
         at sun.applet.AppletPanel.runLoader(AppletPanel.java:478)
         at sun.applet.AppletPanel.run(AppletPanel.java:293)
         at java.lang.Thread.run(Thread.java:539)

  • Errors installing and uninstalling JDK and JRE 5.0 update 6

    I recently removed some older versions of java as they take up alot of space.. now wondering if i should have.
    I uninstalled all version fine, leaving only the update 6 for both JDK and JRE. Now when i try to compile in Jcreator i get the error message:
    'Error : Invalid path, "C:\ProgramFiles\Java\jdk1.5.0_05\bin\javac.exe" -source 1.5 -classpath "C:\Program Files\Xinox
    Software\JCreatorV3LE\MyProjects\Chapter07_Listing03" -d C:\Program"
    Files\Xinox "Software\JCreatorV3LE\MyProjects\Chapter07_Listing03
    @src_chapter07_listing03.txt"'
    I have no javac file in the directory.I did before i unstalled the older updates
    I am getting a windows installer error when trying to install JDK 5.0 update 6, windows installer works when trying to uninstall though. When i try to remove JDK 5.0 update 5, it tells me i all ready have this version installed, and to uninstall through my add/remove utility which is what i am doing! Then if i click ok i get: 'Fatal error during installation' This also occurs when trying to remove update 6. I also get problems with my JRE 5.0 update 6. When trying to uninstall i get the message 'error applying transforms, verify paths are valid' I cannot get rid of these!. It seems to be interfering/linked with installing them aswell.
    PLEASE HELP ME-i just want to compile
    Thank you

    This forum is for Sun Java Studio Creator product only... We'll be happy to assist you anytime if you have trouble installing or using this product. :-)

  • HTML Converter vs. JRE 1.4.x and JRE 1.3.x

    Had Netscape 6.1 and IE 5.0 and JRE 1.3.1 -- wrote applet
    and used HTML Converter to convert the HTML page to use JRE 1.3.1
    plugin.
    Everything worked just fine...
    Installed Netscape 7.02 and IE 6.0 and JRE 1.4.1.
    Now the HTML pages that were converted don't work with NN7 anymore
    because the page wants to load the 1.3.1 plugin. I get a message to
    load the 1.3.1 plugin. When I got the latest JRE, it was 1.3.1_07.
    I installed it and it still won't run because it doesn't install into
    NN7.
    And now NN6 won't run the old page anymore because the 1.3.1_07 is the
    new default plugin.
    Now NN7 and 1.4.x doesn't need converted HTML pages anymore but
    I still have a bunch of old converted HTML pages. Do I have to
    replace all my old converted HTML pages with plain vanilla pages now?
    If so, WHY DID SUN LEAD ME DOWN THE GARDEN PATH WITH THE HTML CONVERTER?
    ARRGGGGHHHHHH!
    Is there any way to get compatibility with the old converted HTML pages?
    Ken

    I don't pretend to be able to resolve the problem here - you have too many variables in the problem. The best advice I can give is to research the Plugin Developer's Guide, as it discusses this stuff in intimate detail.
    http://java.sun.com/j2se/1.4.1/docs/guide/plugin/developer_guide/contents.html
    These might also be useful
    http://java.sun.com/products/plugin/
    http://java.sun.com/products/plugin/versions.html

  • IDE's and JRE (issue)

    I recently reformatted my home computer and I'm using the most updated version of Vista x64. I also installed the 32-bit and 64-bit versions of JRE and JDK on my PC. My IDE (Eclipse) is installed on my Flash Drive, which also contains the latest JRE and JDK.
    My problem is this: When I attempt to compile code in Eclipse, it will successfully complile, but if there is a need for a new window, such as gridworld (http://www.horstmann.com/gridworld/), I am unable to make that window appear. The IDE works flawlessly on other computers, and the issue only occurs on my computer at home. Can anyone help me out?

    PubeHow much thrust does the Pube produce?no idea. it's not really about the power, it's a nice green eco-car, 100% recycled. it's made from old corsairs*
    *old coarse hairs boom boom                                                                                                                                                                                                                                                                                                                                                                                                       

  • I need some information about jre 1.5 and jre 1.6.

    Hello guys,
    I need some information about jre 1.5 and jre 1.6.
    Suppose if i have jre 1.5 customized with "additional language support" installed in my my desktop, and later on i install jre 1.6. will this jre over write all the esisting settings which was present in jre 1.5?
    In short will the version upgrades disable the features of the old Version even though the old version is present in the desktop?
    Thanks in advance for your answers.

    In <2j_j3.1889$[email protected]> =?iso-8859-1?B?VG9t4XMgU3XhcmV6?= writes:
    > Hi all, I am developing an acquisition data system for biomedical
    >signals and I need to transmit this data from my hardware to PC using the
    >USB port. For this, I am writing a device driver for Windows 98
    ^^^^^^ ^^^^^^ ^^^^^^^ ^^
    That's not a trivial step. I would write a small C/C++ program that
    exercises your driver (for robustness) just to be sure it's working
    right first without crashing your system.
    >The problem is that I don't know to use this driver in LabView.
    >For now, I think to use a "code interface node" with code writen in C or a
    >"call library function" with a DLL.
    That's correct. _After_ you got your C/C
    ++ test program (and USB
    driver) above working, then you can convert this little test program
    into a DLL or CIN, which can interface with LabView. A DLL might be
    easier (slightly) to write, but the CIN will work faster with LabView
    and can be designed to be reentrant. The Code Interface Reference
    Manual should guide you. Remember, this is a task for an _experienced_
    C programmer. You'll need to use handles to pointers into all your
    dynamic arrays and such passed into LabView.
    After you got your CIN or DLL written, you can use a special CIN
    function node to "link" (or bind) your CIN object into LabView's VI
    diagram.
    SOME THOUGHTS:
    There are many hardware devices already on the market today that come
    with Windows 98 drivers and DLL (or even CIN) libraries that would work
    immediately with LabView. Why don't you save yourself three months of
    work and simply buy one of these?
    /\ Mark M Mehl, alias Superticker (Supertickler to some)
    <><> Internet: [email protected]
    \/ Preferred
    UUCP: uunet!iastate.edu!mehl
    Disclaimer: You got to be kidding; who would want to claim anything I said?

  • HELP ME PLEASE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1XP and JRE 1.1.8 i

    We had a very large app running on Win NT with jdk 1.1.8 for last 4 years. Recently we tried to run this app on Win XP Pro SP1a. The app does not run with the simplest of error message you could think.
    "class not found: xxx.xxx.xxxx.MainWin" where xxxx are the package subfolders
    1: There is no other jdk/jre installed on XP except jre 1.1.8.
    2. I can run a simple program (a small helloworld app) with the jre without any problem. That means jre does start with no problem.
    3. This app includes packages and lot of jar files. All the file names are included in the bat file. The error I keep getting is "class not found: xxx.xxx.xxxx.MainWin"
    Yes Yes I know the issue of class path. I have been using the same bat file for years on NT. I included all the jar files in the bat file.
    My bat files says explicitly: jre -classpath c:\xxx\abc.jar; .............................. (bunch of jar files) xxx.xxx.xxx.MainWin.
    I tried using jdk 1.1.8, "java" instead of jre. That command terminates some dll fault error (javai.dll) on XP. I am completely at loss. This is a well established app. I cannot change it now. It has been working seemlessly on NT. Now this XP issue has really bogged me. Users are changing machines to XP from NT. I have spent already one week on trying all possible things with bat file (typing manually on cmd line also).
    PLEASE PLEASE SOME BODY HELP.......................

    Looks okay, as far as it goes.
    I haven't come across a "jre" command, and you said "java" stops with some dll-missing error.
    So perhaps it's a fucked up java installation?
    Let me reproduce what I understood so far: the bat file is in c:\aar and the structure goes down to
    c:\aar\com\ing\isd\aar\ and there is a file named MainWin.class? (Please check the existence of this file!)
    The other part of the classpath is not so very important at the moment, since the initial
    classfile can't be found, which is supposed to be c:\aar\com\ing\isd\aar\MainWin.class
    If that file exists, and the java installation is not fucked up, I don't really know what else.
    But it is very unlikely that there will be anyone else replying to a posting with that subject!!
    Test the things I told you and if it doesn't work, read this (skip the first two screen pages of changelog)
    http://www.catb.org/~esr/faqs/smart-questions.html
    and try and ask again in a new thread. That one should better be good.
    -T-

  • Mismatch of JDK and JRE versions cause screen freeze for applications ?

    Hi,
    My Java swing application is built on jdk1.3.1_17 in server. It was working fine without any issue when I use Java webstart 1.0.1 to download the client part of the application and JRE 1.3.1_10 to run the application from my local desktop.
    For better performance, I upgraded my local desktop to 1.4.2_07 version of JRE and same version of java Web start 2 months before. From that day, I am facing a "Screen freeze" issue in my application. It means, while working on the application, the application screen goes blank or White screen. This issue may come while doing any activity all of a sudden , there is no pattern found.
    Is there any reason like incompatibility of lower JDK version and higher JRE/JWS versions could have caused this issue ? Any Idea plz
    Thanks in advance
    David

    I'm using a 15" Macbook Pro with Retina Display. The applications I have are Indesign, Illustrator, and Photoshop. Over a period of time, using these programs will make the screen turn blank. Sometimes, the screen turns a solid color and it just happens to be what ever color I've been using with the Color picker tool.
    I don't know for sure what it could be. I tried checking Disk Utility (one problem was solve, but blank screen wasn't fixed).
    I have to force reboot only to be faced with another blank screen. I either keep trying or keep cmd+opt+p+r until the screen boots back to normal. (This is probably due to the programs not shutting down properly when the laptop blank screens)

  • DV6-3122us/ after and during Factory restore problems

    This is a DV6-3122us 64 bit notebook, 500GB hard drive, 4 GB ram, Windows 7 Home Premium OS. I restored it from the Factory purchased recovery discs, and I had a problem with that, had to do it 3 times kept locking up at 9% on the restore part. It finally went through then said couldn't install, turned it off, and it was installed. This is Windows 7 Home Premium. Now I have lock ups when updating. The HP assistant  loads but says it has errors at the very top, and doesn't show the system information at the bottom. The hard drive only shows 80 GB allocated, and 397 unallocated. This is all the original hardware, which has been tested and has passed, memory has passed. Any Help would be greatly appreciated.

    1. Right click on the partition ( C:\ ) you want to Extend into the now unallocated partition and click on Extend Volume.
    2. Click on Next for the Welcome to the Extend Volume Wizard window
    3. Select the amount of space in MB you want to use from the unallocated partition to use to Extend this partition
    4. Select all of the available space .
    5. Click on Next.
    6. Click on Finish in the Completing Extend window
    You will now see the Disk Management console with the new extended partition volume ready to be used.
    7. Close Computer Management.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • I recently had to swap out my iphone 4s and I am having problems restoring photos and videos from icloud.  I get a message on my phone that says " the URL you are requesting is not found on this server".  Pics and videos have been deleted too.

    I recently had to swap out my iphone 4s and I am having problems restoring photos and videos from icloud.  When I restored my phone from icloud, half of my pics and videos have been deleted, the pics that were restored on my phone are very blurry, and the videos won't play.  I get a message on my phone that says " the URL you are requesting is not found on this server".  I have erased and reset my phone twice, but every time I do it, more pics and videos are deleted.  I have backed up to icloud and iphoto, however, some of the pics are no longer on iphoto either.  Is there someway to get the videos to play on my phone again?  Make the photos not as blurry as they are now and to restore the pics and videos that have been lost?  I really would love to have them back, this phone is supposed to be the best and right now it doesn't seem to be.  Please help if you can.

    I too have noticed that once i restored from iCloud. Pictures blurry and videos wont play!
    Need help too!!

  • I am using a work laptop and have the same problem. When I try to change the "configure proxy", they only available option is "use this proxy server for all protocols". Could it be that my system administrator blocked me from changing it since they don'

    I am using a work laptop and have the same problem. When I try to change the "configure proxy", they only available option is "use this proxy server for all protocols". Could it be that my system administrator blocked me from changing it since they don't want us to use Firefox.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.4; FNGP_SYS)

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the ''Safe mode'' start window.
    You have to close and restart Firefox after each change via "File > Exit" (on Mac: "Firefox > Quit")

  • I have an iPhone 4S and never had a problem with syncing it. But suddenly, when I connected my phone to my mac, it says that its in recovery mode, and I need to restore it in order to sync. I've updated both my phone and my itunes, and it didnt work.Help?

    I have an iPhone 4S and never had a problem with syncing it. But suddenly, when I connected my phone to my mac, it says that its in recovery mode, and I need to restore it in order to sync. I've updated both my phone and my itunes, and it didnt work.Help?

    fighter19lisa wrote:
    that only makes it say its synced, when its not.
    No, it does not.  It transfers purchases from the iDevice to the computer.  The computer must be authorized for the Apple ID that the content was acquired with.
    fighter19lisa wrote:
    my playlists wont show up on the phone.
    Are they selected to sync?  Is Manually Manage content on the device selected?
    fighter19lisa wrote:
    i had to change my password for my aol account again and i still cannot get my email on my phone to even work
    What does that have to do with syncing content to the device?  FYI, nothing.

  • HT201304 Hi! My My mom bought me an iPhone 5 and I have a problem with my facetime I cant find it! Cant find it in settings and restrictions. She bought this in Bahrain both my iPhone and she ipad mini and she has facetime on her. What should I do?

    Hi! My My mom bought me an iPhone 5 and I have a problem with my facetime. I cant find it! Cant find it in settings and restrictions. I remember when she gave me this I see facetime in settings and after a couple of days its gone! She bought this in Bahrain both my iPhone and her iPad Mini. And I'm just wondering why she has facetime and why mine is missing? Please help! My iMessage is perfectly working. I lived in the Philippines

    Are you trying to use the phone in Bahrain with a supported carrier there? I suspect not. If you try to use this phone outside of Bahrain, you won't have FaceTime. This is done to prevent folks from simply crossing the border to purchase iPhones in Bahrain...FaceTime is banned in Saudi Arabia & the UAE. Sorry, but you'll only have FaceTime on that phone while using it in Bahrain on a supported carrier's network there.

  • TS3048 My early 2009 Mac Pro does not connect via bluetooth to my sound bar or bluetooth mini speakers. Both my wireless keyboard and mouse have no problems connecting. What do I need to do to connect to external bluetooth devices?

    My early 2009 Mac Pro does not connect via bluetooth to my sound bar or bluetooth mini speakers. Both my wireless keyboard and mouse have no problems connecting. What do I need to do to connect to external bluetooth devices?

    I would always have a wired keyboard and mouse on hand (need not be expensive ... any cheap wired devices will work).  "Emergency recovery" procedures can activate features in random order, so the opportunity to select a recovery partition may pass before the wireless devices are recognized.
    That will let you select the "turn on Bluetooth" icon.

Maybe you are looking for

  • IPad 2 Restore - Apps Will NOT Install

    I have recently been having intermittent problems with my home button being unresponsive on my iPad 2.  I decided I would try a restore to see if this would resolve the problem.  The home button issue may be better (more time will tell) but whoa did

  • Problem extending standard ViewReceiptsSearchVO view object with logic on get method

    Hi All, EBS 12.1.3 Database 11.2.0.3 I am trying to extend the 3 VOs related to ViewReceiptsSearch.  I extended a seeded ViewReceiptsSearchVO view object.  I haven't made any changes yet, no columns added, nothing altered.  When I run this substituti

  • Inconsistent "ghost" menu displayed by some software/hardware players

    Hi everyone. I have a very weird problem that I don't know how to prevent/solve. I had 2 events that ended on making 2 projects (A & B) each one with 2 discs (1 and 2). I made everything starting from the same DVD Studio Pro project file just saving

  • Can I use the Command Line Interface on Unix?

    Hi, We use 9iAS on Unix. We want to use Discoverer Command Line Interface on unix to export the worksheet query result. Can anyone know how to do this? I couldn't find out the command similar to dis5usr.exe for windows version. Thanks. Richard Qiu

  • Portal Report Layout Editor

    I have created a report selecting the custom report layout option. Rather than using a link on the column, I would like to add different links in the footer section in the Report Layout Editor. My problem is trying to create a link and pass a value f