Why does "Open HTML Report in Broswer" crash on some machines?

I've been using the "Open HTML Report in Browser" subvi to generate simple printable reports from a control program, but the program hangs on the control system PCs. I am running Win2000 with IE on my programming box, but on the XP machines with IE and Mozilla running the LabView 7 runtimes the program will hang in the Open HTML Report subvi every time. Is there any known cause for this? Are there any alternatives?

rsd212 wrote:
I am running Win2000 with IE on my programming box, but on the XP machines with IE and Mozilla running the LabView 7 runtimes the program will hang in the Open HTML Report subvi every time. Is there any known cause for this? Are there any alternatives?
Hello rsd212,
The behavior we you are seeing is probably due to the security policies set up on your windows XP machine. Have you installed Service Pack 2 on the machine?
One way to check if is this is security policy issue is to force the report VI to open the browser with the System Exec VI instead of using DDE. You can do this by opening the Open URL in Default Browser Core subVI inside Open HTML Report in Browser -> Open URL in Default Browser and changing the code to always run the System Exec version and skip the DDE version.
If this works you can either keep the VI as is or revert to the original version and troubleshoot what security policy is preventing DDE from working on your computer.
Please let me know if you have any questions.
Regards,
Matt
Keep up to date on the latest PXI news at twitter.com/pxi

Similar Messages

  • Why does the ALT key disable mouse clicks on some machines?

    I have a drawing program, the main Window of which extends JFrame and contains a Canvas, which extends JPanel. The Canvas has a MouseAdapter, KeyAdapter and JMenuBar. It also has a Tools palette, which extends JDialog and has Buttons, which extend JToggleButtons.
    One button is called Zoom. After pressing this button, you can Zoom In and Zoom Out by clicking the mouse on a point of the illustration. It differs from pressing Ctrl Plus and Ctrl Minus, because the point where you click is kept in place, and only all the other points move.
    Zooming In is done by clicking the mouse and Zooming Out is done by pressing the ALT key and clicking the mouse. The Zooming In works on all computers, but for some strange reason, the Zooming Out doesn't work on all computers. The computer where it doesn't work, after pressing the ALT key and clicking the mouse, it does not recognize the mouse click, and never reaches the mousePressed method in my debugger.
    The computer where it doesn't work has the Windows XP Professional operating system. But some computers where it does work have the same operating system. The problem also does not depend on the keyboard or mouse, because I tried a different keyboard and mouse, and it still didn't work.
    I wonder if the reason why it doesn't work on some computers has to do with that the ALT key is also used differently (which might depend on the operating system)? Pressing the ALT key and clicking the mouse Zooms In a picture by keeping the point in place and only moving all the other points
    I do not want to use a different key, since one release of my program is a plugin for Photoshop, and Photoshop also uses the ALT key to achieve the same thing.
    Thanks for checking on this! I will appreciate your help!

    Ok, I did apply KeyBindings. Since the AnanyaCurves class extends JFrame, I couldn't apply KeyBindings there, but I could apply KeyBindings to my CurveCanvas class, which extends JPanel, which extends JComponent. However I still have my first two problems:
    1) After pressing the ALT key, clicking the mouse doesn't get recognized. You never reach the mousePressed method, where it's supposed to exit the program.
    2) After opening a menu, such as the Nothing menu by pressing ALT and N, pressing a key which is not an accelerator key of a menu doesn't get recognized, such as pressing the E key. You never reach the actionPerformed method of the exitF action, where it's supposed to exit the program.
    Here is my SSCCE with the KeyBindings:
    import java.awt.*;
    import java.awt.event.*;
    import java.lang.*;
    import java.lang.reflect.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.plaf.*;
    public class AnanyaCurves extends JFrame
      CurveCanvas canvas;
      JMenuBar menuBar;
      Command quitCmd;
      JMenu fileMenu, nothingMenu;
      JMenuItem quitItem, nothingItem;
      boolean alt;
      public AnanyaCurves(Dimension windowSize)
        Font boldFont = new Font("Verdana", Font.BOLD, 12);
        Font plainFont = new Font("Verdana", Font.PLAIN, 12);
        Object top;
        Basics.ananyaCurves = this;
        alt = false;
        try
          UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
          SwingUtilities.updateComponentTreeUI(this);
        catch(Exception e)
        UIManager.put("MenuItem.acceleratorFont", new FontUIResource(UIManager.getFont("MenuItem.acceleratorFont").decode("Verdana-PLAIN-12")));
        Basics.ananyaCurves = this;
        enableEvents(AWTEvent.WINDOW_EVENT_MASK);
        setTitle("Ananya Curves");
        Dimension docSize = new Dimension(274, 121);
        canvas = new CurveCanvas(docSize);   
        menuBar = new JMenuBar();
        setJMenuBar(menuBar);
        fileMenu = new JMenu("File");
        fileMenu.setMnemonic('F');
        fileMenu.setFont(boldFont);
        quitCmd = new Command("quit", "ctrl Q");
        quitCmd.putValue(Action.NAME, "Quit");
        quitItem = new JMenuItem(quitCmd);
        quitItem.setFont(plainFont);
        fileMenu.add(quitItem);
        menuBar.add(fileMenu);
        //fileMenu.setVisible(false);
        /*JMenuBar hiddenMenuBar = new JMenuBar();
        hiddenMenuBar.add(fileMenu);
        getContentPane().add(hiddenMenuBar, BorderLayout.CENTER);
        getContentPane().add(new JPanel(), BorderLayout.CENTER);*/
        nothingMenu = new JMenu("Nothing");
        nothingMenu.setMnemonic('N');
        nothingMenu.setFont(boldFont);
        nothingItem = new JMenuItem("NoAction");
        nothingItem.setFont(plainFont);
        nothingMenu.add(nothingItem);
        menuBar.add(nothingMenu);
        addMouseListener(new MouseAdaption());
        addKeyListener(new KeyAdaption());
      public static void main(String[] args)
        Dimension windowSize = new Dimension(300, 200);
        AnanyaCurves ananyaCurves = new AnanyaCurves(windowSize);
        ananyaCurves.pack();
        ananyaCurves.setBounds(0, 0, windowSize.width, windowSize.height);
        ananyaCurves.setVisible(true);
        ananyaCurves.requestFocus();
      public void exit()
        this.dispose();
        System.exit(0);
      class MouseAdaption extends MouseAdapter
        public void mousePressed(MouseEvent e)
          if (AnanyaCurves.this.alt == true)
            AnanyaCurves.this.exit();
      class KeyAdaption extends KeyAdapter
        public void keyPressed(KeyEvent event)
          /*int keyCode = event.getKeyCode();
          if (keyCode == KeyEvent.VK_ALT)
            AnanyaCurves.this.alt = true;
          else if (keyCode == KeyEvent.VK_E)
            AnanyaCurves.this.exit();
        public void keyReleased(KeyEvent event)
          AnanyaCurves.this.alt = false;
    class Basics extends java.lang.Object
      public static AnanyaCurves ananyaCurves;
      public Basics()
    class Command extends AbstractAction
      String name; // the command name (not the menu item string)
      String accelerator;
      public Command(String name, String accelerator)
        super();
        this.name = name;
        if (accelerator != null && !accelerator.equals(""))
          this.accelerator = accelerator;
          KeyStroke k = KeyStroke.getKeyStroke(accelerator);
          putValue(Action.ACCELERATOR_KEY, k);
      public void quit()
        Basics.ananyaCurves.dispose();
        System.exit(0);
      public void actionPerformed(ActionEvent actionEvent)
        try
          Method f = getClass().getMethod(this.name, (Class[])null);
          f.invoke(this, (Object[])null);
        catch (NoSuchMethodException e)
        catch (InvocationTargetException e)
        catch (IllegalAccessException e)
    class CurveCanvas extends JPanel
      public CurveCanvas(Dimension docSize)
        super();
        Action altF = new AbstractAction()
          public void actionPerformed(ActionEvent e)
            Basics.ananyaCurves.alt = true;
        Action exitF = new AbstractAction()
          public void actionPerformed(ActionEvent e)
            Basics.ananyaCurves.exit();
        this.getInputMap(WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke("ALT"), "alt");
        this.getActionMap().put("alt", altF);
        this.getInputMap(WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke("E"), "exit");
        this.getActionMap().put("exit", exitF);
    In the getInputMap method I was trying to use the condition WHEN_IN_FOCUSED_WINDOW, hoping that the bound key would be recognized, but it didn't work. And, by the way, I still used the KeyAdapter so that the alt attribute of AnanyaCurves can be set to false when the ALT key is released.
    I will appreciate your help very much! Thanks for your time!

  • Why does my html code becomes unreadable overview on the search engine adobe edge code

    Hello
    Why does my html code becomes unreadable overview on the search engine? Everything alligner left, the images no longer appear and the page background template either. I am new in the html code, but I have nothing to change this one and the other one day it became like that.
    Can you please help me??

    Il s'agit d'un modèle
    Le code est le suivant:
    <html xmlns="http://www.w3.org/1999/xhtml"><head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link href="http://xdioms.com/ShippedListingTemplates/mobileworld/1/layout.css" type="text/css" rel="stylesheet">
    <link rel="stylesheet" type="text/css" href="http://xdioms.com/ShippedListingTemplates/mobileworld/1/tabs.css">
    <link href="http://fonts.googleapis.com/css?family=Open+Sans+Condensed:700,300,300italic" rel="stylesheet" type="text/css">
      <!--[if lt IE 9]>
      <style>
      .content{
      height: auto;
      margin: 0;
      .content div {
      position: relative;
      </style>
      <![endif]-->
    <title>Listing Template</title>
    </head>
    <body>
    <div id="wrap">
    <div style="height: 220px;" id="header">
    <img style="height: 172px;" src="http://drive.google.com/uc?id=0B4DAWy8zc1mhUW56ckY4OFV5NWM>
    <div class="outwrapsocial">
    <a href="#" class="social" id="twitter"></a>
    <a href="#" class="social" id="fbk"></a>
    <form name="search" method="get" action="http://stores.ebay.com.au/#/_i.html?_nkw=lakljsdfsdf&submit.x=36&submit.y=18" target="_parent">
    <input type="text" autocomplete="off" name="_nkw" id="searchId" size="17" maxlength="300">
    <input type="submit" name="submit" value="Search" href="#">
    </form>
    </div>
    </div>
    <div id="innerwrap">
    <div id="cssmenu">
    <ul>
    <li><a href="#"><span>Livraison</span></a></li>
    <li class="last"><a href="#"><span>Paiement</span></a></li>
    <li class="last"><a href="http://feedback.ebay.fr/ws/eBayISAPI.dll?ViewFeedback2&userid=k_aprice&&iid=330507957027&s spagename=VIP:feedback&ftab=FeedbackAsSeller"><span>Nos évaluations</span></a></li>
    <li class="last"><a href="#"><span>Retours</span></a></li>
    <li class="last"><a href="#"><span>Contactez-nous</span></a></li>
    </ul>
    </div>
    <!--Menu top-->
    <div class="slidercontainer">
    <div align="center" style="%%pictures-0-big%%" class="artikelbilder">
    <a href="#thumb" class="thumbnail"><img width="100px" height="75px" border="0" src="%%pictures-0-small%%">
    <span><img width="540px" height="611px" src="%%pictures-0-big%%"></span></a>
    <a href="#thumb" class="thumbnail"><img width="100px" height="75px" border="0" src="%%pictures-1-small%%">
    <span><img width="540px" height="611px" src="%%pictures-1-big%%"></span></a>
    <a href="#thumb" class="thumbnail"><img width="100px" height="75px" border="0" src="%%pictures-2-small%%">
    <span><img width="540px" height="611px" src="%%pictures-2-big%%"></span></a>
    <a href="#thumb" class="thumbnail"><img width="100px" height="75px" border="0" src="%%pictures-3-small%%">
    <span><img width="540px" height="611px" src="%%pictures-3-big%%"></span></a>
    <a href="#thumb" class="thumbnail"><img width="100px" height="75px" border="0" src="%%pictures-4-small%%">
    <span><img width="540px" height="611px" src="%%pictures-5-big%%"></span></a></div>
    </div>
    <!---End Slider-->
    <section class="tabs">
    <div class="productdescription">
    <h6>Description</h6>
    <p>%%description%%</p>
    </div>
                 <input type="radio" id="tab-1" name="radio-set" class="tab-selector-1" checked="checked">
             <label for="tab-1" class="tab-label-1">Livraisons</label>
                 <input type="radio" id="tab-2" name="radio-set" class="tab-selector-2">
             <label for="tab-2" class="tab-label-2">Retours</label>
                 <input type="radio" id="tab-3" name="radio-set" class="tab-selector-3">
             <label for="tab-3" class="tab-label-3">CGV</label>
                 <input type="radio" id="tab-4" name="radio-set" class="tab-selector-4">
             <label for="tab-4" class="tab-label-4">Contactez nous</label>
                   <div class="clear-shadow"></div>
             <div class="content" style="height: 650px;">
             <div class="content-1">
      <h2>Livraison</h2>
                            <p style="border-right-width: 0px; padding-left: 0px; border-left-width: 0px; padding-bottom: 20px;"> Votre commande est expediée le jour même* pour toute commande passée avant 16h du lundi au vendredi etle samedi avant 10h. Toute commande passée le samedi après 10h, le dimanche et les jours fériés sera expédiée* le lundi ou premier jour ouvré suivant. </p>
                            <img src="file:///C:/Users/K%27aprice/Pictures/LOGO/lookmobile/lettre%20prioritaire.png" style="border: 0px solid; width: 623px; height: 100px;">
    <a style="width: 623px;" href="http://www.part.csuivi.courrier.laposte.fr/suivi?chatTpl=laposte-boutique-part&chatSid=823"><img alt="suivi lettre max" src="file:///C:/Users/K%27aprice/Pictures/LOGO/lookmobile/lettre%20max.png" style="border: 0px solid; width: 623px; height: 100px; padding-top: 10px;"></a>
    <a style="width: 623px; padding-top: 10px;" href="http://www.mondialrelay.fr/suivi-de-colis/"><img alt="suivi mondial relay" src="file:///C:/Users/K%27aprice/Pictures/LOGO/lookmobile/mondial%20relay.png" style="border: 0px solid; width: 623px; height: 100px; padding-top: 10px;"></a>
    <a style="width: 623px; padding-top: 10px;" href="http://www.colissimo.fr/portail_colissimo/suivre.do?language=fr_FR"><img alt="colissimo" src="file:///C:/Users/K'aprice/Pictures/LOGO/lookmobile/colissimo1.png" style="border: 0px solid; width: 623px; height: 100px; padding-top: 10px;"></a>
                        </div>
             <div class="content-2">
      <h2>See Shipping Process</h2>
                            <p>Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh.Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh.</p>
         </div>
             <div class="content-3">
      <h2><span class="currency_converter_text">100</span><span class="currency_converter_text">% Success</span></h2>
                            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</p>
      <p>Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh.Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus.</p>
         </div>
         <div class="content-4">
      <h3>Who we are</h3>
      <p>Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh.Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus.</p>
         </div>
             </div>
      </section>
    <div class="sidebar">
    <div class="categoryhead">Categories</div>
    <div class="listingcat">
    <ul>
    <a href="http://stores.ebay.fr/K-apriCee/Housses-et-coques-/_i.html?_fsub=5676135014&_sid=685878474 &_trksid=p4634.c0.m322"><li>Etuis &amp; coques</li></a>
    <a href="#"><li>Film protection écran</li></a>
    <a href="#"><li>Ecrans replacement</li></a>
    <a href="#"><li>Pieces detaches &amp; outils</li></a>
    <a href="#"><li>Batteries</li></a>
    <a href="#"><li>Ecouteurs</li></a>
    <a href="#"><li>Autres accessoires</li></a>
    </ul>
    </div>
    <div class="categoryhead">Boutique</div>
    <div class="listingcat">
    <ul>
    <a href="http://www.stores.ebay.fr/id=685878474"><li>Accueil</li></a>
    <a href="#"><li>Livraison</li></a>
    <a href="#"><li>Paiments</li></a>
    <a href="#"><li>Retours</li></a>
    <a href="#"><li>Nous contacter</li></a>
    </ul>
    </div>
    <div class="categoryhead">Newsletter</div>
    <div class="listingcat">
    <p>Ajoutez notre boutique a vos favoris,pour être informer de nos promotions et nouveautés.</p>
    <a href="http://my.ebay.fr/ws/eBayISAPI.dll?AcceptSavedSeller&amp;sellerid=k_aprice&amp;ssPageName= STRK:MEFS:ADDSTR&amp;rt=nc" class="button">S'inscrire</a>
    </div>
    <div class="categoryhead">Paiements</div>
    <div class="listingcat">
      <div align="center"><img src="http://xdioms.com/ShippedListingTemplates/mobileworld/1/img/cards.png">  </div>
    </div>
    <div class="categoryhead">Livraisons</div>
    <div class="listingcat">
      <div align="center"><img src="http://xdioms.com/ShippedListingTemplates/mobileworld/1/img/widget-dhl.png">  </div>
    </div>
    <div class="categoryhead">Services</div>
    <div class="listingcat">
      <div align="center"><img style="height: 180px; width: 200px; padding-top: 20px;" src="http://www.ds-imprimerie.fr/media/images_dillustration/satisfait_ou_rembourse.png">  </div>
    </div>
    </div>
    <!--inerwrap end-->
    </div>
    <!--outer wrap-->
    <div id="footer">
    </div>
    </div>
    <div id="cacaowebfirefoxextension"></div><script type="text/javascript">var Cacaoweb = { callbackIsRunning: function () { var cacaodiv = document.createElement("div"); cacaodiv.id = "cacaorunning"; document.body.appendChild(cacaodiv); } };</script><script type="text/javascript" src="http://127.0.0.1:4001/isrunning" id="isrunning"></script><div id="cacaorunning"></div></body></html>

  • Why does iTunes Match cause iTunes to crash ?

    Why does iTunes Match cause iTunes to crash ?

    My problem is similar.  It began right after I allowed an Adobe update to run.  (Adobe Flash Player version 10.0.45.2 is recorded in my Registry.) Now every single website I try to open triggers a window (see below) and repeats many times.
    It makes no difference whether I "Allow" or not.  I think it runs this window for every flash object on that website.  It is occurring while I enter this post!
    It makes using the Internet MOST challenging.  Surely this is causing major problems for everyone.
    I have IE8 on Windows Vista.
    Here's the text from the message:
    "A website wants to open web content using this program on your computer.
    This program will open outside of Protected Mode. Internet Explorer's Protected Mode helps protect your computer. If you do not trust this website, do not open this program.
    Name:  Adobe Flash Player
    Publisher: Adobe Systems Incorporated
    (Checkbox) Do not show me the warning for this program again.
    buttons:  Allow         Do Not Allow"
    Should I appeal to Microsoft or Adobe for a solution?  Is is possible to install the previous version?
    Thanks for any wisdom.

  • How to search a string in all opened html report ?

    Hey people .. Sorry to bother U again.. I have a problem again.. and thanks to solve my previous problems...
    I want to make an application in which I want to search a result string
    in all opened Html reports... If I don't want to go to the all
    desination and search one by one.. Is there any method to search the
    result in all opened reports at that time..
    I am very confulsed .. I have no Idea how I am gonna solve it... If anybody can help.. I would really appreciate that.. Thanks..

    Thanks Justin I have managed that problem..
    I am stuck at another one.. If you can help.. I have also posted addressing you in another relavent Thread..
    I have a spreadsheet data which has 286*516 Pixels data. Data is 16bit
    (from which only 12bit is usefull). Each data is a Level of a Pixel. I
    want to Display Grayscale Image.
    I have used 3D Graph to display it and projection XY selected . I am
    getting My image as grayscale Image but somewhat slow display if I
    continously run it.
    Second Method I tried is Directly "some 2D Graph" ( Sorry I forgot the
    Name.. I will get it next time) which directly display that 16 bit
    spreadsheet file. But it has only 255 levels so it didn't utilized my
    data and resolution is poor.
    My doubts are..
    1. Is 3D graph method I am using is Actually displaying my 16 bit image.
    2. In 3D graph method : Because of that 12 bit format of my data and I
    had to convert it in 16 bit I am loosing any levels or       
        Resolution ?
    3. Is there any way of increasing 255 level to 16bit level 2D Graph method.
    4. Is there any method that can display my 16bit information as a image utilizing all my levels.
    Please Do me a favor .. thank you

  • Hi, i was wounding if anyone would help me get information on the company regarding the acquisition of, beats by dre, could someone please help me out as i am doing a college report on this and need some good sources of information

    hi, i was wounding if anyone would help me get information on the company regarding the acquisition of, beats by dre, could someone please help me out as i am doing a college report on this and need some good sources of information

    Try a search with Google.
    Why should we do your homework for you?

  • Why does my Apple TV have to frequently reactivate some channels

    Why does my Apple TV have to frequently reactivate some channels, such as HBO Go and PBS and several others that I know were already activated.

    Maybe a software update reset something, maybe the broadcasters require this at intervals, could someone have logged/signed out?  Sorry don't get those channels in UK, but once Netflix made me log in again, others seem ok.
    You could send some feedback if this happens very often:
    Apple - Apple TV - Feedback

  • Why does my Ipod not synchronize all playlists? Some get synchronized, others don't. Yet there is enough space available.

    Why does my Ipod not synchronize all playlists? Some get synchronized, others don't. Yet there is enough available space.

    The S.I. prefix Giga is used to mean both 1000x1000x1000 and 1024x1024x1024. Computer software typically uses the second version, but using the first number makes the same number of bytes appear bigger when expressed as Gb, so is favoured by hard drive manufactures.
    80Gb10 = 74.3Gb2
    It's a bit like specifying a quantity in gallons without saying whether they are US or Imperial gallons - everybody gets the same volume but one number will be bigger than the other. I could offer you a tank with 10 Imperial gallons of fuel in it - but if I tell you it's 12 US gallons it sounds like you're getting more for your money.
    Once the total size of your library exceeds the capacity of your device all you need to do is create some size limited playlists to determine what goes on the device. Don't sync all movies, sync one or two that you plan to watch soon. Likewise with TV Shows. Limit podcasts to unplayed episodes and finally create a music subset. What worked for me for some time was a smart playlist called Steve's Tunes defined as Playlist is Music and Playlist is not Exclude where Exclude was regular playlist that I would manually add to until Steve's Tunes was small enough to fit. These days I run an iPhone and have a number of smart playlists with ? Gb of most played, ? Gb of highly rated, ? Gb of recently added, ? Gb of essentials, ? Gb of unplayed etc. Each time I sync I get slightly updated selection without having to put any extra effort in.
    tt2

  • Can no longer open up report file - Crystal Crashes

    I have a crystal report that I can not longer get to open. I'm on windows 7 32-bit, and I've attempted to open it in both 2008 and 2011.
    The report is comprised mainly of sub-reports. Each sub-report in its own report header section. I'm pretty sure the issue is related to a fairly large sub-report that I added that contains pretty sizable images. The image sub-report is around 24MB and the entire report is around 25MB.
    Everything was fine up until I added the image sub-report. Now I cannot even get the crystal file to open.
    2008 version: 12.4.0.966
    2011 (trial) version: 14.0.2.364RTM
    I was finally able to open the report after trying many times and so I deleted the image sub-report and tried to save it again but it crashed...
    [Report File|http://www.mediafire.com/?yc0vvr2rvd880ef]
    Edited by: philyq on Dec 28, 2011 8:03 PM

    Adding to DEP did not resolve the issue... I can still manage to open it once in a while... I don't know how I exactly get it to open though... I've been switching the default program from 2008 and 2011 and tried opening it multiple times, or the second it crashes I attempt again, and sometimes doing any of these gets it to open but I can never re-save it again. Something in the report is causing it to crash. I think it may now be the "Consents" sub-report.

  • Why does my cs4 photoshop keep unexpectantly crashing?

    I'm having real problems with my Cs4 Photoshop (version 11.0.2).
    Everytime I attempt to open a file the program unexpectedly quits.
    This also happens often when I try to save files and also sometimes happens randomly while using photoshop, please help!
    Here is the looong crash report....
    Process:         Adobe Photoshop CS4 [980]
    Path:            /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    Identifier:      com.adobe.Photoshop
    Version:         11.0.2 (11.0.2x20100519 [20100519.r.592 2010/05/19:02:00:00 cutoff; r branch]) (11.0.2)
    Code Type:       X86 (Native)
    Parent Process:  launchd [544]
    Date/Time:       2014-06-03 14:55:04.187 +0100
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          146167 sec
    Crashes Since Last Report:           13
    Per-App Interval Since Last Report:  435 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      EC137763-8B59-41BF-8525-A5BC6FAADFA8
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  12
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x9506182e pread$UNIX2003 + 10
    1   ...ple.CoreServices.CarbonCore          0x9080eb30 BasicRead(FileRecord*, short, long long, unsigned long long*, void*, unsigned long long*) + 952
    2   ...ple.CoreServices.CarbonCore          0x9080e73f PBReadForkSync + 117
    3   com.adobe.Photoshop                     0x000bd6d2 0x1000 + 771794
    4   com.adobe.Photoshop                     0x000be1a5 0x1000 + 774565
    5   com.adobe.Photoshop                     0x00749510 0x1000 + 7636240
    6   com.adobe.Photoshop                     0x009b0a5c 0x1000 + 10156636
    7   com.adobe.Photoshop                     0x004d2025 0x1000 + 5050405
    8   com.adobe.Photoshop                     0x004d25fd 0x1000 + 5051901
    9   com.adobe.Photoshop                     0x004d291e 0x1000 + 5052702
    10  com.adobe.Photoshop                     0x004d29ec 0x1000 + 5052908
    11  com.adobe.Photoshop                     0x00721c07 0x1000 + 7474183
    12  com.adobe.Photoshop                     0x007246db 0x1000 + 7485147
    13  com.adobe.Photoshop                     0x00722c20 0x1000 + 7478304
    14  com.adobe.Photoshop                     0x004e396d 0x1000 + 5122413
    15  com.adobe.Photoshop                     0x0049ac22 0x1000 + 4824098
    16  com.adobe.Photoshop                     0x00081adc 0x1000 + 527068
    17  com.adobe.Photoshop                     0x00081f18 0x1000 + 528152
    18  com.adobe.Photoshop                     0x00acb6e6 0x1000 + 11314918
    19  com.adobe.Photoshop                     0x00081795 0x1000 + 526229
    20  com.adobe.Photoshop                     0x000681c1 0x1000 + 422337
    21  com.adobe.Photoshop                     0x00068be8 0x1000 + 424936
    22  com.adobe.Photoshop                     0x0006b8ed 0x1000 + 436461
    23  com.adobe.Photoshop                     0x0006a69d 0x1000 + 431773
    24  com.adobe.Photoshop                     0x00063c65 0x1000 + 404581
    25  com.adobe.Photoshop                     0x00063dd3 0x1000 + 404947
    26  com.adobe.Photoshop                     0x0006212f 0x1000 + 397615
    27  com.adobe.Photoshop                     0x002205da 0x1000 + 2225626
    28  com.adobe.Photoshop                     0x00220666 0x1000 + 2225766
    29  com.adobe.Photoshop                     0x00003812 0x1000 + 10258
    30  com.adobe.Photoshop                     0x00003739 0x1000 + 10041
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x95059382 kevent + 10
    1   libSystem.B.dylib                       0x95059a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x95058f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x95058cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x95058781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x950585c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x95032b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x950606f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x950a905f pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x0b07b552 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services                  0x0b076995 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 115
    5   com.adobe.amt.services                  0x0b07b5b0 AMTThread::Worker(void*) + 20
    6   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    7   libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x95032b4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x9084d942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support                  0x26bbbeff 0x26b8c000 + 196351
    3   ...ple.CoreServices.CarbonCore          0x9081b54a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    5   libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x95032b4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x9084d942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support                  0x26bbbeff 0x26b8c000 + 196351
    3   ...ple.CoreServices.CarbonCore          0x9081b54a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    5   libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x95032b4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore          0x9084d942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support                  0x26bbbeff 0x26b8c000 + 196351
    3   ...ple.CoreServices.CarbonCore          0x9081b54a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    5   libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x95060aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9506075e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x950623f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9085021e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9083bb68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x90837533 MPWaitOnQueue + 250
    6   AdobeACE                                0x027c038d 0x278f000 + 201613
    7   AdobeACE                                0x027bfd85 0x278f000 + 200069
    8   ...ple.CoreServices.CarbonCore          0x9081b54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    10  libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x95060aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9506075e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x950623f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9085021e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9083bb68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x90837533 MPWaitOnQueue + 250
    6   AdobeACE                                0x027c038d 0x278f000 + 201613
    7   AdobeACE                                0x027bfd85 0x278f000 + 200069
    8   ...ple.CoreServices.CarbonCore          0x9081b54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    10  libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x95060aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9506075e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x950623f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9085021e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9083bb68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x90837533 MPWaitOnQueue + 250
    6   AdobeACE                                0x027c038d 0x278f000 + 201613
    7   AdobeACE                                0x027bfd85 0x278f000 + 200069
    8   ...ple.CoreServices.CarbonCore          0x9081b54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    10  libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x95032c0e mach_wait_until + 10
    1   libSystem.B.dylib                       0x950ba429 nanosleep + 345
    2   com.adobe.PSAutomate                    0x8be381b1 ScObjects::Thread::sleep(unsigned int) + 143
    3   com.adobe.PSAutomate                    0x8be38211 ScObjects::Thread::wait(unsigned int) + 23
    4   com.adobe.PSAutomate                    0x8be28dc6 ScObjects::BridgeTalkThread::run() + 332
    5   com.adobe.PSAutomate                    0x8be384d3 ScObjects::Thread::go(void*) + 239
    6   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    7   libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x95032afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x95033267 mach_msg + 68
    2   com.apple.CoreFoundation                0x95a2d30f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x95a2c3f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x95a32334 CFRunLoopRun + 84
    5   com.apple.DesktopServices               0x9141fb3d TSystemNotificationTask::SystemNotificationTaskProc(void*) + 643
    6   ...ple.CoreServices.CarbonCore          0x9081b54a PrivateMPEntryPoint + 68
    7   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    8   libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 11:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x95051ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x95a6cc83 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    3   libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 12 Crashed:
    0   com.apple.ImageIO.framework             0x910c4fab copyImageBlockSetPSD + 4204
    1   com.apple.ImageIO.framework             0x91030f95 ImageProviderCopyImageBlockSetCallback + 174
    2   com.apple.CoreGraphics                  0x9373352b CGImageProviderCopyImageBlockSet + 228
    3   com.apple.CoreGraphics                  0x93737d3c img_blocks_create + 348
    4   com.apple.CoreGraphics                  0x93737bc1 img_blocks_extent + 85
    5   com.apple.CoreGraphics                  0x9379c921 img_interpolate_extent + 163
    6   com.apple.CoreGraphics                  0x936d0a4e img_data_lock + 8882
    7   com.apple.CoreGraphics                  0x936cdb4a CGSImageDataLock + 172
    8   libRIP.A.dylib                          0x959c0751 ripc_AcquireImage + 2446
    9   libRIP.A.dylib                          0x959be3c6 ripc_DrawImage + 1245
    10  com.apple.CoreGraphics                  0x936cd7c4 CGContextDrawImage + 450
    11  com.apple.ImageIO.framework             0x910a4121 CGImageCreateCopyWithParametersNew + 1765
    12  com.apple.ImageIO.framework             0x910a2d25 CGImageSourceCreateThumbnailAtIndex + 3709
    13  com.apple.AppKit                        0x91cc12d1 -[NSNavFBENode _quickLookImageWithMaxSize:isThumbnail:] + 956
    14  com.apple.AppKit                        0x91ccc8be +[NSNavNodePreviewHelper _subthreadComputePreviewThumbnailImages] + 626
    15  com.apple.Foundation                    0x98dee564 -[NSThread main] + 45
    16  com.apple.Foundation                    0x98dee514 __NSThread__main__ + 1499
    17  libSystem.B.dylib                       0x95060259 _pthread_start + 345
    18  libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x95060aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9506075e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x950623f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9085021e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9083bb68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x90837533 MPWaitOnQueue + 250
    6   com.adobe.CameraRaw                     0x8e79e1b1 0x8e5fd000 + 1708465
    7   com.adobe.CameraRaw                     0x8e79db77 0x8e5fd000 + 1706871
    8   ...ple.CoreServices.CarbonCore          0x9081b54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    10  libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x95060aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9506075e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x950623f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9085021e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9083bb68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x90837533 MPWaitOnQueue + 250
    6   com.adobe.CameraRaw                     0x8e79e1b1 0x8e5fd000 + 1708465
    7   com.adobe.CameraRaw                     0x8e79db77 0x8e5fd000 + 1706871
    8   ...ple.CoreServices.CarbonCore          0x9081b54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    10  libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x95060aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x9506075e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x950623f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore          0x9085021e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore          0x9083bb68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore          0x90837533 MPWaitOnQueue + 250
    6   com.adobe.CameraRaw                     0x8e79e1b1 0x8e5fd000 + 1708465
    7   com.adobe.CameraRaw                     0x8e79db77 0x8e5fd000 + 1706871
    8   ...ple.CoreServices.CarbonCore          0x9081b54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    10  libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x95032b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x950606f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x950a905f pthread_cond_wait + 48
    3   com.adobe.CameraRaw                     0x8e63d4b9 0x8e5fd000 + 263353
    4   com.adobe.CameraRaw                     0x8e8c297c EntryFM + 730746
    5   com.adobe.CameraRaw                     0x8e6ce90d 0x8e5fd000 + 858381
    6   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    7   libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x95032b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x950606f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x950a905f pthread_cond_wait + 48
    3   com.adobe.CameraRaw                     0x8e63d4b9 0x8e5fd000 + 263353
    4   com.adobe.CameraRaw                     0x8eb1b0d3 0x8e5fd000 + 5365971
    5   com.adobe.CameraRaw                     0x8e6ce90d 0x8e5fd000 + 858381
    6   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    7   libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x95058412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x950589a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x950585c6 start_wqthread + 30
    Thread 19:
    0   libSystem.B.dylib                       0x95032b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x950606e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x9508f5a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x9083bb90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x9083b8ce TSWaitOnSemaphoreCommon + 511
    5   ...ple.CoreServices.CarbonCore          0x9083b564 AsyncFileThread(void*) + 102
    6   libSystem.B.dylib                       0x95060259 _pthread_start + 345
    7   libSystem.B.dylib                       0x950600de thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x95058412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x950589a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x950585c6 start_wqthread + 30
    Thread 12 crashed with X86 Thread State (32-bit):
      eax: 0x000000ff  ebx: 0x910c3f50  ecx: 0x000000ff  edx: 0x0000007f
      edi: 0x00000000  esi: 0x06c8ee01  ebp: 0xb0a60958  esp: 0xb0a606e0
       ss: 0x0000001f  efl: 0x00010203  eip: 0x910c4fab   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -  0x19aefdf +com.adobe.Photoshop 11.0.2 (11.0.2x20100519 [20100519.r.592 2010/05/19:02:00:00 cutoff; r branch]) (11.0.2) <40DBAC70-2688-44B1-A8CE-142BF8A18887> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    0x207f000 -  0x2085ff7  org.twain.dsm 1.9.4 (1.9.4) <39A3CE1E-9DB3-88ED-8D46-E158996E3A5D> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x208c000 -  0x246601f +com.adobe.linguistic.LinguisticManager 4.0.0 (7863) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguisti c
    0x251a000 -  0x2714fcf +AdobeOwl ??? (???) <4CCA2C7B-4896-4DDA-A14B-725FB0C202B5> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x278f000 -  0x289cfff +AdobeACE ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x28ba000 -  0x2c84fef +AdobeMPS ??? (???) <277E01A3-CAC3-4FA9-A591-4BC0A5BC125A> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x2d13000 -  0x2d73fc7 +AdobeXMP ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2d82000 -  0x307dfff +AdobeAGM ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x313d000 -  0x33d0fe7 +AdobeCoolType ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x3454000 -  0x346dfff +AdobeBIB ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x3477000 -  0x3498ff7 +AdobeBIBUtils ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x34a5000 -  0x34c0ff9 +AdobePDFSettings ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSetti ngs
    0x34da000 -  0x34feff6 +AdobeAXE8SharedExpat ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8 SharedExpat
    0x3511000 -  0x359e2cb +libicucnv.dylib.36.0 36.0.0 (compatibility 36.0.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib .36.0
    0x35cb000 -  0x35e680f +libicudata.dylib.36.0 36.0.0 (compatibility 36.0.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36. 0
    0x35e9000 -  0x379fff4 +com.adobe.amtlib amtlib 2.0.1.10077 (2.0.1.10077) <CB2EC3BF-6771-4DAB-BF29-6775FB6F9608> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x37d6000 -  0x3866fc3 +WRServices ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x39e8000 -  0x39ecffc +com.adobe.AdobeCrashReporter 2.5 (3.0.20080806) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashR eporter
    0x39f2000 -  0x3a0efd7 +com.adobe.LogTransport 1.0 (1.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransport
    0x3a19000 -  0x3aeefdd +FileInfo ??? (???) <F0932F89-FC98-4BA9-B4F2-C58D0E71D3C1> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x3b1f000 -  0x3b76fff +aif_core ??? (???) <B4DCB439-E1EE-ABE3-BD12-2C42E980366B> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x3b8e000 -  0x3babffd +data_flow ??? (???) <8E452B6F-8032-39D8-EB5C-49A4E31CB988> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x3bd7000 -  0x3c50fff +image_flow ??? (???) <498A857D-F8C6-F9E0-C92F-BC3EC8680ED0> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x3cb6000 -  0x3cc6fff +image_runtime ??? (???) <F379A952-2983-1E44-676D-BBD8259F131A> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x3cdb000 -  0x3e9affe +aif_ogl ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x3f4b000 -  0x4449fc3 +AdobeOwlCanvas ??? (???) <FCB2D1A3-1F6E-4182-8E2C-D0B23572D285> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x4592000 -  0x4664fe7 +AdobeAXEDOMCore ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCor e
    0x4718000 -  0x477afe7 +com.adobe.PlugPlug 1.0.0.73 (1.0.0.73) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x47db000 -  0x4822fc7 +com.adobe.adobe_caps adobe_caps 2.0.99.0 (2.0.99.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x4832000 -  0x4872ff7  com.apple.vmutils 4.2 (106) <7AAF9FDA-AC1E-09FD-889E-68FFB5F94BA8> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x4caf000 -  0x4cb0ff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x4fd6000 -  0x4fe4fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <1825F5DF-491F-FDD5-3ABB-3FAC1EDC4357> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x4fe8000 -  0x4ffaff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <3057675E-16A3-EC0C-A764-5CADB6C5ECD2> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x80fc000 -  0x80fcff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0xa180000 -  0xa181ff7  ATSHI.dylib ??? (???) <8791C226-0725-314F-5897-BAAE57CA1EEE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0xa1e3000 -  0xa1f0ff7 +com.adobe.asneu.framework asneu version 1.6.2f01 (1.6.2) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    0xb05b000 -  0xb0fcfc3 +com.adobe.amt.services AMTServices 2.0.1.10077 (BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09) (2 . 0) <31E82904-C3C2-424E-A1AE-A5EFADBB19B8> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
    0x1b8df000 - 0x1b8eafff +Enable Async IO ??? (???) <FD91E79F-C4AA-4EBC-AF6D-3E154F14878F> /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x1b8ef000 - 0x1b8faffb +PPCCore ??? (???) <ED521EB7-681D-45AA-9AE3-6BF4663E4BD3> /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/PPCCore.plugin/Contents/MacOS/PPCCore
    0x25114000 - 0x25116ffa +Adobe Unit Types a2.0.0 (2.0.0) /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types
    0x2511a000 - 0x2513dff7 +CSI-Launcher.dylib ??? (???) /Library/Application Support/Adobe/CS4ServiceManager/CSI-Launcher.dylib
    0x25153000 - 0x252ccff7  GLEngine ??? (???) <64C74F67-44B5-7DEF-CCA6-C8A9FF9BB60A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x252fe000 - 0x25703fe7  libclh.dylib 3.1.1 C  (3.1.1) <15AD52DD-FC3F-305E-5C31-699329E8FDE1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x2577b000 - 0x2626cfff  com.apple.driver.AppleIntelHDGraphicsGLDriver 1.6.36 (6.3.6) <E5776D7C-4999-5409-387B-C844C26D658A> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/A ppleIntelHDGraphicsGLDriver
    0x269f8000 - 0x26a1cfe7  GLRendererFloat ??? (???) <AD081A9B-1424-1F17-3C68-9803EBA37E8D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x26a64000 - 0x26a7202f +FastCore ??? (???) <F12878B7-BEE9-40CA-9F05-65CD0F5688E2> /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
    0x26a78000 - 0x26a83ffe +AltiVecCore ??? (???) <A967AE2A-F2AE-4E12-A7B6-68B981CBD906> /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/AltiVecCore.plugin/Contents/MacOS/AltiVecCore
    0x26a89000 - 0x26aeefe3 +MMXCore ??? (???) <E206C8DC-AEA8-49DF-8FBC-8B447E3A59A1> /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
    0x26b8c000 - 0x26bd3ff7 +MultiProcessor Support ??? (???) <001A163B-5314-4613-A23A-F35B63065FD0> /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x26bde000 - 0x26d30fc7 +com.adobe.coretech.adm 3.10x16 (3.1) /Applications/Adobe Photoshop CS4/Plug-ins/ADM/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x40000000 - 0x400ae030 +AdobeJP2K ??? (???) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8b73b000 - 0x8b76cfe3 +com.adobe.amt.registration AMTRegistration 2.0.1.10077 (BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09) (2 . 0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/registration.framework/Versions/a/registration
    0x8bd00000 - 0x8bf5cfdf +com.adobe.PSAutomate 11.0.1 (11.0.1) /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
    0x8c1f0000 - 0x8c2befff +AdobeExtendScript 3.7.0 (compatibility 3.7.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendS cript
    0x8c335000 - 0x8c3d6fd7 +AdobeScCore 3.7.0 (compatibility 3.7.0) /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x8c432000 - 0x8c48eff2 +AdobeUpdater ??? (???) <064CFAA4-1CAF-46E3-BEBF-04948641C927> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/AdobeUpdater.framework/Versions/a/AdobeUpdater
    0x8d000000 - 0x8d482fe3 +AdobeLM_libFNP.dylib ??? (???) <02E9AC76-9CC6-4974-AF05-48E737C2CC20> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/Frameworks/amtlib.framework/Versions/a/AdobeLM_libFNP.dylib
    0x8e5fd000 - 0x8ecdbfeb +com.adobe.CameraRaw 5.0 (5.0.0f178) /Library/Application Support/Adobe/Plug-Ins/CS4/File Formats/Camera Raw.plugin/Contents/MacOS/Camera Raw
    0x8f0c6000 - 0x8f811fff  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <3BB341B6-11A7-38AD-10A3-F89506FD40D4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fb70000 - 0x8fc70fcf +com.adobe.versioncue ??? (4.0.0.344) /Library/Application Support/Adobe/Adobe Version Cue CS4/Client/4.0.0/VersionCue.framework/VersionCue
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90003000 - 0x900affe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x900b0000 - 0x900e0ff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x900e1000 - 0x90117fff  libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x9016a000 - 0x901c2fe7  com.apple.datadetectorscore 2.0 (80.7) <F7416A84-E91C-5BDC-10E3-4940EB7AE5C9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x901c3000 - 0x901c9fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9025f000 - 0x90262ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x902db000 - 0x902defe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x902df000 - 0x902e1ff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90581000 - 0x9077fff3  com.apple.JavaScriptCore 6533.20 (6533.20.20) <011E271D-4CA4-FFB0-2EDD-13C31C239899> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x907c1000 - 0x907f4fff  libTrueTypeScaler.dylib ??? (???) <0F04DAC3-829A-FA1B-E9D0-1E9505713C5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x907f5000 - 0x90b15ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90b3c000 - 0x90be4ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90be5000 - 0x90be9ff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90bea000 - 0x90dccfff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90e0d000 - 0x90e6efe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90e6f000 - 0x90ebfff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90efb000 - 0x90efdff7  libRadiance.dylib ??? (???) <5920EB69-8D7F-5EFD-70AD-590FCB5C9E6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90efe000 - 0x90f38ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <6875335E-0993-0D77-4E80-41763A8477CF> /usr/lib/libcups.2.dylib
    0x90f39000 - 0x90f9dffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x90fa3000 - 0x90fb1fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x90fb2000 - 0x90fb2ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x91027000 - 0x911e9feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <027F55DF-7E4E-2310-1536-3F470CB8847B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x911ea000 - 0x912b5fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x912b6000 - 0x91333ff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x91334000 - 0x9135eff7  com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91389000 - 0x913ccff7  libGLU.dylib ??? (???) <FB26DD53-03F4-A7D7-8804-EBC5B3B37FA3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9141e000 - 0x914f8fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x914f9000 - 0x91504ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91505000 - 0x91611ff7  libGLProgrammability.dylib ??? (???) <04D7E5C3-B0C3-054B-DF49-3B333DCDEE22> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91612000 - 0x91626fe7  libbsm.0.dylib ??? (???) <821E415B-6C42-D359-78FF-E892792F8C52> /usr/lib/libbsm.0.dylib
    0x91627000 - 0x91639ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9163a000 - 0x9166dff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9166e000 - 0x9176ffe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x91783000 - 0x917ddfe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x917de000 - 0x917deff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x917ff000 - 0x920e2ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x920e3000 - 0x92125ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92151000 - 0x921d1feb  com.apple.SearchKit 1.3.0 (1.3.0) <2F5DE102-A203-7905-7D12-FCBCF17BAEF8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x921d2000 - 0x9228bfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x9228c000 - 0x92293ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92294000 - 0x9229bff7  com.apple.agl 3.0.12 (AGL-3.0.12) <A5FF7623-9F55-0364-AD9B-42CF13C677C1> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9229c000 - 0x92337fe7  com.apple.ApplicationServices.ATS 275.16 (???) <873C8B8A-B563-50F7-7628-524EE9E8DF0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92dcd000 - 0x92dddff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x92f41000 - 0x93043fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x93044000 - 0x930b3ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x930bc000 - 0x931b0ff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <061ABF36-8BA9-79C1-6CE7-EC69A4998F51> /usr/lib/libiconv.2.dylib
    0x931b1000 - 0x931f5fe7  com.apple.Metadata 10.6.3 (507.15) <460BEF23-B89F-6F4C-4940-45556C0671B5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x931f6000 - 0x93561ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9358e000 - 0x93646feb  libFontParser.dylib ??? (???) <D57D3834-9395-FD58-092A-49B3708E8C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x93647000 - 0x9368dff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x9368e000 - 0x93e7d557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93e7e000 - 0x93f4ffe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <1C3E1CEF-6E88-4EAF-8A6E-4EC4C5642DDB> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x93f50000 - 0x93f50ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93f51000 - 0x93f75ff7  libJPEG.dylib ??? (???) <EA97DEC5-6E16-B51C-BF55-F6E8D23526AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9415f000 - 0x9417bfe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x941b5000 - 0x944d9fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x944da000 - 0x944e4ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94554000 - 0x94602ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94603000 - 0x9460cff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9460d000 - 0x946c9fff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94703000 - 0x94713ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib

    happy_apple90,
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    this exception typically has one of two causes: either there’s a bug in Photoshop 11.0.2 (or in one of your installed plug-ins), or there’s a problem with your RAM. Since Adobe no longer updates Creative Suite 4, there’s not much that can be done about it if it’s due to a Photoshop bug. Do you have any third-party Photoshop plug-ins installed? If so, you could try disabling those to see if that makes a difference — if it does, then go through a process of elimination to determine which plug-in is at fault. If you have no third-party plug-ins installed, then you can try running your MacBook Pro’s Apple Hardware Test to see if it can detect a problem with your RAM.

  • Why does iBooks go suddenly black or crash On my iPad mini

    why does my ibooks app turn to black with white writing or crash on my iPad mini with ios8

    Me too, ipad mini can't get YouTube app to function via the official app and the same error message," ...tap to retry", but to no avail. The app launches but it will not allow me to sign in. The drop arrow just tilts up and down and ...nothing. I can still access YouTube through Safari browser but strange, I can't find a solution to the app not opening or being able to sign in on either ipad mini or phone even though they are up to date apps.

  • Why does opening and closing FPGA references increase Windows XP handles by 3?

    Hello.
    We run a test system here that uses TestStand to communicate
    to a number of Labview VI modules which in turn communicates to a
    PXI-7833R FPGA. Everything has been working fine except after a long time running Labview would get an out of memory error. I discovered
    after a particular VI was run 100,000 times, the number of handles in Windows XP Task
    Manager grew to about 370,000. The number of threads and processes remains stable and normal. Closing Labview removes all the excessive handles.
    I tried an experiment to create a standalone VI (ie: no TestStand) which simply opens the FPGA VI reference then closes the reference. This is repeated 4 times in the same VI. The number of handles in Windows XP Task
    Manager increased by 12 each time the VI was run. No errors. This indicates closing the FPGA reference might not be working.
    Why does this happen? Is there a way to avoid it? The version of Labview is 8.5.1.
    Appreciate any help here. Thanks.
    -Dave

    could be related to this known issue--
    FPGA FIFO reset behavior—When you use an FPGA target
    emulator, FPGA FIFOs reset when the VI is stopped and then started
    again. When you use an FPGA target with Interactive Front Panel
    Communication, FPGA FIFOs do not reset when the FPGA VI is stopped and
    then started again. To reset the FIFO, right-click the FPGA target in
    the Project Explorer window and select Download
    from the shortcut menu. When you control an FPGA VI using Programmatic
    FPGA Interface Communication, use the Close FPGA VI Reference function
    with the Close and Reset shortcut menu option selected or the Invoke Method with the Reset method selected to reset FPGA FIFOs
    see Knowledgebase
    Also remeber to load the FPGA Read/Write VI's dynamically from testStand and dump them after.  Thechange to the data type causes the vi to need to recompile so it can't stay in memory if you need different types of data.
    Message Edited by Jeff Bohrer on 10-27-2009 02:21 PM
    Jeff

  • Why does my new macbook air keep crashing i.c.w. Time Capsule!!!?

    I bought my new MBA 11" @ the apple store eaton centre in Toronto. Since my purchase i dec 2010 the MBA crashed often but i thought this was normal (once a week).
    Now i connected a brand new Time Capsule & Airport Express (bought @ apple.com) and now it crashes every 30 minutes!!!
    --when i try to copy data to the time capsule it crashes after 1,5 gb.
    --when i'm listening music via Airport Express the MBA crashes after 20 minutes.
    I get a ' filter'  over my screen with in several languages that i need to reboot....
    I tried to get support at Apple (via phone) but the suggested that i should visit iCentre (in Ede, The Netherlands were i live).
    They took my Apple in repair. Got it for over a week and then they told me that the had run some test and that there was nothing wrong... The invoice was euro 79,-!
    ...At home i tried to copy files to my Time Capsule and the machine crashes again.... (nothing wrong???)
    Why can't i get normal support on this expensive machines....!!!???

    Backing up other Ethernet doesn't prevent access via Wi-Fi.
    If the Time Capsule creating a wireless network?  If not, you'll need to configure it to do so in order to allow the MBA to connect to it.  If it does, can you connect the MBA to the Time Capsule's network?
    Depending on the amount of data you want to transfer, using a USB-to-Ethernet adapter would help things run faster.

  • Why does Adobe Elements 4.0 suddenly crash about the time Apple has a security update?

    Why does Adobe Elements 4.0 suddenly start crashing about the time Apple has a security update?

    An ADOBE FORUM "Community Professional" commented:
    "Well, I'm not sure any of this is going to work, but go to your username>library>preferences and delete:
    com.adobe.Photoshop.Elements.plist
    The PSE 4 Paths and Settings folders (can't remember whether they're called Adobe Photoshop Elements 4.0 Paths or something different, but you want folders with Paths and Elements 4 in their names--you should be able to figure out which they are)
    Opera preferences (if you have it)
    Repair permissions and try again.
    If it still quits, go to the PSE 4 folder in applications and delete the Adobe TWAIN driver from the plug-ins folder (note that you may have trouble with Epson scanners in PSE after doing this).
    However, PSE 4 is pretty darned old and it's less compatible with every new OS X update, so what I've suggested may work and may not. FWIW, you probably will not be able to reinstall the program if you ever need to do so--installed versions of PSE 4 keep working in 10.6, but the installer does not."
    Hope this helps

  • Why does the new version of Firefox crash when I try to reply to messages in Gmail?

    Why does firefox crash when I try to respond to emails in Gmail. We I use IE it works fine.
    == URL of affected sites ==
    http://

    Maybe your problem can be solved in this article [[Firefox crashes]] Try this also: [[Clear Recent History]]

Maybe you are looking for

  • IPod 4th gen unrecognized by Mac or PC, even after reset, restore, disk mod

    I recently purchased an iPod 4th gen from eBay. When it arrived, it was working perfectly. It came with music pre-loaded, some of which I liked, so I tried several programs to extract the music. I ended up using iPodDisk.app, but in the process of tr

  • Glims no longer works in safari 8 - Alternative?

    Testing out 10.10 on a spare disk. Glims does no longer work in Safari 8.  Are there alternatives?  I really miss for example the reopening of the tabs from a previous session among other things.

  • Exporting from Live type as uncompressed

    Does anyone know if it is possible to export from live type with no compression or in different codecs? I have this option in FCP and AE and my graphics and type look great when export using "none" compression or 10 bit uncompressed.

  • Service working fine in Gateway but not in browser

    Hi All, I have a gateway service which is working fine in Development system but after transporting to Quality system, it is not working on browser. It is running perfectly in Quality gateway system but on browser it's throwing error:             Mod

  • Autocomplete textbox function using in infopaht designer 2010

    Hi i have created one textbox in infopath. In site page i added a CEWP and infopath form webpart. I add the code in HTML text editor, but i am getting javascript error.  errors are below: - jquery is undefined - expected } This is my code <script src