System modal dialog

Can I get some help on creating a dialog which is system modal (on Windows)?

Yes, I want the dialog to be modal to windows can u give me more help on how to acheive this through JNI. I actually need a Login dialog which is modal to Windows?

Similar Messages

  • Threadsafe Modal Dialog

    Is there any way to do a thread safe, properly operating modal dialog panel?
    I want to issue popups from within a thread.  Using the standard MessagePopup() displays the dialog box, but it does not block events in the other threads.  Which is to say that one can click anything else on the main panel, putting the popup in the background. 
    Perhaps there is some kind of signalling that can be implemented between a function launched from the thread via PostDeferredCall(), so that the thread pauses until the popup is closed?

    hendra:
     If you just need a simple, standard dialog box, you can use the Windows SDK MessageBox function to create a system modal dialog box.  System modal dialogs stay on top of all other applications.  See my old example here: http://forums.ni.com/t5/LabWindows-CVI/MessagePopup-dissappears-behind-active-panel/m-p/182045#M1409...
    If you need a more custom dialog, as an experiment I created a CVI project which simulates a system modal dialog by taking back focus on a fast firing timer.  See my discussion and example here: http://forums.ni.com/t5/LabWindows-CVI/Make-panel-modal-from-a-CVI-dll/m-p/1316925#M50035

  • Hiding Application To System Tray will cause Modal dialog unblock

    I have a JFrame, when I minimize it, it will hide. The user can recall it back by simply double click on its icon, which is created in system tray during application initialization.
    However, I am facing problem when I pop up a modal dialog box. (In Linux)
    When I pop up a modal dialog box, I am expecting setVisible(true) will always being block, until the modal dialog box is closed.
    However, in Linux, user is able to minimize the parent windows, even there is a modal dialog box. During minimization, I have to call JFrame.setVisible(false), in order to hide the application.
    A side effect of calling setVisible(false) for a modal dialog box owner (JFrame), will cause the modal dialog box JDialog.setVisible(true) being unblocked and continue for the next statement.
    How I can prevent this, to ensure the JDialog.setVisible is always blocked, until the JDialog is really closed? Thanks!

    tnx Sarcommand ..i give up on that, i understand the risk if that feature is included..
    all i wanted is to make an internet cafe client/server that blocks the client's pc interaction if log time is reached.blocking only the keyboard and mouse.
    i have seen so many softwares sets the cursor position within the dialog bounding box only with user and password there. though my other application runs the mouse is still captured on the dialog even the dialog lost focus.
    if that would not be possible I'll just send notification to the client, a dialog that does not block any application.
    now, im going to try if the client can do som action whenever the server sends alert if the client java app is not the focus. i will post next time what hapens.but if you tried already, if u dont mind posting it so others could know it also..
    tnx so much Sarcommand..

  • Modal dialog window to system

    Hi,
    I could not find proper link to post this, so I am posting here.
    I want a system level dialog window i.e. when this window is visible it should always be at top most and user should not allowed to select other applications.
    I used runModalForWindow method of NSApp but it is creating modal window with respect to my application and I am able to select other applications.
    I want my modal dialog should be top most dialog to my application and user should not be able to select other application.
    Thanks.

    Hi
    My application is running in kiosks environment. So I want when any modal dialog pops up in desktop from my application, user should not be able to select any other application from the desktop i.e. I want my modal dialog window should always be at the topmost.
    If it is not possible to have a system level dialog window, any alternate solution so that my modal dialog will be at topmost and user should not be able to select any other application as long as this dialog is visible will really helpful to solve my problem.
    Thanks.

  • How can I control modal dialogs in Applescript without a mouse?

    I am trying to use a Griffin PowerMate button to select between two options in an Applescript modal dialog and cannot seem to figure out how to do this. I can set a default button, but I want the user to select between two options (shifting the highlighted button) via the PowerMate. Does anyone have a suggestion?
    I can program the PowerMate to send/emulate a particular keystroke, but I do not know how to make the standard Applescript dialog respond to a keystroke, only a mouse action. I'm trying to create a mouseless interface.
    In short, I want the dialog respond to "Twist to the left and press the button to select A, Twist to the right and press the button to select B." Thoughts?
    Thank you.

    Your System Preferences > Keyboard Shortcuts > Full Keyboard Access preference will need to be set to "all controls", but it also depends on where the particular button is located in the dialog.  The tab key will highlight the buttons from left to right, shift-tab will highlight the buttons from right to left, and the spacebar will "press" the currently highlighted button.  In addition, the escape key will choose the Cancel button (if there is one), and the return key will choose the default button (if a default has been set the button itself will be lit).

  • How to make a dalog process custom events when blocked by modal dialog

    Hi,
    I would like to understand the way modal dialogs block other dialogs so that I can properly solve an issue I'm having with two modal dialogs, one blocking the other.
    I have an application, netbeans platform based, that opens a JDialog, NewDiskDlg, with it's modal property set to true. This dialog is responsible for starting a thread that will process a given number of files, from time to time, depending on some conditions, this thread will send events to the NewDiskDlg.
    When this thread is started, the NewDiskDlg creates a new JDialog, also with the modal property set to true. Both dialogs have the same parent, the main window. And this works as I expected, the second dialog, ActiveScanningDlg, opens on top of the NewDiskDlg and, until the thread stops, the dialog stays visible.
    When the thread stops an event is sent to this two dialogs signaling that the job has been completed, and here is my problem. The second dialog, the one that is visible when the event arrives, receives the event and executes the dispose() method, releasing control to the NewDiskDlg in the back, but the NewDiskDlg does not receive the event and does not process it correctly.
    I understand the no input can be sent to a blocked window, but does that include calling upon the window's methods?
    I've been looking for some help on this but my search terms are not good enough to provide me with any useful information. I've also read the topic on the focus system that is present in the Java Tutorial but I feel that that is not what I should be looking at.
    The following code is a snippet of the important parts that I described:
    NewDiskDlg has the following methods to process the events
        public void readingStarted(ReadingEvent evt) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    scanningDlg.showCentered();
        public void readingFile(ReadingEvent evt) {
            //DO NOTHING
        public void readingStopped(ReadingEvent evt) {
            Lookup.getDefault().lookup(MediaReader.class).removeListener(this);
            if (!showAgain) {
                dispose();
        public void readingAborted(ReadingEvent evt) {
            JOptionPane.showMessageDialog(this, "", "", JOptionPane.ERROR_MESSAGE);//TODO: i18n on the error messagens
            Lookup.getDefault().lookup(MediaReader.class).removeListener(this);
        }ActiveScanningDlg processes the events like this:
        public void readingStarted(ReadingEvent evt) {
            //DO NOTHING
        public void readingFile(ReadingEvent evt) {
            jpbReadingProgress.setString(evt.getCurrentFileName());
        public void readingStopped(ReadingEvent evt) {
            Lookup.getDefault().lookup(MediaReader.class).removeListener(this);
            dispose();
        public void readingAborted(ReadingEvent evt) {
            readingStopped(evt);
        }This is an example on how the events are sent:
        private void fireReadingFile(ReadingEvent evt) {
            for (ReadingListener l : listeners) {
                l.readingFile(evt);
        }

    Hi,
    You have to check the Tolerance limits set for the following tolerance keys. In case if any where the limit is breached the systems blocks the Invoice as 'R - Invoice verification'. Please check the limits set for all these keys.
    AP - item amount variance (if you have activated the item check)
    DQ and DW - for Quantity variance
    PP - price variance with the order price
    ST - date variance
    VP - Moving average price variance
    Regards,
    Kathir

  • How to display non modal dialog box in a Dll call from TestStand implemented in visual c

    Dear Jason F.
    Applications Engineer
    National Instruments
    Hello
    I did the same way you told me
    the non modal dialog appeared and
    system hangs and
    giving the error message
    ""SeqEdit.exe-Application Error
    The instruction at �0x047fc5b0� referenced memory at �0x047fc5b0�. The memory could not be �read� ""
    please solve my problem
    and thanks for yours early response
    you can email me at
    [email protected]

    Hi Mkehret,
    Does your dialog have ActiveX controls on it? If your DLL dialog uses ActiveX controls and is not programmed in a certain manner it can hang because of a conflict in the threading model used by the TestStand Engine that is calling into your DLL and the model that is required by the MFC ActiveX Container. If you are using ActiveX controls in your dialog, you need to make special considerations for the threading model MFC dialogs that use ActiveX controls need in order to work properly. The example under \Examples\MFCActiveXContainerDlg illustrates how to appropriately handle this situation as well as explaining why it is necessary.
    Note: The above example displays the dialog as modal, but this is irrelevant to the problem I am describing.
    Again for information on properly creating a dialog class object and displaying it as non-modal refer to the information on MSDN that I referred you to in this post:
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=506500000008000000E98A0000&USEARCHCONTEXT_CATEGORY_0=_8_&USEARCHCONTEXT_CATEGORY_S=0&UCATEGORY_0=_8_&UCATEGORY_S=0
    If your dialog does not use ActiveX controls or after trying the programming method illustrated in the "MFCActiveXContainerDlg" example TestStand still hangs when calling your DLL, try calling your DLL from another environment just to make sure whether the DLL works at all. If the DLL works properly when called by another environment (e.g. VB, VC++, LabVIEW, or CVI), please submit a MINIMAL and REPRODUCEABLE example source project for your DLL for us to look at (please exclude all unnecessary code not required to reproduce the specific problem of displaying the dialog, and include all files necessary to build your dll with any
    specific instructions needed to do so).
    Jason F.
    Applications Engineer
    National Instruments
    www.ni.com/ask

  • Imitate modal dialog by non-modal

    Hi
    I'm trying to achieve modal dialog functionality by non-modal (i have reasons to do that), but I have encountered a real problem:
    calling wait() from EDT is freezing everything. Below is source code, in most cases dialog is created inside action listener (in the EDT), so it is the source of problem:
    public class TestMyDialog {
         public TestMyDialog() {
              final JFrame jFrame = new JFrame();
              JPanel panel = new JPanel();
              JButton button1 = new JButton("open dialog");
              JButton button2 = new JButton("close");
              button1.addActionListener(new ActionListener() {
                   @Override
                   public void actionPerformed(ActionEvent e) {
                        System.out.println(SwingUtilities.isEventDispatchThread());
                        Object syncObject = new Object();
                        new MyDialog(jFrame, "title", syncObject);
                        try {
                             synchronized (syncObject) {
                                  syncObject.wait();
                        } catch (InterruptedException ex) {
                             ex.printStackTrace();
                        System.out.println("dialog closed");
              button2.addActionListener(new ActionListener() {
                   @Override
                   public void actionPerformed(ActionEvent e) {
                        System.exit(0);
              panel.add(button1);
              panel.add(button2);
              jFrame.getContentPane().add(panel);
              jFrame.setUndecorated(true);
              jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              jFrame.pack();
              jFrame.setVisible(true);
         public static void main(String[] args) {
              new TestMyDialog();
    }And main class:
    * Dialog that imitates modal dialog.
    * @author ggg
    @SuppressWarnings("serial")
    public class MyDialog extends JDialog {
         private Frame ownerFrame;
         public MyDialog(Frame owner, String title, final Object syncObject) {
              super(owner, title, false); // modal = false
              this.ownerFrame = owner;
              JButton button1 = new JButton("close dialog");
              button1.addActionListener(new ActionListener() {
                   @Override
                   public void actionPerformed(ActionEvent e) {
                        ownerFrame.setFocusable(true);
                        ownerFrame.setEnabled(true);
                        setVisible(false);
                        dispose();
                        synchronized (syncObject) {
                             syncObject.notifyAll();
              add(button1);
              ownerFrame.setFocusable(false);
              ownerFrame.setEnabled(false);
              setSize(300, 200);
              setVisible(true);
         } // end of constructor
    }Any ideas would be highly appreciated.

    gimbal2 wrote:
    calling wait() from EDT is freezing everything.
    Any ideas would be highly appreciated. What about... don't ever block the EDT?Why do you mean by don't block the EDT? I'm using wait() because I need the calling thread to stop for a while (close dialog) but unfortunately this thread is EDT in case of ActionListeners....
    AndrewThompson64 wrote:
    gregory_33 wrote:
    ..I'm trying to achieve modal dialog functionality by non-modal (i have reasons to do that), ..What are those reasons?It was requirements from my boss, and please don't ask me why.... I just have to try to solve this.
    And thanks for interest for all of you.

  • Focus Problem -- Two Non Modal Dialogs

    Hi ,
    In my applet, when user does something which is not allowed, I display an error message box (JOptionPane dialog - modal).
    There is another dialog box (non modal) that user
    can open to view search results and put it aside the
    applet window to do some parallel work.
    Now when error message dialog appears, the search
    dialog box also pops up even if the user
    has put this behind the applet window (by clicking browser window or applet, the search dialog goes behind the window).
    Can you please let me know, how can I get rid
    of this search dialog (non-modal) popup. I mean
    search dialog should remain open but should not
    come infront (ie should not get focus) when modal
    error message dialog pops up.
    NOTE: I don't want to make search dialog
    a modal dialog.
    Thanx,
    [email protected]

    Thanks for the reply michael. I forgot to mention particularly during my post that i am facing this problem on Solaris system. Running the same application on windows is working fine. I can't make other non-modal dialogs visibility to false because they should be visible on the screen all the time throught out the application life cycle and making it visible/non-visible doesn't get sense in my application. Does anybody is facing the same problem with Solaris system? Plz help.
    Hitesh

  • Problem closing a modal dialog in SharePoint 2013

    I have an application page which is opened in a modal dialog in SharePoint. In this dialog I open a document with: createNewDocumentWithProgID 
    and afterwards when I want to close the dialog there is a problem using the call: 
    SP.SOD.execute('sp.ui.dialog.js', 'SP.UI.ModalDialog.commonModalDialogClose', 1, 'Selected');
    The call itself works in some contexts when I use it with "SP.SOD.execute", but it always causes other javascript errors to be thrown, and these errors sometimes causes problems with the application page. Below are the error messages and code, but
    my question essentially is: What is causing javascript errors in SharePoint after the close modal javascript function is called?
    The errors that occur in javascipts after commonModalDialogClose has been called are: 
    Unhandled exception at line 4118, column 17 in http://sp2013server/_layouts/15/init.debug.js?rev=hd6vYIlQjxmYnM/9RloMJA==
    0x800a138f - JavaScript runtime error: Object expected
    The javascript code snippet which throws the error (in init.debug.js ?):
    for (i = 0; i < am; i++) {
                    sodDep = mll[i];
                    if (!IsSodLoaded(sodDep) && (bSync || sodDep.state != Sods.loading)) {
                        LoadSodInternal(sodDep, bSync);
    And this error: 
    Unhandled exception at line 1270, column 5 in http://sp2013server/_layouts/15/init.debug.js?rev=hd6vYIlQjxmYnM/9RloMJA==
    0x800a138f - JavaScript runtime error: Unable to get property 'caller' of undefined or null reference
    The javascript code snippet which throws the error (in init.debug.js ?):
    function ULSOnError(msg, url, line) {
        return ULSSendExceptionImpl(msg, url, line, ULSOnError.caller);
    The problem which sometimes occurs in the application page because of these javascript errors is that something in the page becomes null after the errors occur. And then a null reference exception is thrown and the dialog will not close, instead an error message
    is shown. The null reference exception is like this (could be that the web request has become null?): 
    "Server Error in '/' Application. 
    Object reference not set to an instance of an object. 
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below."
    Stacktrace: 
    [NullReferenceException: Object reference not set to an instance of an object.]
       Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.PostLogRequestHandler(Object oSender, EventArgs ea) +120
       System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +79
       System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +164
    olha

    Hi,
    Based on your description, when you use JavaScript close dialogue function in SharePoint, it occurs error.
    In SharePoint 2013, I suggest you can use the JavaScript like below:
    SP.SOD.executeFunc('sp.js', 'SP.ClientContext', closeModalDialog);
    Here is a detailed article for your reference:
    https://msdn.microsoft.com/en-us/library/jj245759.aspx
    Thanks
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jerry Guo
    TechNet Community Support

  • Standard function close Alt-F4 in modal dialog box

    hi,
    does anybody know how to activate the standard functions eg "close window" (Alt-F4) or terminate transaction in a modal dialog box (a dynpro-type modales Dialogfenster(in german)) eg the flying window of the system-status.
    i looked in the status of the status-dynpro, but could not find anything special about it.
    hints welcome...
    thanx a lot in advance. matthias kasig

    thanx - this solved my problem - but you have to catch a sy-ucomm with value '/CANCEL' - if you only catch 'CANCEL' it won't help - at least this works in my case - ta - i rewarded 10 points
    matthias kasig

  • Swing event queue, modal dialogs, event threads, etc...

    Hey all,
    So I am playing around with the focus manager, swing event thread and event queue, etc. Learned quite a bit. I am also playing around with test automation of our UI, using jfcUnit. I have written a few simple apps to play aorund with record/playback, coding tests, etc. What this thread is about though, is figuring out how modal and non-modal dialogs "take over" the event thread/queue? The reason I ask is, if I put a simple test harness like tool embeded in my app as a separate pop-up modal dialog, and from within it there is a GUI that I can use to select a "Test" to run. Now, when I run this test, jfcUnit needs to run on the main window, not within my non-modal dialog. What I am not sure of, however, is that if by using a non-modal dialog all events will go to the main event thread? I mean, I know if I mouse over my second non-modal frame (spawned from the application frame), that events will trigger for that dialog. I remember reading somewhere that modal dialogs "block" the main event queue, all left over events are given to the newly added event queue (presumably by the modal dialog) and existing left-over events get moved to the event queue. If that is the case, I am curious why events for the "old" queue are moved to the new queue if they were orginally intended for the old queue? I would think a "flush" before adding a new queue would be more appropriate so that the old queue can process all of its intended events.
    Now, I am just about to try this, but I am hoping a non-modal pop-up will not interfere with the jfcUnit running the UI of the main window. I am guessing, however, that it might. How are non-modal dialogs handled in terms of events and the event queue? Is it the same as modal dialogs? Or is there no blockage of the mainwindow event queue? If there is no blockage, than any sort of automation based on relative positions to a window may occur on the non-modal dialog, in which case it's best to hide the non-modal dialog during running of these tests.
    What are your thoughts, or better yet, knowledge of this topic? A decent explanation from a developer standpoint and not from the API's which dont give some of the more detailed info I am seeking is what I am hoping to get out of this.
    Thanks.

    Check this out. First, AWTListener has a LOT of
    different types you can register it for. I ORd all
    them together and when I ran my app, it took almost 30
    minutes for it to show up because of the huge stream
    of events being spit out via System.out. ...Yes, that doesn't surprise me in the least. There's hundreds of events that are fired around, usually unbeknownst to the user for every little thing. Lots of component and container events, in particular.
    Just make sure you OR ( using | not || ) ALL the
    "mask" values you want to watch for. That may be why
    you aren't seeing anything. When I did all that, and
    opened a menu, a ton of events came out.Maybe, I'll try that again, but I did specifically add an ActionEvent mask to get action events, and that should be all I need to get action events on buttons or menu items, and it wasn't getting them for either. It was only getting events on buttons when I used SwingEventMonitor, but not menu items.
    So I don't quite understand enough of the underlying event handling. Although, I suspect it could have something to do with the fact that these are Swing components, not AWT components (which their native peers) and it's pretty clear from AbstractButton (or was it DefaultButtonModel) how ActionEvents are fired, and they don't seem to have any connection to the code that deals with AWTListeners.
    My problem is that I kinda need a way to catch events without having a listener attached directly. Normally, I would have a listener, but there's this situation whereby an action may be triggered before I can get hold of the component to attach my listener to it. Perhaps I can get mouse press/release and just deal with it that way.
    Let me know if you did that and still didn't see what
    you were looking for. After playing with this, I am
    guessing the main reason for AWTListener is to
    register a listener for a specific type of event,
    instead of listening to them all, hence avoiding lots
    of extra overhead. Then again, the main event
    dispatcher must do a decent amount of work to fire off
    events to listeners of specific awt event types.Yes, it's definitely that. There's no point in sending events if no one is listening for it, so it does save some time.
    You are right, popup menus I think are dialogs, I
    don't know for sure, but you can access them via the
    JMenu.getPopupMenu() and JMenu.isPopupShowin().
    However, I am still not getting my test stuff working
    quite right.
    Yes, for menu popups. For a JPopupMenu on a right-click on any component (tree or whatever), I had a need to know about that from any arbitrary application (it's this GU testing app I'm working on), and since the popup menu doesn't belong to any component before it's shown, I couldn't necessarily know about it til it was displayed. I managed to use a combination of HierarchyEvents (using an AWTEventListener) and "component added" ContainerEvents. Not a simple matter, but it seems to work well.

  • How do you dispose a thread-handled modal dialog not thru some actions?

    The code almost looks like this:
    /* Thread that disposes the dialog when the time in seconds is "9" */
    class AboutThread extends Thread {
    private volatile Thread about;
    AboutDialog ad;
    AboutThread(AboutDialog ad) {
    this.ad = ad;
    public void stopped() {
    about = null;
    ad.dispose();
    ad = null;
    System.gc();
    public synchronized void run() {
    Thread thisThread = Thread.currentThread();
    about = thisThread;
    System.out.println("About thread is running!");
    ad.start();
    while (about == thisThread) {
    try {
    Thread.sleep(1000);
    } catch (InterruptedException ex) {
         System.err.println("Thread.sleep error: " + ex);
    String s = new String(getCurrentDateTime("s"));
    if (s.equals("9")) {
    ad.setVisible(false);
    ad.setModal(false);
    ad.setVisible(true);
    System.out.println(9);
    this.stop();
    /* Shows a dialog describing the User Log application */
    public class AboutDialog extends Dialog implements ActionListener {
    public AboutDialog(Frame parent, String title) {
         super(parent, title, false);
         Panel labelPanel = new Panel();
         labelPanel.setLayout(new BorderLayout());
         labelPanel.setBackground(Color.gray);
    JLabel jlab = new JLabel("User Log 1.0");
    jlab.setHorizontalAlignment(SwingConstants.CENTER);
    jlab.setFont(new Font("Monospaced", Font.BOLD, 28));
    JLabel jlab1 = new JLabel("Copyright(c) 2001 Soft Wares. All Rights Reserved.");
    jlab1.setHorizontalAlignment(SwingConstants.CENTER);
    labelPanel.add(jlab, "Center");
         labelPanel.add(jlab1, "South");
         add(labelPanel, "Center");
         Panel buttonPanel = new Panel();
    buttonPanel.setBackground(Color.gray);
         Button okButton = new Button("OK");
         okButton.addActionListener(this);
         buttonPanel.add(okButton);
         add(buttonPanel, "South");
         setSize(400, 130);
         setLocation(parent.getLocationOnScreen().x + 200,
              parent.getLocationOnScreen().y + 200);
    public void start() {
    show();
    public void actionPerformed(ActionEvent e) {
         setVisible(false);
         dispose();
    at.stopped();
    }

    ooops! i'm sorry. in the AboutDialog Class, it should be "super(parent, title, true)" for it to be modal.
    anyway, it seemed that posting the partial code above of the whole app is not so understandable.
    what i like to address here is that: how do i dispose or get rid of the thread-dispatched modal dialog by not making mouse clicks or any other user intervention? i wanted it to be disposed by the same thread, which dispatched it, when a certain variable value (global or local) is met. is this possible?

  • Modal dialog or alert is active when opening a doc.

    lately whenever I open an indesign CS4 existing document a tiny alert window pops up that is too small to read what it says. when trying to reopen the doc the message appears "Cannot handle the request because a modal dialog or alert is active"
    I am not doing anything besides opening a document. and the only way to get rid of the tiny alert window and open the doc is to hit return. any idea whats happening and how to stop this?

    There are no startup scripts, just the out of the box program.
    below is the error message. thanks
    Process:         QuarkXPress [7814]
    Path:            /Applications/QuarkXPress 7.01/QuarkXPress.app/Contents/MacOS/QuarkXPress
    Identifier:      com.quark.QuarkXPress
    Version:         7.5 (7.5)
    Code Type:       X86 (Native)
    Parent Process:  launchd [105]
    Date/Time:       2011-07-05 10:23:10.670 -0400
    OS Version:      Mac OS X 10.6.8 (10K540)
    Report Version:  6
    Interval Since Last Report:          225024 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  7 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      FE72441B-8ADF-4AF6-8D84-1357BEDC422D
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000003fffede8
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.quark.QuarkXPress         0x009fa90b IORegistryReaderX::itoa(long long, char*) + 85
    1   com.quark.QuarkXPress         0x009fac69 IORegistryReaderX::AppendToString(void const*, std::string&) + 201
    2   com.quark.QuarkXPress         0x009faf2d IORegistryReaderX::GetHwParameter(char const*, __CFString const*, std::string&) + 137
    3   com.quark.QuarkXPress         0x009c9eeb HardwareDetailsMacX::GetScsiIdeIdentifier(std::string&) + 53
    4   com.quark.QuarkXPress         0x0098212b HardwareDetailsBridge::GetScsiIdeIdentifier(std::string&) + 27
    5   com.quark.QuarkXPress         0x0097cbeb NodelockImpl::GetScsiIdeIdentifier(std::string&) + 27
    6   com.quark.QuarkXPress         0x009819f0 NodelockWrapper::GetScsiIdeIdentifier(std::string&) + 24
    7   com.quark.QuarkXPress         0x0097bc65 HardwareHash::GetScsiIdeIdentifierHash(std::string&) + 37
    8   com.quark.QuarkXPress         0x0097becd HardwareHash::GenerateSystemIdentifier(SystemIdentifier&) + 511
    9   com.quark.QuarkXPress         0x00932ed6 Activation::IsActivated(unsigned long*) + 464
    10  com.quark.QuarkXPress         0x0019fe53 ActivationManager::ActivateInit() + 163
    11  com.quark.QuarkXPress         0x0049f5d9 initialize() + 11017
    12  com.quark.QuarkXPress         0x0018bb1a main + 144
    13  com.quark.QuarkXPress         0x00002b4e _start + 216
    14  com.quark.QuarkXPress         0x00002a75 start + 41
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x91224382 kevent + 10
    1   libSystem.B.dylib             0x91224a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib             0x91223f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib             0x91223cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib             0x91223781 _pthread_wqthread + 390
    5   libSystem.B.dylib             0x912235c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x91223412 __workq_kernreturn + 10
    1   libSystem.B.dylib             0x912239a8 _pthread_wqthread + 941
    2   libSystem.B.dylib             0x912235c6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x80000000  ebx: 0x009fa8c4  ecx: 0x91253b93  edx: 0xbfffede8
      edi: 0xc82a14ff  esi: 0xfe896682  ebp: 0xbfffedb8  esp: 0xbfffed40
       ss: 0x00000023  efl: 0x00010286  eip: 0x009fa90b   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x3fffede8
    Binary Images:
        0x1000 -  0x14fbfcf +com.quark.QuarkXPress 7.5 (7.5) <xxxxxxxxx-xxxxxxx> /Applications/QuarkXPress 7.01/QuarkXPress.app/Contents/MacOS/QuarkXPress
    0x33a1000 -  0x33b0ff8 +libXUnicode.XC.r.dylib ??? (???) /Applications/QuarkXPress 7.01/libXUnicode.XC.r.dylib
    0x33c8000 -  0x33d706f +libQXString.XC.r.dylib ??? (???) /Applications/QuarkXPress 7.01/libQXString.XC.r.dylib
    0x33ee000 -  0x36c9fff +Xalan-c-xc ??? (???) /Library/Frameworks/Xalan-c-xc.framework/Versions/1.5/Xalan-c-xc
    0x3c07000 -  0x3e06fe6 +Xerces-c-xc ??? (???) /Library/Frameworks/Xerces-c-xc.framework/Versions/2.1/Xerces-c-xc
    0x3f9f000 -  0x3fcfff7 +libTrueTypeToType1.XC.r.dylib ??? (???) <xxxxxxxxxxxxx> /Applications/QuarkXPress 7.01/libTrueTypeToType1.XC.r.dylib
    0x43ec000 -  0x458aff3 +libOmniCore.XC.dylib ??? (???) <xxxxxxxxxx> /Applications/QuarkXPress 7.01/libOmniCore.XC.dylib
    0x4802000 -  0x5122fff +libicudata.dylib.32.0 32.0.0 (compatibility 32.0.0) /Applications/QuarkXPress 7.01/libicudata.dylib.32.0
    0x5125000 -  0x51e2fc3 +libicui18n.dylib.32.0 32.0.0 (compatibility 32.0.0) /Applications/QuarkXPress 7.01/libicui18n.dylib.32.0
    0x5277000 -  0x5306fef +libicuuc.dylib.32.0 32.0.0 (compatibility 32.0.0) /Applications/QuarkXPress 7.01/libicuuc.dylib.32.0
    0x6fcc000 -  0x6fdafe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <xxxxxxxxxx> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x185b6000 - 0x185b6ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <xxxxxxxxxx> /usr/lib/libmx.A.dylib
    0x186e2000 - 0x186f4ff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <xxxxxxxx> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x187a1000 - 0x187aeff7 +net.telestream.license 1.0.8.2-GC (1.0.8.2-GC) <xxxxxxxxxxxxx> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x187b7000 - 0x187bcfff  com.apple.AppleMPEG2Codec 1.0.2 (220.1) <xxxxxxxxxxx> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x1c296000 - 0x1c2ebfef  com.apple.AppleProResDecoder 2.0 (223) <xxxxxxxxxxxxxx> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProResDecoder
    0x1c4c2000 - 0x1c4fefe3  com.apple.QuickTimeFireWireDV.component 7.6.6 (1783) <xxxxxxxxxxxxxxxx> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTimeFireWireD V
    0x1c50a000 - 0x1c525fef  com.apple.AppleIntermediateCodec 1.3.2 (153) <xxxxxxxxxxxxx> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleIntermediateCodec
    0x1c52b000 - 0x1c544fe7  com.apple.applepixletvideo 1.2.19 (1.2d19) <xxxxxxxxxxxx> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixletVideo
    0x219a3000 - 0x21b95ff2 +net.telestream.wmv.import 2.3.8.1 (2.3.8.1) <2xxxxxxxxxxx> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x21bca000 - 0x21c7ffe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <xxxxxxxxxxxxxx> /usr/lib/libcrypto.0.9.7.dylib
    0x21cc5000 - 0x21e86fe2 +net.telestream.wmv.advanced 2.3.8.1 (2.3.8.1) <xxxxxxxxxxxxxxxx> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x21eca000 - 0x21f44fef  com.apple.AppleVAH264HW.component 2.0 (1.0) <xxxxxxxxxxxxxxxxxxxx> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <xxxxxxxxxxxxxxxxx> /usr/lib/dyld
    0x90003000 - 0x90130ffb  com.apple.MediaToolbox 0.484.52 (484.52) <xxxxxxxxxxxxxxx> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x90193000 - 0x9026dfff  com.apple.DesktopServices 1.5.11 (1.5.11) <xxxxxxxxxxxxxx> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x9061a000 - 0x90624ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <xxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x90625000 - 0x9062ffe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <xxxxxxxxxxxx> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x90a82000 - 0x90dedff7  com.apple.QuartzCore 1.6.3 (227.37) <xxxxxxxxxxxx> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90dee000 - 0x90e80fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <xxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x90f22000 - 0x90f29ff3  com.apple.print.framework.Print 6.1 (237.1) <xxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x90f2a000 - 0x91067fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <xxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x910a1000 - 0x910e3ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <xxxxxxxxxxxxxxxx> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x910f2000 - 0x910f9ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <xxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x910fa000 - 0x911fcfe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <xxxxxxxxxxxxxxxxx> /usr/lib/libcrypto.0.9.8.dylib
    0x911fd000 - 0x913a4ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <xxxxxxxxxxxxxxxxxxxxxxxxx> /usr/lib/libSystem.B.dylib
    0x913a5000 - 0x913a5ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <xxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x913a6000 - 0x913bbfff  com.apple.ImageCapture 6.1 (6.1) <xxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x913cf000 - 0x913dcff7  com.apple.NetFS 3.2.2 (3.2.2) <xxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x91416000 - 0x9141aff7  libGIF.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x9141b000 - 0x9147cfe7  com.apple.CoreText 151.10 (???) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x9147d000 - 0x9148bff7  com.apple.opengl 1.6.13 (1.6.13) <xxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9148c000 - 0x9148cff7  liblangid.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /usr/lib/liblangid.dylib
    0x91544000 - 0x915f2ff3  com.apple.ink.framework 1.3.3 (107) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x915f3000 - 0x915f6ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x915f7000 - 0x91634ff7  com.apple.CoreMedia 0.484.52 (484.52) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x916d2000 - 0x91938ff7  com.apple.security 6.1.2 (55002) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x919a8000 - 0x919aefe7  com.apple.CommerceCore 1.0 (9.1) <xxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x919af000 - 0x91e6aff7  com.apple.VideoToolbox 0.484.52 (484.52) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x91e97000 - 0x91fc5fe7  com.apple.CoreData 102.1 (251) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91fc6000 - 0x920a6fe7  com.apple.vImage 4.1 (4.1) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x92261000 - 0x922a4ff7  com.apple.NavigationServices 3.5.4 (182) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x92428000 - 0x924e0feb  libFontParser.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x9255b000 - 0x9255eff7  libCoreVMClient.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x9255f000 - 0x9255fff7  com.apple.vecLib 3.6 (vecLib 3.6) <xxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x92597000 - 0x9259afe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <xxxxxxxxxxxxxxxxxxxxxxxxxxx> /usr/lib/system/libmathCommon.A.dylib
    0x9259b000 - 0x9259dff7  com.apple.securityhi 4.0 (36638) <xxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x9279e000 - 0x92839fe7  com.apple.ApplicationServices.ATS 275.16 (???) <xxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x9283a000 - 0x9292eff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /usr/lib/libiconv.2.dylib
    0x9292f000 - 0x929affeb  com.apple.SearchKit 1.3.0 (1.3.0) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x929b0000 - 0x92b32fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /usr/lib/libicucore.A.dylib
    0x92b33000 - 0x92b3eff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <xxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x92b4d000 - 0x92c4efe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /usr/lib/libxml2.2.dylib
    0x92cff000 - 0x92dcafef  com.apple.CoreServices.OSServices 359 (359) <xxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x92e3b000 - 0x92e3bff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <xxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92e3c000 - 0x92e50ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <xxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x92f7d000 - 0x935f8ff7  com.apple.CoreAUC 6.11.03 (6.11.03) <xxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x936f6000 - 0x93716fe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <xxxxxxxxxxxxxxxxxxxxxxxxxxxx> /usr/lib/libresolv.9.dylib
    0x93717000 - 0x93717ff7  com.apple.ApplicationServices 38 (38) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x93718000 - 0x93723ff7  libGL.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93724000 - 0x937c1fe3  com.apple.LaunchServices 362.3 (362.3) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x937c2000 - 0x937d2ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /usr/lib/libsasl2.2.dylib
    0x9382e000 - 0x938c6fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <xxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93910000 - 0x93951ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <xxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x93952000 - 0x93954ff7  com.apple.QuickTimeH264.component 7.6.6 (1783) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x93974000 - 0x93c98fef  com.apple.HIToolbox 1.6.5 (???) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x93c99000 - 0x93caaff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x93edd000 - 0x93fe9ff7  libGLProgrammability.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x94148000 - 0x94167ff7  com.apple.CoreVideo 1.6.2 (45.6) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x941e6000 - 0x9424afff  com.apple.htmlrendering 72 (1.1.4) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x9424b000 - 0x9427cff7  libGLImage.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x9427d000 - 0x942b8feb  libFontRegistry.dylib ??? (???) <xxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x942b9000 - 0x942bbff7  libRadiance.dylib ??? (???) <xxx-xxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x9433a000 - 0x94397ff7  com.apple.framework.IOKit 2.0 (???) <xxxxxxxxxxxxxxxxx> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x943bc000 - 0x943c1ff7  com.apple.OpenDirectory 10.6 (10.6) <xxxxxxxxxxxxxxxxx> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x943c2000 - 0x946e2ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <xxxxxxxxxxxxxxxx> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x946e3000 - 0x946e3ff7  com.apple.Cocoa 6.6 (???) <xxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9484d000 - 0x94865ff7  com.apple.CFOpenDirectory 10.6 (10.6) <xxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x94866000 - 0x948a9ff7  libGLU.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x948aa000 - 0x948ceff7  libJPEG.dylib ??? (???) <xxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x948ef000 - 0x9499cfe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <xxxxxxxxxxxxxxxxxxx> /usr/lib/libobjc.A.dylib
    0x949b6000 - 0x94a31fff  com.apple.AppleVAFramework 4.10.26 (4.10.26) <xxxxxxxxxxxxxxxxxxxxxx> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x94a32000 - 0x94a36ff7  IOSurface ??? (???) <xxxxxxxxxxxxx> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x94ae8000 - 0x94c63fe7  com.apple.CoreFoundation 6.6.5 (550.43) <xxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94d7c000 - 0x94debff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <xxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x94dec000 - 0x94e0dfe7  com.apple.opencl 12.3.6 (12.3.6) <xxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x94e0e000 - 0x94e0fff7  com.apple.TrustEvaluationAgent 1.1 (1) <xxxxxxxxxxxxxxxxxxxxxx> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x94e10000 - 0x9510afef  com.apple.QuickTime 7.6.6 (1783) <xxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9510b000 - 0x95117ff7  libkxld.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxxxx> /usr/lib/system/libkxld.dylib
    0x95118000 - 0x959fbff7  com.apple.AppKit 6.6.8 (1038.36) <xxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95a15000 - 0x95bd7feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <xxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x95cfc000 - 0x95d2fff7  com.apple.AE 496.5 (496.5) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x95f8c000 - 0x95fa8fe3  com.apple.openscripting 1.3.1 (???) <xxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x95fb1000 - 0x95ff7ff7  libauto.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxxxxxxx> /usr/lib/libauto.dylib
    0x96023000 - 0x9603eff7  libPng.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x96052000 - 0x9609ffeb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <xxxxxxxxxxxxxxxxxxxxxxx> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
    0x96203000 - 0x96203ff7  com.apple.CoreServices 44 (44) <xxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96204000 - 0x9622affb  com.apple.DictionaryServices 1.1.2 (1.1.2) <xxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x9622b000 - 0x9623ffe7  libbsm.0.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxx> /usr/lib/libbsm.0.dylib
    0x96450000 - 0x96885ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <xxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x96886000 - 0x96c9cff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <xxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x96c9d000 - 0x96ce1ff3  com.apple.coreui 2 (114) <xxxxxxxxxxxxxxxxxxx> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x96d15000 - 0x96d68ff7  com.apple.HIServices 1.8.3 (???) <xxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x96d6c000 - 0x96db5fe7  libTIFF.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x96db6000 - 0x96ddeff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <xxxxxxxxxxxxxxxxxxxxxx> /usr/lib/libxslt.1.dylib
    0x96ddf000 - 0x96ebdfef  com.apple.QuickTimeMPEG4.component 7.6.6 (1783) <xxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG4
    0x96ef8000 - 0x96fb4fff  com.apple.ColorSync 4.6.6 (4.6.6) <xxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x96fb5000 - 0x977a4557  com.apple.CoreGraphics 1.545.0 (???) <xxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x977f7000 - 0x97a68fef  com.apple.Foundation 6.6.7 (751.62) <xxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x97ae3000 - 0x97b8bffb  com.apple.QD 3.36 (???) <xxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x97b8c000 - 0x97b8dff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <xxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97be7000 - 0x97c24ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <xxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x97c25000 - 0x97c29ff7  libGFXShared.dylib ??? (???) <xxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x9867e000 - 0x9885cfe3  libType1Scaler.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
    0x9885d000 - 0x997afff7  com.apple.QuickTimeComponents.component 7.6.6 (1783) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponent s
    0x997b0000 - 0x997d2fef  com.apple.DirectoryService.Framework 3.6 (621.11) <xxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x997d3000 - 0x997d3ff7  com.apple.Carbon 150 (152) <xxxxxxxxxxxxxxxx> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x997d4000 - 0x997e2fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <xxxxxxxxxxxxxxxxxxxxxxx> /usr/lib/libz.1.dylib
    0x99b1d000 - 0x99b9fffb  SecurityFoundation ??? (???) <xxxxxxxxxxxxxxxxx> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x99ba0000 - 0x99be4fe7  com.apple.Metadata 10.6.3 (507.15) <xxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x99be5000 - 0x99bf7ff7  com.apple.CoreMediaAuthoring 0.706 (706) <xxxxxxxxxxxxxxxxxxxxxx> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x99c08000 - 0x99c42ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <xxxxxxxxxxxxxxxxxxxxx> /usr/lib/libcups.2.dylib
    0x99cd1000 - 0x99d3bfe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <xxxxxxxxxxxxxxxxxxxxxxxxx> /usr/lib/libstdc++.6.dylib
    0x99d3c000 - 0x99df5fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <xxxxxxxxxxxxxxxx> /usr/lib/libsqlite3.dylib
    0x99e2b000 - 0x99e5efff  libTrueTypeScaler.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x99e5f000 - 0x99ed9fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <xxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x99eda000 - 0x99ee0fff  com.apple.CommonPanels 1.2.4 (91) <xxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x99ee1000 - 0x99f31ff7  com.apple.framework.familycontrols 2.0.2 (2020) <xxxxxxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x99f32000 - 0x99f35ffb  com.apple.help 1.3.2 (41.1) <xxxxxxxxxxxxxxxxxxxxxx> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x99f41000 - 0x99f4aff7  com.apple.DiskArbitration 2.3.1 (2.3.1) <xxxxxxxxxxxxxxxxx> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x99f8f000 - 0x99fa1ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <xxxxxxxxxxxxxxxxxxxxxxxxx> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x99fa2000 - 0x9a04efe7  com.apple.CFNetwork 454.12.4 (454.12.4) <xxxxxxxxxxxxxxx> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0xba300000 - 0xba301fe7  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <xxxxxxxxxxxxxxxx> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0xba500000 - 0xba501ff7  libGreekConverter.dylib 49.0.0 (compatibility 1.0.0) <xxxxxxxxxxxxxxxxx> /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0xba900000 - 0xba916ff7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <xxxxxxxxxxxxxxx> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <xxxxxxxxxxxxxx> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xbb500000 - 0xbb500ff7  libThaiConverter.dylib 49.0.0 (compatibility 1.0.0) <xxxxxxxxxxxxxxxxxxxx> /System/Library/CoreServices/Encodings/libThaiConverter.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <xxxxxxxxxxxxxxxxxxxxxx> /usr/lib/libSystem.B.dylib
    Model: iMac12,2, BootROM IM121.0047.B0A, 4 processors, Intel Core i7, 3.4 GHz, 8 GB, SMC 1.72f1
    Graphics: AMD Radeon HD 6970M, AMD Radeon HD 6970M, PCIe, 1024 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.35.3
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: xxxxxxxxxxxxxx, 931.51 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H, 4.2 GB
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x850b, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0xfa111000 / 5
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Apple Optical USB Mouse, 0x05ac  (Apple Inc.), 0x0304, 0xfd140000 / 5
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 3
    FireWire Device: unknown_device, Unknown
    FireWire Device: OXFORD IDE Device 1, G-Tech G-DRIVE, Up to 400 Mb/sec

  • Cannot handle the request because a modal dialog or alert is active in indesign CS6, C#

    Hello,
    I'm having bunch of indesign CS6 files. I have written piece of code in C# which opens indesign files & exports those files to xml & pdf. If I run the exe, it works properly. But when I schedule it via task scheduler (runs at point of time without
    human intervention), it throws an error "Cannot handle the request because a modal dialog or alert is active" which results in failure of my process. This error keeps me annoying. So how to over come this error?
    Any help would be grateful. Thanks in advance.

    Hello,
    Thank you for your post.
    But your issue is out of support range of VS General Question forum which mainly discusses the usage issue of Visual Studio IDE such as
    WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    Because your issue is involved to InDesign CS6 which is third-party, we don’t support it, so I will move it to Off-topic forum.
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Safety stock and Reorder point calculation in inventory planning

    Hi, How System does  the calculation of own safety stock, and Reorder point, maximum safety stock level at parent and child location while running inventory planning services in SAP APO SPP. does anyone about the calculation  please let me know Regar

  • BT Openzone/Fon

    I am using the iPhone app to try to get mobile wifi and the hotspot finder says there are about 10 hotspots within about 200m of my location but my phone isn't picking any of them up - I have never yet been able to get mobile BT except at home where

  • Mountain Lion: problem with Time Machine directories and spotlight indexing

    I'm using a fresh install of 10.8 Mountain Lion on a 2011 MBP.  It's a work laptop with many ASCII files containing numerical data (floating point numbers), with varying file extensions.  Some of the files are multi-gig, some are only a few hundred K

  • Idoc to File. Partner type as 'KU' and 'LI'.. Acheivable w/o using Party's?

    Hi all, Idoc to File scenario. I have the receiver partner type as 'KU' and sender partner type as 'LI'. I want to create the scenario without using party for these partner Types. Is it possible for me to create the B2B scenario without using party's

  • Rotation doesn't preview in CC

    Hi All, I cant seem to get the rotate CSS transform to preview in DreamWeaver. It shows in IE11 but not many browsers seem to support rotate yet. cheers Roen