Oracle 11gR1 on Windows Xp Error Cannot find J2SE SDK installed at path

When I type in path for java.exe in SQL Dev. , I get error 'Cannot find J2SE SDK installed at path: C:\Program Files\Java\jre6.' when I entered the path C:\Program Files\Java\jre6\bin\java. What is the reason for this error? How can I correct it? Database installation said it was successful

SQL Developer needs the Java JDK not the JRE to operate successfully. Your path looks like a path to the JRE. There is a windows download that comes complete with a Java Developer kit.
regards
Niall

Similar Messages

  • Cannot find J2SE SDK

    I am trying to use SQL developer (Oracle 11g)
    When I select the java.exe file it gives me error 'cannt find J2SE SDK installed at path (path of java.exe'

    You're targeting a JRE install, when you need a JDK. Should look something like this:
    C:\Program Files\Java\jdk1.6.0_21\binI'm assuming that your Oracle install has a JDK buried in it somewhere. If not you can:
    a) download JDK here: http://www.oracle.com/technetwork/java/javase/downloads/index.html
    b) download a copy of SQL Developer which is bundled with it's own copy of JDK: http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html
    I would recommend #2, as the latest version of SQL Developer is probably more up to date than what came with the database.

  • Cannot find a J2SE SDK installed at path C:\Program Files\Java\jre6

    Hi,
    I am trying to install the latest version of SQL Developer 3.0 on my brand new Windows7(64-bit) computer. I already installed the Java SDK6 (Update26). Unfortunatelly I am forcing some problems.
    When I start the sqldeveloper.exe for installing - at the beginning when I browse and select the java.exe an error comes up:
    Cannot find a J2SE SDK installed at path C:\Program Files\Java\jre6
    Why isn't it working?
    Can you help me? Any ideas?
    Thanks a lot!

    That's because you are trying to run SQLDeveloper with a JRE not a JDK.
    Since you already installed a JDK you should have a folder labeled
    jdk1.6.0_26in your C:\Program Files\Java directory.
    If you cant find the proper JDK in your system the 64 bit version for windows can be found here:
    http://download.oracle.com/otn-pub/java/jdk/6u26-b03/jdk-6u26-windows-x64.exe

  • Cannot find a J2SE SDK installed at path...

    I posted this in the SQL-Deveolper forum, but perhaps it is better posted here, since it is a Java issue.
    I found a thread for this same problem from 2007, but did not find an answer for it.
    I'm installing sql-developer on a Windows7 machine 64bit. When I go to run the exe, I get the popup:
    "Cannot find a J2SE SDK installed at path: C:\Program Files\Java\jre7."I've downloaded and installed a couple of jdk's to fix this:
    jdk-6u37-windows-x64.exe
    jdk-7u9-windows-x64.exe
    These did not work.
    Can anyone tell me what I need to download to get this to work and where I can find it?
    Thanks,

    I realized we have another wiindows machine that runs sql-developer just fine. I copied the jdk-6u25-windows-x64.exe from that machine and installed on the newer one. The install complained that a new version of java was already installed. But, the older version works where the newer one did not - does not.
    So I'm good. But it would be nice to know why the new versions do not include all the foo that seems to make sql-developer work.

  • Installation error:  Cannot find a J2SE SDK installed at path C:\Program Fi

    I am installing latest version of SQL Developer, Release 1.2. I have Sun Java 2 Standard Edition Version 1.5.0 (build 1.5.0_10-b03). When I browse and select the java.exe found it comes up with error: Cannot find a J2SE SDK installed at patch
    C:\Program Files\Java\jre1.5.0_10
    I am installing the version I downloaded for Windows systems with JDK1.5.
    I have tried on two different machines.
    Any ideas?

    This is going to seem loooong, but comprehensive.
    I'd initially always suggest using the bundled
    package, since that's supposed to be a tested and
    proven combination.You know what, I'm gonna be mighty surprised if you're implying that Oracle hasn't 'tested and proven' the releases at http://www.oracle.com./technology/software/products/sql/index.html other than the first 77 MB download labeled Oracle SQL Developer for Windows... :)
    After having problems with a graphics card for
    example, installing the latest JDK might be
    indicated.Huh?!? Not a clue what you're talkin' 'bout! :S
    It's also easy for users who don't know which Java
    version to download, or even where to find it! You
    guys have proven that: although it's stated you need
    .First of all, it says right there on the download page (http://www.oracle.com./technology/software/products/sql/index.html) that:
    "JDK 1.5 (JDK 5.0) is required. This is the minimum JDK version required"
    And we've "proven that [..] although it's stated you need the JDK, [we]'ve tried running with the JRE" and have NOT been able to run the application. It just presents the user a dialog box to locate the 'SDK' manually and exits gracefully if you try to dismiss it. So, conclusively proven, the JDK (or as SQL Developer puts it, Java SDK) is required- QED.
    And given users might have several versions running
    on the same machine (I have half a dozen), sqldev
    could easily pick up a wrong version.And every JRE installation (atleast all of Sun's) make sure they update the default (via PATH and other required system variables) JRE point to the latest one installed. So if you have anything 1.5+ you're good to go; if not, you've got an incompatile JRE. Doesn't sound that hard to me!
    As for being bulky, even without the bundled JDK, it
    still is.Ya missed the point. Developers are making Java applications bulkier by including the JRE/JDK with their distributions. A SQL Developer release sans JDK is about 46 MB; with JDK that climbs to 77 MB (sizes quoted from download page linked above).
    Imagine what happens when you have, besides SQL Developer (JDK 1.5 included), some-cool-java-app that also includes the JRE/JDK it was built on; and then another-java-app that also includes a JRE/JDK... I bet JDeveloper also comes with a JDK bundled in. So, now you have FOUR copies of JRE/JDK (aside from the "have half a dozen" that probably installed themselves via Java Update Checker)!
    Here's the big picture, the savings in disk space would only be the beginning of your benefits. Here's a few others:
    - Class Data Sharing (http://java.sun.com/javase/6/docs/technotes/guides/vm/class-data-sharing.html) introduced in Java SE 5.0 provides for storing definitions of commonly used classes in a representation closer to machine code, even closer than bytecode, this reducing load and startup time. Plus all VM's launced using that particular distribution get to share the cache- Performace+ !!
    Running each app offa' it's own VM just causes multiple caches to be loaded. You just multiplied your losses! :(
    - Sun is currently working on a way to have applications simply inject into a running JVM. That way, there is no load and startup time for the JVM, just the time to load you app classes. Using different distros would completely defeat this!
    (The reason why this feature isn't out yet is because they're still trying to make it possible to specify hitherto VM configurations like security and logging as application configurations. Then there's also the issue of setting up class loading boundaries between applications.
    You say you don't have to bring over the VB runtime
    for each app? I remember in the 90's doing it all the
    time. Of course, being MS, now that's not necessary
    anymore, since it's "magical" Windows. I don't have
    any machine from Sun, but for sure they've got Java
    bundled with it, right?I don't believe you had to do that since VB 5; and that's because MS realized that they messed up on this very point upto then! Sun worked the simple solution to that into their deployment strategy- install only ONE runtime and run all apps off that. As for you're half-a-dozen, I think you can safely uninstall the five older versions; because, even today, people are running apps developed using JDK1.1 on Java SE 6.0!
    Again, I find the most logical difference between JRE
    and JDK being the debugger. As you say it yourself:
    JRE for end-users, who don't need to do any
    debugging.
    Now, sqldev is not just a table browser, but also for
    debugging PL/SQL. 1 + 1 = 2.I think it's a little naive to differentiate between the JRE and JDK on just the debugger! Aside from the obvious inclusion of a compiler, the JDK has several other tools for monitoring/managing the heap, threads and logging on the fly. There's also the Doclet API and Sun's javadoc implementation, dev interfaces for instrumenting the VM, native interfaces, ...
    And I reiterate, we're talkin' PL/SQL developers here. Why would I want to give a PL/SQL developer a Java Development Kit?!? ;|
    Nevertheless, as said in the other thread, if the
    team discloses how to circumvent the SDK check at
    startup, you can go ahead and use the JRE. In any
    case, you'd have to agree that won't work as
    out-of-the-box solution...You're right, it won't work like a standard Windows OOTB app. But, it WILL work as a Java OOTB that only mandates that there be a JRE available; just like the scores of Java apps out there- from tiny little Pong clones to large IDE's like NetBeans.
    BTW, don't even think about quoting Websphere/Rational/Eclipse as counter-arguments. They are the biggest offenders as far as this issue goes. And jikes is an abomination, a curse Sun must carry as a result to opening the VM Spec. But, I digress...

  • Database Control on Windows - Gives error Cannot Find Server or DNS Error

    hi all,
    After installing 10g on Windows, the necessary services for my new db are running, listener is up.
    But when I try to bring up Database Control via http://pnclultraprd.corporate.mem.5500/em/console/logon/logon
    I get "The page cannot be displayed. Cannot find server'
    I've not had this before on new installations and I'm stuck.
    Any tips? thanks, John

    What is the status of the enterprise manager and agent,
    emctl status dbconsole
    emctl status agentHTH
    Aman....

  • My Windows 2000 PC cannot find driver to "install" new Ipod..

    I have Windows 2000 on my PC..I installed Service Pack 4 (required for it to work in Win 2K)..when I plug in the new (just bought it today) 30 GB Ipod (after of course installing ITunes, etc)..my PC cannot find any drivers for it..I tried having it search the enclosed CD....& every other option...Can anyone help?..(I still use the older USB version on this PC....it, the USB port "see's" it..(the USB port work's) ..but it say's there's no drivers to be found)..What is the problem?..Anyone else have this problem??..Thanks in advance for the help..& I'm looking forward to participating in these discussions!....

    No..in Control panel it's a "Virtual Clone Drive"..When I first plug-in the iPod..It say's New Hardware Found..searching for drivers..none are found...In iTunes..if you try to Export any tunes..it just show's as a Virtual Clone Drive...It need's a driver for it...

  • [RESOLVED] Cannot find a J2SE SDK installed at path: C:\java16

    I have SQL Developer 3.0.04.34 in C:\apps\sqldeveloper\ and the 32-bit 1.6 JDK in C:\java16\. SQL Developer was working properly until this morning after I updated my JRE (C:\Program Files\Java\jre6\) from 1.5 to 1.6 and JDK (C:\java16\) from 1.6.something to 1.6.26. Now SQL Dev prompts me again for the path to java.exe, but when I specify C:\java16\bin\java.exe, it gives me the error shown in the thread title. The existing sqldeveloper.conf shows "SetJavaHome C:\java16". I found other threads that mention this error, but the problem is typically pointing to the JRE instead of JDK (C:\java16\ is the JDK in my case) or 32-bit vs. 64-bit (this is 32-bit JDK in XP x86). What else might cause the error? I'd rather not reinstall the SQL Developer package that includes the JDK since I already have the JDK elsewhere and it was working before.
    EDIT: Never mind. Something must have gone wrong when I was updating the JRE and JDK. I reinstalled the JDK, and now SQL Developer starts.

    When i start sqldeveloper.exe (there no exe with a 64 in the name) there ist a dialog that wants to know the path to the JRE.
    I tried to chose the directory i placed the Java 7 JDK.
    Tried the bin folder in that.
    Tried the jre folder and the bin folder in jre.
    Everytime i do this ther is the message "cannot find java se sdk installation".
    Maybe i am doing it wrong.
    What i did:
    Downloaded jdk-7u45-windows-x64.exe from oracle.com
    Downloaded sqldeveloper-4.0.0.12.84-no-jre.zip from oracle.com
    Unzipped sqldeveloper-4.0.0.12.84-no-jre.zip to directory
    Opened jdk-7u45-windows-x64.exe with 7zip, there opened tools.zip, unzipped tools.zip to a directory
    Started sqldeveloper.exe from software directory and tried to find the JRE... diddn't work
    Maybe sqldeveloper.exe ist looking for 32 bit Java?
    Update:
    Downloaded jdk-7u45-windows-i586.exe from oracle.com
    Opened jdk-7u45-windows-i586.exe, there opened tools.zip, unzipped tools.zip to a directory
    Started sqldeveloper.exe from software directory and tried to find the JRE... diddn't work
    Doesn't look like its working this way.
    I would realy be very happy to have the new SQL Developer packaged with JAVA again - thats the sollution i am looking for.
    Nachricht geändert durch user2905395 - added update

  • Cannot find Microsoft Word Installed on your system - RH10 - a solution

    I started receiving the error "Cannot find Microsoft Word Installed on your system" whenever I tried to generate printed documentation from RoboHelp 10. This occurred after I installed Open Office 3.4.1.
    Clicking the "Printed Documentation" option in the SSL pod generated the error. However, right-clicking on the "Printed Documentation" option, selecting "Properties", then clicking "Save and Generate" did work. Go figure.
    I am using Word 2007.
    All of these suggested solutions to resolve the problem didn't work, unfortunately.
    Uninstalling and reinstalling Open Office with the correct option selected for file associations as suggested here:
    http://www.grainge.org/pages/authoring/printing/print_issues.htm#other_issues
    Tried reinstalling the MPJ2DOC.DLL as suggested here:
    http://helpx.adobe.com/robohelp/kb/error-cannot-find-microsoft-word.html
    Tried all the suggestions here:
    http://forums.adobe.com/message/4173839
    Spent 2 hours with Adobe support (they were helpful but could not fix the problem) uninstalling and reinstalling RoboHelp, including reinstalling and registering the dll again.
    Finally I fixed the problem by following the simple solution here. I found that the problem was that the Word file associations were corrupt and you simply need to reregister word.
    http://www.word.mvps.org/FAQs/AppErr...gisterWord.htm
    Here's the solution in case the  link does not work:
    How to re-register Word when problems crop up opening files
    Article contributed by Cindy Meister
    If you find that Word files do not open in the desired version of Word when you double-click them in Windows Explorer, or that when opening them from the Desktop or Explorer, a series of messages appear claiming that the file cannot be opened, such as:
    “Cannot open C:\My”
    “Cannot open "Documents\The”
    “Cannot open "Test.doc"”
    .. you need to re-register Word.  To fix the problem:
    Word 97 and above
    Click Start | Run (bottom- left corner of your screen).
    In the “Open“ box, type:
    winword /rand press Enter. Note that there is a space before the forward slash
    Word 95
    Locate the file winword.reg on your system
    Double-click it to re-register Word
    Hope this helps anyone else who has struck this problem.
    Cheers Mark

    I am not surprised that the DLL is crashing your system. If you read the Knowledge Base item for that file it specifically refers to RoboHelp 9. Your first step is to restore the correct DLL for Rh10. I hope you backed it up.
    What is your operating system?
    Have you tried uninstalling and reinstalling?
    Is your Normal.dot file on your local drive or on a network.
    Are you generating the printed document to your local drive?
    At what point does the generation crash?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Need help: Cannot find Microsoft Word installed on your system.

    I am having issues trying to generate a pdf from a robohelp 7 html project.  Whenever I try to generate a pdf I get the error "Cannot find Microsoft Word installed on your system."
    I have tried to uninstall both Office (2003) and robohelp, re-installing office first and then robohelp, but it doesn't help.  Can anyone shed some light on this issue?

    Colum,
    Thanks for the reply, but it's Microsoft Office, not Open Office.
    I have read many threads here and tried most of the suggestions, up to and including:
    Uninstall/Reinstall of Office and RH 7
    Adjusting Macro security
    comparing registry entries
    There are others but I can't think of them all right now.  Point being, nothing has worked thus far.  I must admit this is fairly frustrating but I haven't given up yet.  Any more suggestions are welcome, and I will review the link you gave me just to make sure I cover all my bases.

  • Installation Error, Cannot find "CrossRef"

    I am trying to install Lync 2013 on a new server and I'm having an issue while preparing Forest, this is the error I am getting.
    > Prepare Forest
    Enable-CSAdForest -GroupDomain dc.emtecsu.com -Verbose -Confirm:$false -Report "C:\Users\......\AppData\Local\Temp\Enable-CSAdForest-[2014_06_18][10_43_04].html"
    Creating new log file "C:\Users\.......\AppData\Local\Temp\Enable-CSAdForest-9033ab00-1f99-4ea1-b23d-0ce8218c6c24.xml".
    Enable the Active Directory forest to host Lync Server 2013 deployments.
    Creating new log file "C:\Users\......\AppData\Local\Temp\Enable-CSAdForest-[2014_06_18][10_43_04].html".
     WARNING: Enable-CSAdForest failed.
     WARNING: Detailed results can be found at "C:\Users\.......\AppData\Local\Temp\Enable-CSAdForest-[2014_06_18][10_43_04].html".
    Command execution failed: Cannot find the object "CrossRef" in Active Directory.

    Have you looked at the note on Enable-CSAdForest?
    "If you receive the following error, “Cannot find the object ‘CrossRef’ in Active Directory” while running
    tasks to prepare a child domain of a single-forest environment with multiple domains, you may have to manually add the RTCComponentUniversalServices group from the parent domain to the Windows Authorization Access group in the child domain." - http://technet.microsoft.com/en-us/library/gg412764.aspx
    Also look at a similar thread: http://social.technet.microsoft.com/forums/lync/en-US/868714f4-26f6-4c19-86ff-cc69935b0153/cannot-find-the-object-crossref-in-active-directory
    Please mark posts as answers/helpful if it answers your question.
    Blog
    Lync Validator - Used to assist in the validation and documentation of Lync Server 2013.

  • JDK7 INSTALLATION FAILS WITH ERROR CANNOT FIND REQUIRED JAVA RUNTIME ENVIRONMENT

    Hi
    I am trying to install jdk7 on windows7 through command line with command java_ee_sdk-6u4-jdk7-windows-x64 -j "C:\Program Files\Java\jre7\bin". But it fails with error cannot find required java runtime environment in C:\Program Files\Java\jre7\bin. I have set the java_home and path environment variables to above path. Also I tried instaling through installer but it gave same error with null in path. Can anyone help?

    Hi
    I am trying to install jdk7 on windows7 through command line with command java_ee_sdk-6u4-jdk7-windows-x64 -j "C:\Program Files\Java\jre7\bin". But it fails with error cannot find required java runtime environment in C:\Program Files\Java\jre7\bin. I have set the java_home and path environment variables to above path. Also I tried instaling through installer but it gave same error with null in path. Can anyone help?

  • Xmlreader schema validation error: Cannot find the declaration of element

    I have multiple schemas with namespaces but I would like to validate an xml document without namespaces. The schemas all have elementFormDefault="unqualified" in the root element.
    I am encountering error below in my validation using xmlreader:
    ERROR:
    Cannot find the declaration of element 'NewTradenetDeclaration'.
    my code is:
    xmlReader = XMLReaderFactory.createXMLReader("org.apache.xerces.parsers.SAXParser");
    xmlReader.setFeature(VALIDATION_FEATURE_ID, true);
    xmlReader.setFeature(SCHEMA_VALIDATION_FEATURE_ID, true);
    xmlReader.setFeature(SCHEMA_FULL_CHECKING_FEATURE_ID, true);
    xmlReader.setFeature(SCHEMA_NAMESPACE_FEATURE_ID, true);
    xmlReader.setProperty(JAXP_SCHEMA_LANGUAGE, XMLConstants.W3C_XML_SCHEMA_NS_URI);
    String schemaURI = "NewTradenetDeclaration.xsd";
    // ive tried all of the ff but throws the same error
    //xmlReader.setProperty(EXTERNAL_SCHEMA_LOCATION, "urn:crimsonlogic:tn:schema:xsd:NewTradenetDeclaration NewTradenetDeclaration.xsd");
    //xmlReader.setProperty(EXTERNAL_SCHEMA_LOCATION, schemaURI);
    xmlReader.setProperty(JAXP_SCHEMA_SOURCE, schemaURI);
    // set entity resolver to resolve xsd locations
    MyResolver resolver = new MyResolver();
    xmlReader.setEntityResolver(resolver);the entity resolver has:
    public InputSource resolveEntity (String publicId, String systemId) {
      String filename =  "c:/workspace/TXParser/schema/"+ systemId.substring(systemId.lastIndexOf("/")+1);
      File f = new File(filename);
      InputSource source = null;
      try {
        source = new InputSource(new FileReader(f));
      } catch(Exception e) {
      System.out.println("InputSource exception: " + e.getMessage());                 
      return source;
    }Help please. Thanks.

    I fight with the same error, it is curious that the schema from schemaLocation can not be validated. If i set the schema manually through an attribute it works. What i try to do is overwriting the resolveEntity in the handler to get the schema from another location and validate the xml against the schema specified in the attribute schemaLocation rather than setting it manually :-(

  • Configure: error: Cannot find php-config

    After security update 2008-002 for Leopard, the PHP module builder stops, because the PHP version running on the machine doesn't match the header files from the PHP-developer part. More info see: http://www.naquah.net/blog/dennis/2008/03/20/how-to-get-eaccelerator-working-aga in-after-installing-security-update-2008-0#comment-50
    After editing /usr/bin/php-config
    Change
    version="5.2.4" to version="5.2.5" and
    vernum="50204" to vernum="50205"
    and /usr/include/php/main/php_version.h
    Change
    #define PHPRELEASEVERSION 4 to #define PHPRELEASEVERSION 5
    #define PHP_VERSION "5.2.4" to #define PHP_VERSION "5.2.5" and
    #define PHPVERSIONID 50204 to #define PHPVERSIONID 50205
    the ./configure command stops with a:
    configure: error: Cannot find php-config. Please use --with-php-config=PATH
    even when explicitly specifying the php-config location, the ./configure --with-php-config=/usr/bin/php-config command still throws an identical error.
    The file is there, accessible and not empty:
    $ ls -l /usr/bin/php-config
    -r-xr-xr-x 1 root wheel 3031 22 mrt 21:44 /usr/bin/php-config
    $ head /usr/bin/php-config
    #! /bin/sh
    SED="/usr/bin/sed"
    prefix="/usr"
    exec_prefix="${prefix}"
    version="5.2.5"
    vernum="50205"
    include_dir="${prefix}/include/php"
    includes="-I$include_dir -I$include_dir/main -I$include_dir/TSRM -I$include_dir/Zend -I$include_dir/ext -I$include_dir/ext/date/lib"
    ldflags=" -L/usr/lib/mysql"
    Re installing Xcode 3.0 didn't solve the problem.
    What could be done to repair the (php) configure command, to allow me to build php modules again?

    On my installation I have both NVidia and mesa drivers installed, thus two sets of GL headers/libraries.
    For Mesa: SUNWxorg-mesa
    Nvidia: NVDAgraphics
    If you want to develop on your system you may want to install much more than just GL headers.
    Its a pity that Solaris packaging is not really flexible, so you better do a full install indeed...
    regards,
    __Fedor.

  • Runtime Error "Cannot find system in table file"

    I need assistance!
    I have a Blackberry Curve 8310 and have recently installed Version 4.5
    I am trying to setup my synchronization.  I have followed the steps to setup my calendar to Outlook 2007.  It tells me Congratulations! You have successfully configured the product. However, when I press Finish, I get a Runtime Error "Cannot find system in table file"
    I have uninstalled the program and reinstalled it - the same error appears. 
    Any help would be appreciated!
    Solved!
    Go to Solution.

    FIGURED IT OUT!!!  
    The following steps, which are posted on the RIM Support will work; however, I had to do it a different way.  In Step 1, it states that the ilxolkCompanion.fil is located in C:\Program Files\Research In Motion\BlackBerry\Connectors\MS Outlook Connector path...however, when I searched for this file, it was actually located in C:\Program Files\Blackberry\Connectors\MS Outlook Connector.  (This could be because I upgraded from 4.2.2 to 4.5 w/o completing a clean uninstall...not too sure why)
    Once I located the file through the command prompt, I unregistered as per the instructions in Step 1.  I then followed step 2 exactly word for word...and VOILA!!!  I now have Version 4.5 working with MS Outlook 2007
     ResolutionIf the Connectors folder is still present in C\Program Files\Research In Motion\BlackBerry\Connectors\MS Outlook Connector, follow these steps:
    Unregister the old Microsoft Outlook connector ilxolkCompanion.fil.
    Open the command prompt.
    Navigate to C:\Program Files\Research In Motion\BlackBerry\Connectors\MS Outlook Connector.
    Type in the command regsvr32 -u ilxolkCompanion.fil.
    In Desktop Manager, Microsoft Outlook will no longer be listed as an available desktop application.
    Register the most current Microsoft Outlook connector.
    Navigate to C:\Program Files\Research In Motion\BlackBerry\IS71 Connectors\MS Outlook Connector.
    Type in the command regsvr32 msoutlookconnector.fil.
    In Desktop Manager, Microsoft Outlook will now be registered as an available desktop application.
    Once these steps have been completed, configure synchronization again.

Maybe you are looking for

  • Is there a workaround for Photoshop CS6 Histogram?

    I have noticed this and I am wondering if there is a more feasable workaround other than saving my work, closing the application and reopening the app. Here are the steps: Open a file (any file type compatible) Open the histogram window Open the laye

  • Error while using Before report trigger. -- Urgent

    Dear All, The following error I am getting when I execute my data template where I have used Before Report Trigger. I am also pasting the Data Template that I have developed. ============================ Error ============================ XDO Data En

  • My Macbok Air keeps randomly restarting.

    My Macbok Air keeps randomly restarting. Please see error code: Anonymous UUID:       8CD0B880-AF43-EBAB-7561-4FF5BE3F73F9 Fri Dec 12 10:39:06 2014 *** Panic Report *** panic(cpu 2 caller 0xffffff800721e80a): Kernel trap at 0xffffff7f87e5a376, type 1

  • Photoshop CS4 and GeForce 6600 on PowerPC G5

    I get frequent alert from Photoshop CS4 regarding display driver which say's to check for driver update and that Open GL 2.0 is not available and that GPU is turned off. But I can work in the photoshop but a few things are slow and look is not that g

  • Alpha channel in videos

    Hi, i would like to use an video alpha channel. VP6 files with alpha channel are not displayed in a javafx applet. Is there any other format which supports alpha channels in javafx? The corresponding MediaView has compositable == true. Thanks Thomas