Help Please! Exception Error with Threads

In my program i get this:
java.lang.NullPointerException
     at kmess$SocketClient.run(kmess.java:336)
     at java.lang.Thread.run(Thread.java:536)line 336 refers to this part of my code:
public void run()
          if(getdata.equals(Thread.currentThread()) )
               System.out.println("running getdata thread");
               getdatamethod();
          if(senddataThread.equals(Thread.currentThread()) )
               System.out.println("running senddataThread thread");
               senddatamethod();
}Now, here is the rest of this class that this method is in:
class SocketClient extends JFrame implements Runnable {
     Socket socket = null;
   PrintWriter out = null;
   BufferedReader in = null;
          String text = null;
     Thread getdata;
   SocketClient(){
     public void listenSocket() {
     if ( connected==("2") ) {
//Create socket connection
     try{
       socket = new Socket("0.0.0.0", 4444);
       out = new PrintWriter(socket.getOutputStream(), true);
       in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
     } catch (UnknownHostException e) {
       System.out.println("Unknown host: host your connecting to");
       System.exit(1);
     } catch  (IOException e) {
       System.out.println("No I/O");
       System.exit(1);
               connected = "1";
               out2 = out;
               in2 = in;
     if (thisclient==("1"))
          creategetdatathread();
     if (thisclient==("2"))
     { Thread senddataThread = new Thread(this);
          senddataThread.equals(Thread.currentThread());
          System.out.println("current thread is after thisclient = 2 " + Thread.currentThread() + senddataThread);
          senddataThread.start();
          thisclient = "3";
     senddata();
public void creategetdatathread()
System.out.println("In creategetdatathread");
     Thread getdata = new Thread(this);
          getdata.equals(Thread.currentThread());
          System.out.println("current thread is after thisclient = 1 " + Thread.currentThread() + senddataThread);
          thisclient = "4";
          getdata.start();
public void run()
          if(getdata.equals(Thread.currentThread()) )
               System.out.println("running getdata thread");
               getdatamethod();
          if(senddataThread.equals(Thread.currentThread()) )
               System.out.println("running senddataThread thread");
               senddatamethod();
public void senddatamethod() {
while(true) {
       try{
       String line = in2.readLine();
          if (line != null) {
          out2.println(line);
       } catch (IOException e){
      System.out.println("Read failed");
             System.exit(1);
          try { Thread.sleep(2000); }
               catch(InterruptedException e) {}
public void getdatamethod() {
while(true) {
       try{
       String line = in2.readLine();
          if (line != null)
          messlistArea.append("Message:" + line + "\n");
       } catch (IOException e){
      System.out.println("Read failed");
             System.exit(1);
          try { Thread.sleep(2000); }
               catch(InterruptedException e) {}
public void senddata() {
     //Send data over socket
     System.out.println("in send data method");
          String text = messageArea.getText();
          out2.println(text);
       messageArea.setText(new String(""));
//Receive text from server
       try{
       String line = in2.readLine();
          if (thisclient==("4"))
          messlistArea.append("Message:" + line + "\n");
       } catch (IOException e){
      System.out.println("Read failed");
             System.exit(1);
}QUESTION: how do i prevent this error, and therefore enable those threads in that run method to run? thanks.

Well I don't really want to get into the design of your solution but there are a lot of errors in the code you've posted. I presume the code you posted isn't the code you're running as there are declarations missing and it won't compile. But the fundamental answer to your question is that to avoid the error you initially described you need to make sure your reading and writing threads are fully initialised before your frame thread starts running.

Similar Messages

  • Help please, getting error on backup of PSE 12

    I have researched far and wide. " Error Encountered writing file(s)B:\Users\Peter\pse12\My Catalog 1 1\catalog.pse12db"
    This was happening also with PSE 11, so I purchased PSE12, same error.  This is a clean install, on a month old PC, Win 8.1, i5 3.4Ghz 8GB MSI Mobo z87g45.
    Back up progress bar box opens, but remains a white space until the error message comes up around a minute later.
    I have tried everything on Elements Help "Troubleshooting catalog backup, upgrade..."  Getting frustrated.  Help Please.

    LifeafterGE
    You have posted in the wrong forum if your program is Photoshop Elements (any version). You have posted in the Premiere Elements Forum whose focus is video editing. But, it does come with Elements Organizer which does carry with it the considerations of backing up the Elements Organizer catelog.
    Nonetheless, the Photoshop Elements users are great resources on this topic.
    So, either repost your question in the Adobe Photoshop Elements Forum or wait for a moderator to see your thread here and then move it from here to there.
    http://forums.adobe.com/community/photoshop_elements
    I suspect that you will get a lot of replies in the Adobe Photoshop Elements Forum. If not, I will put on my Photoshop Elements hat and look into your issue after we exchange information on how and what of your backup. Curious...in Elements Organizer 12, are you trying to backup a catelog which is an Elements Organizer 11 catelog converted in Elements Organizer 12?
    I will be watching for your progress there.
    Thanks.
    ATR

  • Exception errors with GUI

    Hello, I've been working on some Java as part of an engineering project, however my skills with Java aren't great, and my skills with GUI and Networking (which this involves) were only as a user before starting this. A problem that I haven't been able to get around is an exception error when using the actionPerformed method from java.awt.* .
    My goal is to be able to, when a button is pushed, send a UDP packet with the command of the button to another PC. My understanding from tutorials is that actionPerformed is the method to use for when buttons are pushed, however creating or using a DatagramSocket inside this method causes an exception error (java.net.SocketException). Normally I would just tell it to throw exceptions, but when trying it says it cannot overwrite the method. I thought I got around this by placing the socket within another method and calling that instead, but that just simply caused a different exception (java.lang.Exception).
    Any suggestions on how to make this work, or am I using the wrong method for this sort of thing?
    Some code snippets:
    Version 1
    //when the buttons are pushed, this does the actions required.
    public void actionPerformed(ActionEvent evt){     
    DatagramSocket socket = new DatagramSocket(11111); //Error here
    Object source = evt.getSource();
    Version 2
    //when the buttons are pushed, this does the actions required.
    public void actionPerformed(ActionEvent evt){
    Object source = evt.getSource();
    byte[] comm;
    if (source == Identify) {
         command = "identify";
         comm = command.getBytes();
         this.sendIt(command); //Errors here
         version = this.getIt(); //and here
    Version 3
    //when the buttons are pushed, this does the actions required.
    public void actionPerformed(ActionEvent evt)throws Exception { //Error Here
    Object source = evt.getSource();
    Thanks for any help.

    you can use the try-catch clause ...
    like this:
    public void actionPerformed(ActionEvent e){
        try{
             if(e.getSource() == myButton)
                  // your code here...
           catch(Exception err){
                   err.printStackTrace(); // will print the error... read the first line error msg
    }

  • Help please! Error getting License. License Server Communication Problem: E_ADEPT_NO_TOKEN.

    Help please! I paid for and downloaded 2 books from eBooks library and it then goes to my download folder (on a Windows PC). When I double click on the downloaded book to open, digital editions comes up and then I get the following message: Error getting License. License Server Communication Problem: E_ADEPT_NO_TOKEN. My computer is authorised and I have tried everything I can think of but can't get the books to download into adobe digital editions. Can anybody help??? Thanks

    I should have mentioned also that the first book downloaded fine. It's just the second one that I'm having the problems with.

  • Help, please, understanding error messages (copied)

    I've posted this originally on the Leopard Forum, but I'm thinking someone here with an intimate knowledge of OSX code might be able to help.
    http://discussions.apple.com/thread.jspa?threadID=2283095&tstart=0
    I realize this is about third party software, but I've googled around and the following errors, which are being repeatedly logged when using Canon Camera softrware, seem to be generated for a number of other basic OSX applications, so maybe someone might have an idea what, in general, would cause them and what they might mean. I haven't been able to find anything very specific for Canon.
    I've called Canon Tech up to second level and they have no idea what these mean or why they are being generated. I've already tried trashing several of the user .plists. Since the program apparently runs OK, it would seem they might just be some harmless bug in the Canon code when running with OSX and can be ignored, but would like to know from someone if that sounds right. NS means name server? I'm getting tons of these. Thanks.
    Dec 30 09:10:19 Macintosh-3 MCU[125]: * -[NSConditionLock unlockWithCondition:]: lock (<NSConditionLock: 0x19ac70> '(null)') unlocked when not locked
    Dec 30 09:10:19 Macintosh-3 MCU[125]: * Break on _NSLockError() to debug.
    MCU is the Canon Application.

    WZZZ wrote:
    Since the program apparently runs OK, it would seem they might just be some harmless bug in the Canon code when running with OSX and can be ignored, but would like to know from someone if that sounds right. NS means name server?
    You are correct, more or less. NS actually stands for "NextStep", the original name for Cocoa.
    These errors are just bugs in Canon's code. There is nothing you can do to fix them.

  • URGENT HELP PLEASE - portal error

    I am getting an error when I tried to preview the IVIEW i created. Please help
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    Could not find portal application .
    Exception id: 03:30_15/02/07_0035_7139250
    See the details for the exception ID in the log file
    Thanks in advance

    Hi Mithun,
    This problem can occur due to following reasons:
    <b>1. You are not authorized to see this iView</b>
    If you are not authorized to view this iView it will show this runtime error. Some iViews may redirect you to login server. Please set appropriate Role to the user on SAP Enterprise Portal.
    <b>2. The SAP Enterprise Portal session is lost</b>
    If your session is lost, please logout of  Portal and Login again. This will re-establish the SAP Enterprise Portal session and will be able to get the iView content.
    Thanks,
    Vinay

  • HELP! Fatal error with Installation

    I keep getting a fatal error with installation of version 7.6. I've uninstalled and installed it several times with the same problem. I have tried installing a older version again and now I'm getting the same error. Help!!

    Hi Jorge,
    I am sorry to hear that.
    Here are a few things that I suggest you try:
    Grant Full Control for SYSTEM, NETWORK SERVICE and Administrator on C:\Windows\ServiceProfiles\networkservice folder.
    If you have Windows Process Activation service installed on the machine, uninstall it.
    Open required RPC ports.
    More information for you:
    Service overview and network port requirements for Windows
    http://support.microsoft.com/kb/832017#method7
    If the issue still persists, please check the event logs to see if there are any related error messages and troubleshoot accordingly.
    Regards,
    Amy

  • Exception Error With Device Reset (0XAC)

    Hi,
    I'm using 2 PXI-4472 cards (MXI-4, Ni-Daq 7.0.0f8, Labview 7.0).
    Before configuring those cards, I reset them by running the Device Reset.vi (Ni Daq).
    It works well, but sometimes, an exception error occured and I don't know why.
    The problem is always when calling the Device Reset.vi (dialog box exception 0XAC).
    Please find attached the capture of the dialog box.
    Anyone know this problem or ideas ????????
    Thanks
    Eddy DUCHENE
    12 F Chemin de Boutary
    69300 CALUIRE ET CUIRE
    [email protected]
    Attachments:
    Erreur.bmp ‏166 KB

    Hello Educhene,
    To answer your request, I need to have more information :
    1 - OS?
    2 - Do you have the same behavior using MAX (Measurement and Automation eXplorer)?
    3 - You use the function "Device Reset.vi" in complete LV application or just alone?
    4 - Have you tried to install the last version of NI-DAQ 7.3?
    You can download it for free on the link below :
    http://digital.ni.com/softlib.nsf/websearch/BEC182021CEB566C86256EEE00696562?opendocument&node=132060_US
    If yes, have you the same behavior using DAQmx?
    Waiting for your answer.
    Sanaa TAZI
    National Instruments France
    Sanaa T.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> http://www.nidays.fr/images/081110_ban_nidays09_468X60.gif

  • Help please re error message on launch of downloadable version of Premiere Elements 13 asking me to insert disk

    I bought a downloadable version yesterday of both Photoshop Elements 13 & Premiere Elements 13 & both seemed to install ok today. However, when I launch Premiere Elements, I get the following error message.= "There is no disk in the drive. Please insert a disk into drive\Device\Harddisk1\DR1"  Obviously don't have a disk to insert as downloadable version, can anybody help please?. Thanks

    Mudanzas
    Please delete or disable the OldFilm.AEX file.
    That is the Adobe solution for the issue in Premiere Elements 13.
    In Windows 7, 8, or 8.1 64 bit, the path to the file is
    Local Disk C
    Program Files
    Adobe
    Adobe Premiere Elements 13
    Plug-ins
    Common
    NewBlue
    and in the NewBlue Folder is the OldFilm.AEX file that you delete or disable by renaming it from OldFilm.AEX to OldFIlm.AEXOLD.
    Please let us know if that works for you.
    Thank you.
    ATR

  • PLEASE HELP! Installation errors with creative suite 5.5 design premium?

    I recently tried to install creative suite 5.5 design premium on to my home computer with windows vista home premium and it was all going fine then right at the end of the installation this message popped up please help??
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 1 fatal error(s), 14 error(s), 4 warning(s)
    WARNING: DW024: The payload: Adobe Photoshop CS5.1 Core  {08EF22BC-43B2-4B4E-BA12-52B18F418F38} requires a UI parent with following specification:
                    Family: Photoshop
                    ProductName: Adobe Photoshop CS5.1 Core_x64
                    This parent relationship is not satisfied, because this payload is not present in this session.
    ERROR: DW025: The payload with AdobeCode:  {857CC5F0-040E-1016-A173-D55ADD80C260} has required dependency on:
                    Family: InDesign
                    ProductName: Adobe InDesign CS5.5 Icon Handler x64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    WARNING: DW025: The payload with AdobeCode:  {857CC5F0-040E-1016-A173-D55ADD80C260} has recommended dependency on:
                    Family: Adobe Web Suite CS5.5
                    ProductName: Adobe Media Encoder CS5.5 X64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this payload from the dependency list.
    WARNING: DW025: The payload with AdobeCode:  {D8CCCF4C-C227-427C-B4BE-736657D2AB7E} has recommended dependency on:
                    Family: Adobe Web Suite CS5.5
                    ProductName: Adobe Media Encoder CS5.5 X64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this payload from the dependency list.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: Adobe Player for Embedding x64 3.1
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: Shared Technology
                    ProductName: Photoshop Camera Raw (64 bit)
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: AdobeCMaps x64 CS5
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: Adobe Linguistics CS5 x64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: AdobePDFL x64 CS5
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: AdobeTypeSupport x64 CS5
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: Adobe WinSoft Linguistics Plugin CS5 x64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    WARNING: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has recommended dependency on:
                    Family: Adobe Web Suite CS5.5
                    ProductName: Adobe Media Encoder CS5.5 X64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this payload from the dependency list.
    ERROR: DW020: Found payload conflicts and errors:
    ERROR: DW020:  - Adobe Dreamweaver CS5.5 depends on Adobe CSXS Extensions CS5.5 to be installed.
    ERROR: DW020:  - Adobe Photoshop CS5.1 Core depends on Adobe CSXS Extensions CS5.5 to be installed.
    ERROR: DW020:  - Adobe Illustrator CS5.1 depends on Adobe CSXS Extensions CS5.5 to be installed.
    ERROR: DW020:  - Adobe InDesign CS5.5 Application Base Files depends on Adobe CSXS Extensions CS5.5 to be installed.
    ERROR: DW020:  - Adobe Flash CS5.5 depends on Adobe CSXS Extensions CS5.5 to be installed.
    FATAL: DW020: Conflicts were found in the selected payloads. Halting installation.

    i tried all the thinks listed and uninstalled then reinstalled creative suite 5.5 design premium and yet again this showed up at the end please help it mean nothing to me help!
    Exit Code: 6
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 17 error(s), 8 warning(s)
    WARNING: DW024: The payload: Adobe Photoshop CS5.1 Core  {08EF22BC-43B2-4B4E-BA12-52B18F418F38} requires a UI parent with following specification:
    Family: Photoshop
    ProductName: Adobe Photoshop CS5.1 Core_x64
    This parent relationship is not satisfied, because this payload is not present in this session.
    ERROR: DW025: The payload with AdobeCode:  {857CC5F0-040E-1016-A173-D55ADD80C260} has required dependency on:
    Family: InDesign
    ProductName: Adobe InDesign CS5.5 Icon Handler x64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    WARNING: DW025: The payload with AdobeCode:  {857CC5F0-040E-1016-A173-D55ADD80C260} has recommended dependency on:
    Family: Adobe Web Suite CS5.5
    ProductName: Adobe Media Encoder CS5.5 X64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this payload from the dependency list.
    WARNING: DW025: The payload with AdobeCode:  {D8CCCF4C-C227-427C-B4BE-736657D2AB7E} has recommended dependency on:
    Family: Adobe Web Suite CS5.5
    ProductName: Adobe Media Encoder CS5.5 X64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this payload from the dependency list.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: Adobe Player for Embedding x64 3.1
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: Shared Technology
    ProductName: Photoshop Camera Raw (64 bit)
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: AdobeCMaps x64 CS5
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: Adobe Linguistics CS5 x64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: AdobePDFL x64 CS5
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: AdobeTypeSupport x64 CS5
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: Adobe WinSoft Linguistics Plugin CS5 x64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    WARNING: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has recommended dependency on:
    Family: Adobe Web Suite CS5.5
    ProductName: Adobe Media Encoder CS5.5 X64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this payload from the dependency list.
    ----------- Payload: {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 2.0.0.0 -----------
    WARNING: DF029: ARKServiceControl::StartService: Service not started/stopped SwitchBoard. Current State: 0 Exit Code: 0 Service Specific Exit Code: 0(Seq 1)
    ----------- Payload: {2EE4F060-CEE6-4002-AA8B-91B791541767} Pixel Bender Toolkit 2.6.0.0 -----------
    WARNING: DF035: CreateAlias:Icon file does not exist at C:\Program Files\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\windows\pb_app.icofile:\\\C:\PIXELB~1\source\winwood\Staging    0X1.9E3C8AP-1022rea\windows\pb_app.ico42178f80493091e8e552c84a2897e9da68fce32_32_f8049309 1e8e552c84a2897e9da68fce for icon C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Adobe Design Premium CS5.5\Adobe Pixel Bender Toolkit 2.6.lnk with target C:\Program Files\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\Pixel Bender Toolkit.exe(Seq 89)
    ----------- Payload: {BD85DFD4-005F-4219-8E27-C922CC4D8A61} Adobe CSXS Extensions CS5.5 2.5.0.0 -----------
    ERROR: DF024: Unable to preserve original file at "C:\Program Files\Common Files\Adobe\CS5.5ServiceManager\lib\CSXS-Installer-Hook.dll" Error 32 The process cannot access the file because it is being used by another process.(Seq 130)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 130)
    ----------- Payload: {4C08199E-0D93-4227-8325-F024E71CA7A1} Adobe SING CS5 3.0.0.0 -----------
    ERROR: DF024: Unable to preserve original file at "C:\Program Files\Common Files\Adobe\SING\Mark II\SING.dll" Error 32 The process cannot access the file because it is being used by another process.(Seq 2)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 2)
    ----------- Payload: {8DADF070-FE60-4899-8EF0-4242E7702F7D} Adobe Fireworks CS5.1 11.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at C:\Users\Isabel\Desktop\Creative Suite 5.5 Design Premium\adobe 5.5 code\Creative Suite 5.5 Design Premium\Adobe CS5_5\payloads\AdobeFireworks11.1.0All\OEM(Seq 1215)
    ----------- Payload: {5BDE0A1B-35BF-4224-A54F-73786EECDFC1} Adobe Fireworks CS5.1_AdobeFireworks11.1.0en_GBLanguagePack 11.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at C:\Users\Isabel\Desktop\Creative Suite 5.5 Design Premium\adobe 5.5 code\Creative Suite 5.5 Design Premium\Adobe CS5_5\payloads\AdobeFireworks11.1.0en_GBLanguagePack\OEM(Seq 74)
    ----------- Payload: {7202D4A7-F7E6-4e7a-B77D-7B1C4E8B5CA6} Adobe Flash Player 10 ActiveX 10.0.0.0 -----------
    ERROR: Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: C:\Users\Terry\AppData\Local\Temp\InstallAX.exe, command: -install activex -msi
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: C:\Users\Terry\AppData\Local\Temp\InstallAX.exe, command: -install activex -msi
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe SING CS5: Install failed
    ERROR: DW050:  - Adobe CSXS Extensions CS5.5: Install failed

  • Help! Synchronization error with Outlook

    recently, I installed the OVI, and I found i can't synchronize the outlook calendars, which i get the error code 8xxxxxx. I remove all Nokia software as one post indicated.
    I removed pc suite,  ovi suite, pc connection, cable software etc. i delete all the data in c:\program files\common files\; c:\documents and settings\<username>\application data\nokia,  c:\documents and settings\<username>\local settings\application data\nokia,
    and I reinstall pc suite 7.1.40. Then i get a big problem that when i try to sync, i get the error that “File access is denied, You do not have the permission required to access the file C:\Documents and Settings\<username>\Local Settings\Application Data\Microsoft\Outlook\Outlook.ost"
    I can't even sync my contact  in outlook now!
    my system is windows xp sp2 , my phone is nokia e71
    sombody pls help me, Thanks!

    i HAVE had major problems with syncing n97 and outlook ever since i downloaded the ovi suite (as recommended update.. I have removed all software and then reinstalled PC suite. Now my phone snycs but my appointments on my calender after syncing are +1 hour from my outlook calender(and my calender on PC suite.)
    I have turned off all timezone automatic programs to ensure the time is the same. 
    Please help me.
     (Outlook 2003, Pc Suite 7.1.40.1 and n97 software version 20.0.019) 
    Im going to apple iphone if I dont get an answer soon

  • HELP PLEASE - WHATS WRONG WITH THIS CODE

    Hi. I get this message coming up when I try to compile the code,
    run:
    java.lang.NullPointerException
    at sumcalculator.SumNumbers.<init>(SumNumbers.java:34)
    at sumcalculator.SumNumbers.main(SumNumbers.java:93)
    Exception in thread "main"
    Java Result: 1
    BUILD SUCCESSFUL (total time: 2 seconds)
    I am not sure whats wrong with the code. Any assistance would be nice. The code is below.
    package sumcalculator;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class SumNumbers extends JFrame implements FocusListener {
    JTextField value1;
    JTextField value2;
    JLabel equals;
    JTextField sum;
    JButton add;
    JButton minus;
    JButton divide;
    JButton multiply;
    JLabel operation;
    public SumNumbers() {
    SumNumbersLayout customLayout = new SumNumbersLayout();
    getContentPane().setFont(new Font("Helvetica", Font.PLAIN, 12));
    getContentPane().setLayout(customLayout);
    value1.addFocusListener(this);
    value2.addFocusListener(this);
    sum.setEditable(true);
    value1 = new JTextField("");
    getContentPane().add(value1);
    value2 = new JTextField("");
    getContentPane().add(value2);
    equals = new JLabel("label_1");
    getContentPane().add(equals);
    sum = new JTextField("");
    getContentPane().add(sum);
    add = new JButton("+");
    getContentPane().add(add);
    minus = new JButton("-");
    getContentPane().add(minus);
    divide = new JButton("/");
    getContentPane().add(divide);
    multiply = new JButton("*");
    getContentPane().add(multiply);
    operation = new JLabel();
    getContentPane().add(operation);
    setSize(getPreferredSize());
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    public void focusGained(FocusEvent event){
    try {
    float total = Float.parseFloat(value1.getText()) +
    Float.parseFloat(value2.getText());
    sum.setText("" + total);
    } catch (NumberFormatException nfe) {
    value1.setText("0");
    value2.setText("0");
    sum.setText("0");
    public void focusLost(FocusEvent event){
    focusGained(event);
    public static void main(String args[]) {
    SumNumbers window = new SumNumbers();
    window.setTitle("SumNumbers");
    window.pack();
    window.show();
    class SumNumbersLayout implements LayoutManager {
    public SumNumbersLayout() {
    public void addLayoutComponent(String name, Component comp) {
    public void removeLayoutComponent(Component comp) {
    public Dimension preferredLayoutSize(Container parent) {
    Dimension dim = new Dimension(0, 0);
    Insets insets = parent.getInsets();
    dim.width = 711 + insets.left + insets.right;
    dim.height = 240 + insets.top + insets.bottom;
    return dim;
    public Dimension minimumLayoutSize(Container parent) {
    Dimension dim = new Dimension(0, 0);
    return dim;
    public void layoutContainer(Container parent) {
    Insets insets = parent.getInsets();
    Component c;
    c = parent.getComponent(0);
    if (c.isVisible()) {c.setBounds(insets.left+24,insets.top+48,128,40);}
    c = parent.getComponent(1);
    if (c.isVisible()) {c.setBounds(insets.left+256,insets.top+48,128,40);}
    c = parent.getComponent(2);
    if (c.isVisible()) {c.setBounds(insets.left+408,insets.top+48,56,40);}
    c = parent.getComponent(3);
    if (c.isVisible()) {c.setBounds(insets.left+488,insets.top+48,152,40);}
    c = parent.getComponent(4);
    if (c.isVisible()) {c.setBounds(insets.left+128,insets.top+136,72,40);}
    c = parent.getComponent(5);
    if (c.isVisible()) {c.setBounds(insets.left+248,insets.top+136,72,40);}
    c = parent.getComponent(6);
    if (c.isVisible()) {c.setBounds(insets.left+368,insets.top+136,72,40);}
    c = parent.getComponent(7);
    if (c.isVisible()) {c.setBounds(insets.left+488,insets.top+136,72,40);}
    c = parent.getComponent(8);
    if (c.isVisible()) {c.setBounds(insets.left+176,insets.top+48,56,40);}
    }

    Thank you. How do i amend this? I have defined value1though.Yes, you did - but after the call to addFocusListener(...). It needs to be before it.
    BTW, you did the same thing with "value2.addFocusListener(this)" and "sum.setEditable(true)" on the next two lines. You're attempting to call a method on an object that doesn't exist yet (i.e., you haven't called new yet).

  • Help please, download error

    I've had a creative cloud membership for a months now, on my mac and pc. All working fine.
    Then i decided that i didn't need cs4 collection on my mac anymore, so unistalled it using the correct unistall software. Once this was completed Photoshop cs6 said it had lost files and couldn't work anymore. Then indesign crashed and wouldn't start.
    I thought this was very weird, so decided to unistall all of cs6 and install it again. But when i came to install sc6, it let my sign in and download the application manager. But then i try to sign into the application manager and it just says Download error. I've been through and tested all the downloading issues with adobe links and they are all fine. I can still log in through my browser with my ID. The software still works fine on the pc. I have tried using download assistant to install software, but when it gets to the sign in or trail section. I try to sign in and it comes up with an error and can't find my subscription.
    This is very annoying, please does anyone know a solution?
    p.s i am running all the lastest software on a macbook pro.

    Go to below mentioned folders Location
    /Library/Application Support/Adobe/OOBE      rename the OOBE folder to OOBE_old
    ~/Library/Application Support/Adobe/OOBE      rename the OOBE folder to OOBE_old
    after renaming the folder try to reinstall Adobe Application manager it should work now.
    you can download the Adobe Application manager from : http://www.adobe.com/support/downloads/detail.jsp?ftpID=4774

  • Help please! error code:  a valid dvd drive could not be found  [-70012]

    Hi,
    Although I am able to play cds and bootable discs, I am unable to play dvds on my LaCie d2 DVD-RW Firewire Drive. I get an error code:
    a valid dvd drive could not be found -70012
    Is anyone able to help? I did see one other post listed with this error code, but that person's results seem to be no longer valid, with outdated links for patches.
    Thanks,
    George

    It's possible that you caused some damage by not "properly" doing the firmware update, but drives with bad firmware typically just don't work, period. Unfortunately, LaCie does not keep the older firmware posted on their site so that you could 'back-flash' the drive to an earlier firmware revision and then re-apply the updated firmware.
    If you have access to a PC that you could put the drive into (as in, removed from the LaCie external enclosure) and know the drive type (the NEC ND-35xx is the most common) you could find older firmware and flashing utilities for the PC, flash the drive to one of those and then drop it back into the LaCie enclosure and flash it back to the current LaCie firmware. No guarantees this will work, though, and you may end up with a totally dead drive.
    -Douggo

  • Help please! error writing to file cannot download itunes...cant fix!

    i really dont know what to do... i just got my computer a couple of months and something must have happened when i downloaded it the first time. i few times after using is i was having problems it said something about a corrupt file. So logically i thought to uninstall and then reinstal. but since then i have been dealing with this problem for a couple of weeks.
    installation will go well for a while (a couple of minutes) then i will this error.
    Error writing to file: C:\programfiles\commonfiles\apple\mobiledevicesupport\bin\AOSutils.dll
    then its says please verify that you have access to that directory.
    i have tried so many things and really dont know what to do. this cannot be manually deleted either.
    any advice would be appreciated!

    "Error writing to file: C:\Program Files\Common Files\Apple\Mobile Device Support\AppleMobileDeviceHelper.exe. Verify that you have access to that directory."
    Most commonly, it's caused by disk or file damage, J.
    Let's first try running a chkdsk over your C drive. There's Windows 7 instructions in the following document. Select both "automatically fix file system errors" and "scan for and attempt recovery of bad sectors" or use chkdsk /r (depending on which way you choose to go about things). You should be prompted to schedule the scan to run on restart. That sort of scan of the C drive should take a long time ... if it quits after a few minutes or seconds, something's interfering with the scan:
    [How to use CHKDSK (Check Disk)|http://www.w7forums.com/use-chkdsk-check-disk-t448.html]
    Does the chkdsk find/repair any damage? If so, try another iTunes install. Does it go through properly this time?

Maybe you are looking for