Error 150:30 used 109 repair tool still getting error

Elements 8 Organizer is working fine just can not use editor.

     Word is, Adobe will be coming out with a new version of Photoshop soon. 'Fotoshop Universal 2 (FU2 for short) This program will be automatically obsolete the minute you install it. You may not even need a computer to run it. Just insert the disk into your toaster or whatever you have around that features a slot (no pun intended) and it will go to work. FU2 will be a precursor to FU2.1 which will eliminate the need to insert the disk into anything. It will come with it's own slot. You will carry it with you. From that point on, anything you think or do, anywhere, will be color corrected, beveled, textured, drop shadowed, resaturized and 'saved as'. What a world it will be. FU2 Adobe.

Similar Messages

  • Problem with calibration of AT-MIO-16XE-10 card. Using E Series Calibrate VI I get error = -10840, using MIO Calibrate VI I get error = -10029.

    The reason I want to calibrate the card is that I am getting a spurious +10mV offset on the analog out channels, and a -60mV offset on the analog in. These offsets first occured after a hard-disk crash, where labview 6.0 was installed along with the new hard-disk. The computer is running window 95.

    The correct function to use is E Series Calibrate. In the past, this 10840 error is returned by the E series calibrate function when the EEPROM of the board needs to be reprogrammed. To fix this problem, call customer support to send the board in (http://sine.ni.com/apps/we/niae_asc.main).
    If you cannot wait for the board's EEPROM to be reprogrammed, then consider using averaging several datapoints rather than using single datapoints to lessen the offset in your results. There are other sources of bad readings besides the need for calibration. Check out this webpage for more troubleshooting advice:
    http://digital.ni.com/public.nsf/websearch/cb279761ae4bc61186256a38005444c6

  • ITunes 10.5.2 failed on my Windows XP system.  Now my phone is not recognized.  I tried installing manually.  I tried to repair using Add/Remove programs.  Still get errors.

    Attempted update to iTunes 10.5.2 failed on my Windows XP system.  Now my phone is not recognized.  I tried installing manually.  I tried to repair using Add/Remove programs.  Still get errors.

    Try doing it in a WIndows Safe mode - Restart computer and hit F8 key right after your see BIOS check and choose "Safe mode with networking"
    Do the SFC /SCANNOW again.
    If that does not work, whilst in safe mode, download Free Malwarebyte software from CNET's Download.com.  Install, update virus definition then perform a full scan.  Remove if it did find some viruses or trojans.  Restart computer.
    Back to regular windows, do the SFC /SCANNOW again.
    If that doesnot work, check to see if your Hard drive has errors or bad sectors
    GO START BUTTON /COMPUTER, right mouse click OS (C:) and choose "Properties"
    Choose "Tools" tab and under error checking, click "Check Now".
    Make sure "Scan for and attempt recovery of bad sectors" is checked and click start.
    Restart windows will perform the above task to fix errors  This may take hours depends on how big is your Hard Drive
    Good Luck!!.

  • I backed up my movies and rebuild my computer, and after making sure i'm using the latest version of itunes and quicktime and and making sure i still had spare computer authorizations, i still get error 23132.  Please help.

    I backed up my movies and rebuild my computer, and after making sure i'm using the latest version of itunes and quicktime and and making sure i still had spare computer authorizations, i still get error 23132.  Please help.

    I had this exact issue.  Spent over an hour on the phone with apple support, they couldn't resolve.  Here is what I ended up doing, that worked.
    1.  Turned iTunes match off on all my iOS devices
    2.  Deleted the offending playlists from the iOS device they originated on
    3.  Started iTunes, let it run (literally) for an hour before it became responsive.  First thing I did, before clicking anywere else was disable iTunes match.  If I clicked anywhere, it would clock for another hour.
    4.  Let iTunes run overnight, by morning it had cleaned out the repeating play lists.  This got my Mac/iTunes back to an operable state.
    5.  Restore iPhones from backup in iTunes.
    What was causing my issue was a single playlist that was created on an iPhone, then suddenly showed up with several thousand duplicates on my other iPhone.  The culprit playlist did not, for some reason, duplicate itself on my two iPads.  Apple support seemed to think it was because the problem iPhone tried to sync the playlist to iCloud over and over again unsuccessfully, then it finally went through and populated the thousands of blank/failed playlists which then tried to propigate to iTunes and my other iOS devices.  Seems like a reasonable theory.
    I have not yet re-enabled iTunes match.  So, no idea what will happen if I decide to go back down that rabbit hole.

  • Using On Error Goto, Still Getting error

    My code loops through a list of files in a range. For each file name it goes to a network folder and opens that file, does some work and then closes the file. When the file is not in the folder I get an error on this statement:
    'Where "CurrentFileName" is a named range that holds the path and file name
    Workbooks.Open Filename:=WorksheetObject.Range("CurrentFileName").Value
    So..thinks me...I can just do this and avoid the error:
    On Error Go to EndIt
    Workbooks.Open Filename:=WorksheetObject.Range("CurrentFileName").Value
    EndIt:
    On Error Goto 0
    BUT..I still get an error when the file is missing from the folder. I have Error Trapping set to Break on Unhandled Errors. If I can't get this to work I try prefacing my workbook open statement by cycling through the files in the folder, but that will slow
    down my procedure considerably.
    Any help?
    tod

    Hi Todtown 
    Please follow this may be helpfull >>>
    String filename = WorksheetObject.Range("CurrentFileName").Value
     Range  cellRange =  WorksheetObject.Range("CurrentFileName")
    Check if cellRange is not protected.
    First check :  ISFileExist(filename)
    Second check : IsOpenpermission(filename)
    ... Happy Coding : RAJESH BISHT

  • We are using jni.h but its getting errors, please check it this

    We are using jni.h but its getting errors, please check it this
    Calling from a .dll using Java and JNI - by Borland Developer Support Staff
    Abstract:Basic JNI example: making a Win32 API call
    Making Native Windows API calls from within a Java Application
    One of the main points of Java is to be completely platform independent. However, sometimes it will occur that the developer of an
    application will know that his or her application is only going to be run on a specific platform, for example, Win32.
    NOTE: This example assumes that you are using JDK 1.2 or later.
    Below are the steps for writing a Java application that makes a Win32 API call. The application generates a Swing Jframe and makes it
    system modal, or gives it the �Always On Top� functionality, similar to that of the Windows NT Task Manager.
    Steps to follow:
    1. Write the Java code for the application
    2. Run javah.exe on your .class file to generate a C header file
    3. write the implementation of your native methods
    4. create the shared library
    5. run the application
    1. Write the Java code for the application
    import java.awt.*;
    import sun.awt.*;
    import sun.awt.windows.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class Frame1 extends JFrame {
    int windowHWND = 0;
    JButton jButton1 = new JButton();
    public Frame1() {
    //windowHWND = this.getHwnd();
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    public int getHwnd() {
    DrawingSurfaceInfo w = (DrawingSurfaceInfo) ((DrawingSurface) getPeer()).getDrawingSurfaceInfo();
    w.lock();
    WDrawingSurfaceInfo win32 = (WDrawingSurfaceInfo) w;
    int hwnd = win32.getHWnd();
    w.unlock();
    return hwnd;
    static {
    System.loadLibrary("windowOnTop");
    public static native void WindowAlwaysOnTop(int hwnd, boolean flag);
    public static void main(String[] args) {
    Frame1 frame11 = new Frame1();
    frame11.setSize(400,400);
    frame11.setVisible(true);
    private void jbInit() throws Exception {
    jButton1.setText("jButton1");
    this.addWindowListener(new java.awt.event.WindowAdapter() {
    public void windowOpened(WindowEvent e) {
    this_windowOpened(e);
    public void windowClosing(WindowEvent e) {
    this_windowClosing(e);
    this.getContentPane().add(jButton1, BorderLayout.NORTH);
    void this_windowOpened(WindowEvent e) {
    windowHWND = this.getHwnd();
    System.out.println("the value is: " + this.getHwnd());
    this.WindowAlwaysOnTop(windowHWND, true);
    void this_windowClosing(WindowEvent e) {
    System.exit(0);
    Once the code is written, compile it with Jbuilder or the command line javac.exe tool which will result in a generated .class file. You will use
    this .class file in the next step.
    2. Run javah.exe on your .class file to generate a C header file
    The following line represents the basic syntax for running javah.exe:
    javah Frame1
    where Frame1 is the name of the argument class.
    When you run javah.exe, it will generate a header file by the same name as your implementation but with a .h file extension. For this
    example the .h file that was generated from the above Java code will be emitted being that it is quite large.
    NOTE: Make sure that when you run javah.exe, it is the javah.exe that came with the same JDK that you will be compiling with as there may
    be some issues with using a version of javah.exe that is different from that of the JDK you are using to compile.
    3. write the implementation of your native methods
    Now that you have your Java source and your C header file, it is time to write the implementation of your native methods.
    Following is the C code that corresponds to the native methods declared in the Java code listed in step 1:
    #include "jni.h"
    #include "Frame1.h"
    #include <stdio.h>
    #include<windows.h>
    JNIEXPORT void JNICALL Java_Frame1_WindowAlwaysOnTop(JNIEnv *env, jclass obj, jint hwnd, jboolean flag)
    if (flag)
    SetWindowPos((HWND) hwnd,HWND_TOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
    else
    SetWindowPos((HWND) hwnd,HWND_NOTOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
    return;
    You will notice several things: one is that the function signature has �Java_Frame1_� preceeding the name of the function. If there was a
    package statement in the Java source, it would appear after ��Frame1_� in the function signature.
    Second, you will notice the #include �jni.h�. Normally this would be #include<jni.h>, depending on how you have your libraries set up within
    your C compiler.
    4. create the shared library
    Now you are ready to create the shared library. Using your C compiler, create a .dll file with the code from the C implementation file. Refer
    to the doccumentation of the C compiler for details on creating a .dll file.
    For those interested in using Borland C++ Builder:
    If you have got it installed, you could use Borland C++ Builder 3 or C++ Builder 4 to create your DLL file. If this is the case, you would use
    File | New... | DLL C++ Builder will then generate some code for you, and you will just need to add your implementation code to the code
    which was generated.
    Remember in the Java code in step one there is a line:
    static {
    System.loadLibrary("windowOnTop");
    �windowOnTop� is the name of the .dll file. You can name it whatever you want, just make sure that you specify the appropriate name when
    loading the library.
    5. run the application
    Finally you are ready to run the application. From the command line use java.exe and as the argument specify the name of the class that
    you compiled in step one. Once the system loads your DLL, the window that the VM creates should mimic the �Always On Top�
    functionality.
    We are getting errors like this
    �Compiling JNI.H:
    Error JNI_MD.H 23: , expected
    Error JNI.H 115: Declaration missing
    Error JNI.H 200: ) expected
    Error JNI.H 202: ) expected

    #include "jni.h"
    #include "Frame1.h"
    #include <stdio.h>
    #include<windows.h>
    JNIEXPORT void JNICALL Java_Frame1_WindowAlwaysOnTop(JNIEnv *env, jclass obj, jint hwnd, jboolean flag)
    if (flag)
    SetWindowPos((HWND) hwnd,HWND_TOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
    else
    SetWindowPos((HWND) hwnd,HWND_NOTOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
    return;
    We are getting errors like this
    �Compiling JNI.H:
    Error JNI_MD.H 23: , expected
    Error JNI.H 115: Declaration missing
    Error JNI.H 200: ) expected
    Error JNI.H 202: ) expected

  • Why am I still getting Error 16 after installing CS6 on a second computer?

    I have the CS6 version of Design and Web Premium installed on my macbook. Recently I tried installing it on my iMac running Yosemite. When opening any of the CS6 programs I get "Error 16". I have tried changing the permissions in the SLStore and Adobe PCD folders, but to no avail. I have also tried deactivating CS6 on my macbook. Why am I still getting Error 16?

    In this case you may to perform a clean installation once, meaning removing all Adobe products folders.
    First Run cc cleaner tool and clean remove all products
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.
    Then Open Applications folder and trash All Adobe related folders
    Click on Finder and then hold Command + Shift + G keys on your keypad
    It will open Go to folder window, type  exactly ~/Library and click on Go
    Then open Application Support
    Rename Adobe folder to Adobeold
    Go back to Library  and open Preferences
    Then trash All Adobe preferences files
    Go back to Library  and open cache ( trash All Adobe related files )
    Click on Finder and then hold Command + Shift + G keys on your keypad
    This time type /Library and click on Go.
    open Application Support
    Rename Adobe folder to Adobeold.
    If  possible restart the computer once.
    Then try to install your suite.

  • Trying to install Creative Cloud Desktop on windows 8.1, I've tried everything. Cloud Cleaner, removed all Adobe products from computer, ran in Administrator Deleted everything still get error code 1

    I've tried everything. Cloud Cleaner, removed all Adobe products from computer, ran in Administrator Deleted everything still get error code 1 noting in all the troubleshoots have helped.

    Error Code 1: "Failed to install" | Creative Cloud Desktop :
    https://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html

  • Still getting error 4310 with itunes 11 when trying to burn a disc (and my comp is new)!!

    Help downloaded itunes 11 still getting error 4310 when buring to a disc. the computer is new. 

    whydoyouneedtoknow wrote:
    .... Given the number of people having the same issue, and given that this issue has been around for several years, it's crazy that this isn't fixed.
    I concur!! Come on Apple!!!

  • During recovery on iPhone 4 I got : The iPhone could not be restored. Un unknown error occurred ( 3004 ). Then - iTunes has detected an iPhone in recovery mode. You must restore this iPhone before it can be used with iTunes.Then I get error 3004

    During recovery on iPhone 4 I got : The iPhone could not be restored. Un unknown error occurred ( 3004 ). Then - iTunes has detected an iPhone in recovery mode. You must restore this iPhone before it can be used with iTunes.Then I get error 3004 again. Latest iTunes and OS updates. I cant use the phone now. I did restart the destop,unplug the usb,...etc. Same iTune logo ,arrow and USB on the screen.THANK YOU SO MUCH,...!

    Perhaps the information in this Apple support article will help:
    http://support.apple.com/kb/TS3694#error3004
    Regards.

  • HT204382 Jfiles, still getting error message that required codec is not available -- Help!

    Just installed Telestream to open wmv files, but still getting error message that required codec is not available -- Help!

    I'm still getting that same message how did you fix it? i installed the wmv player or Flip4Mac (i'm unsure if thats the same program), but even after i am still getting the pop up saying " The movie ____.avi" can't be opened. What am i doing wrong?

  • Trying to log into firefox but keep getting firefox is in offline mode and can't browse the web, I've unchecked the work offline in the file menu but still get error message...

    trying to log into firefox but keep getting firefox is in offline mode and can't browse the web, I've unchecked the work offline in the file menu but still get error message...

    The work offline option can be found from Firefox button -> Web developer or from the menubar toolbar -> Work offline (Or at least thats what happens in Windows).
    Have you any other reason for being offline; router off, firefox not dialing up or whatever. Or is security software or a firewall blocking firefox, or a network connection, or firefox setting etc set wrongly.
    See also
    *[[cannot connect after upgrading firefox]]
    *[[options window - advanced panel]]
    * [[error loading web sites]]

  • My billing address is correct, but the i keep getting that my security code is incorrect and can't download apps.  I have re-entered all of my information in my account, but still get error message.  How to over-ride?

    My billing address is correct, but the i keep getting that my security code is incorrect and can't download apps.  I have re-entered all of my information in my account, but still get error message.  How to over-ride?

    If you have American Express, your 4-digit security code is on the front. If you have VISA or MasterCard, your 3-digit security code is outside the signature block on the back of your credit card. It happens to me also.

  • Still getting ERROR 1602 when updating.. I've tried everything... HELP!

    I have tried the following, and no luck.
    - Uninstalling iTunes and Apple Mobile Device, then reinstalling them after reboot.
    - Plugging into different USB ports, and blowing dust out of them.
    - Rebooting iPhone multiple times.
    - Clicking "Restore" instead of "Update". Still get error message.
    - Erasing the patch file and re-downloading it.
    The only thing I haven't done is call customer support because I hate dealing with stuff like this over the phone. Are there any other options, or should I plan on making a trip to an Apple store?
    Thanks for any help guys and sorry about another thread relating to this. I'm just extremely frustrated...

    There is some help here:
    http://discussions.apple.com/thread.jspa?threadID=1343034&tstart=0

  • TS1292 I have a gift card that i tried using a coin to scrape off. When i was doing it, the whole thing came off. I want to know if you can use the barcode to still get me the money.

    I have a gift card that i tried using a coin to scrape off. When i was doing it, the whole thing came off. I want to know if you can use the barcode to still get me the money.

    roaminggnome was referring to the page that you posted from i.e. http://support.apple.com/kb/TS1292
    You've tried contacting iTunes Support as it suggests on that page ? If not then you can contact them via this page and see what they say (you will probably need to give them images of the front and back of the card, and possibly its receipt) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes

Maybe you are looking for

  • Change GL Account in MIGO

    Hi All,      I have requirement. i.e.  The development of an enhancement which will automatically pull the GL account value from the purchase order and insert it into the goods receipt note (MIGO) . This enhancement will only be executed for account

  • Creating separate Idocs in Ecc system

    HI all, I have scenario like File(txt) --->to Idoc. The Flat file can have more than one orders and i need to create separate Idoc for each indivdual record at target system. To achive this requirement In File content conversion i used 'Recordsets pe

  • STO- Defective Return  from  cross company code

    Hi while  receiving  the return defective  item from  another company  code through STO  return order , the  system  bring back the material  with  mvt  type  673   and  update the unrestricted stock  which affect   MRP  for  ths material. Could  it

  • Pen pressure not working???

    Yeah so, just the other day I was using my brush with pen pressure, but now its not working!! I have no clue how that happened either!! I keep trying to apply the pen pressure to the brush tool, but it doesn't show that there is any sensitivity to th

  • How can I turn off "Google Suggest" in Firefox. I hate it! hate it! hate it!

    Firefox used to allow turning off "Google Suggest", but that's not possible with recent updates. I never, never, never (never!) want what "Google Suggest" insists on presenting to me. It's really inconvenient and a time waster.