SImple use crashes GB.

Sorry if this seems dumb, but I don't work in GB often...it's usually Digital Performer.
Tried to record two tracks simultaneously, last night; audio track from my MOTU 896 and an internal sound track from GB. Fatar controller, with Kurzweil sound module outputs going into the 896, and the MIDI out from the setup, going into a MOTU MIDI/USB converter, into the MDD G4, and recording an internal sound ('Aquatic Sunbeam', if you're interested). I could record, but when I'd RTZ to try and play back, I get the beach ball. Every single time.
Did the usual permission routine. I have almost 2G RAM in the machine. OS 10.3.9 (no, I'm not going to go to Tiger on this machine...I have too much stuff on it that's Panther-oriented, and it runs really smoothly, current topic notwithstanding.)
Not ever having tried this before--I usually only record one track at a time, and I'm good with it--I'm wondering if there's a setting somewhere that I've overlooked or munged up, somehow?

Most users of iCal have no problems. If you are not syncing or communicating with other devices you won't have those problems. Stick with iCal.
AK

Similar Messages

  • Find and Replace simple action crashes Illustrator CC

    I am now trying Creative Cloud and I came with this bug. When I use a simple action to find and replace a text string in my file it will crash the Illustrator.
    My actions is pretty simple:
    Find > "aa" (I do have to check all the options to work)
    Find and Replace > "aa" to "2014.01.29"
    This action works well if I use it once by the Edit menu, but if I close the Illustrator and reopen, it'll not work again and will crash the software.
    Everyday I do update my action to actual date, so the action will work normally but sometimes I do have to close the app and I have to make the action again and again everytime.
    This was a problem already in CS5, last version that I used.
    I'm using Windows 8.

    Msot likely this isthe problem of the action playing back to fast.
    Actions Flyout >> playback options > set to altast 1 second
    You will need to change this setting each time you resart illustrator

  • Very simple spreadsheet crashes Numbers?

    Hi,
    This very simple spreadsheet entered on the Mac version of Numbers onto iCloud, crashes Numbers on my iPad. Can somebody confirm that this is indeed an issue with Numbers, and not some quirk in my configuration?
    Any suggestion to work that issue around?
    Needless to say, this spreadsheet is an extreme reduction of a complex spreadsheet that does significant statistical data analysis on biochemistry experimental data coming from a spectrophotometer. That spreadsheet works beautifully on the Mac, and I would like to have it run on the iPad, for use in the lab.
    The crash comes from this formula in the "Keep" columns:
    =IF (NOT(Outlier '2'),y '2', "")
    The slightly simpler formula without the "else" value crashes number too:
    =IF (NOT(Outlier '2'),y '2')
    Removing the "Keep" column altogether prevents Number from crashing...
    Thanks a million

    For the sake of it, I recreated that spreadsheet on the iPad directly, and of course, it doesn't crash...

  • Why does this impossibly simple CIN crash?

    I've been struggling for a few days trying to get this other CIN of mine to work. I decided to give up for now, start from scratch, and see why nothing's working. I created the attached VI and C File, and gave it a try.
    I'm using LabVIEW 7.0 on Windows 2000, compiling with Visual C++ .NET 2003. I don't think I could be more up to date. I'm certain the compiler environment is set up correctly.
    The CIN really couldn't be more simple unless I deleted the single line of code (besides the re
    turn line). All it does is take an input string, and change the first character to an 'A'. But it crashes every time with the following error:
    The instruction at "0x10011265" referenced memory at "0x0000000a". The memory could not be "written".
    I get this error (or one very similar) whenever I try to access any part of a LabVIEW data type (specifically interacting with struct members or using any of the Handle functions). This makes it imposible to return any information to LabVIEW so I'm kind of at a loss. I need to write a few CINs for a program I'm working on, but if I can't return anything they're useless. Will someone PLEASE tell me what's wrong with my configuration. Is there some windows setting I need to fix? Something in LabVIEW? The compiler? I need help badly!
    Attachments:
    Test.vi ‏47 KB
    stringtest.c ‏1 KB

    If you click my link to my other CIN forum post, there's an answer there that solves this problem.
    My reply:
    'I tested it again, and LV 7.0 DEFINATELY generated function headers with pointer parameters. However, on a different computer in my office, we have 6.1i installed, and we tested it there, and it did not generate a header with pointers. This leads me to believe that this is a bug with 7.0, and it should be addressed immediately.'

  • BUG in SelectBooleanCheckBox component binding Simple Use Case

    I have a table called Customer have four fields. Id, Name, Gender, Regular.
    The sample data is
    --- 23, Mark, M, Y
    --- 26, Fiona, F, N
    I want to show an updatable form to the end user for the same using ADF. The UI components for Name, Gender are OutputText and Regular is SelectBooleanCheckbox (Y is checked and N is unchecked)
    I do the following steps
    a) Create an Entity Object
    b) Create a View Object and add YesNoLOVaccessor to the View object as per this post for SelectBooleanCheckBox
    http://theo.vanarem.nl/2010/07/07/adf-checkbox-representing-a-yes-or-no-value/
    c) Test the same using Business component tester, the model for Customer query shows up with Regular as a checkbox. Browsing through the data gives correct data for checkbox in BC tester.All good till this stage
    d) Next I drag the Customer Viewobject instance in the data control to the JSPX page and add as ADF form including navigation controls. I use the Next control to browse
    First record shows up as 23, Mark, M, Y and then click next to go to next record it shows up as 26, Fiona, F, Y instead of 26, Fiona, F, N
    Oracle please confirm if this is a bug or I am missing something here
    Thanks
    Edited by: user5108636 on Jan 10, 2011 4:43 PM
    Edited by: user5108636 on Jan 10, 2011 4:45 PM
    Edited by: user5108636 on Jan 10, 2011 4:46 PM
    Edited by: user5108636 on Jan 10, 2011 4:46 PM

    Thanks I resolved it now, I am not complaining but the lack of use cases on internet for simple things does make things difficult and frustrating. I modified the ViewRowImpl java file to convert the 'Y' value as true and 'N' value as false as below.
    public String getCheck() {
    //return (String)getAttributeInternal(CHECK);
    String value = (String)getAttributeInternal(CHECK);
    String returnValue = null;
    if ("Y".equals(value))
    returnValue = "true";
    else
    returnValue = "false";
    return returnValue;
    public void setCheck(String value) {
    //setAttributeInternal(CHECK, value);
    String dbValue = null;
    if ("true".equals(value))
    dbValue = "Y";
    else
    dbValue = "N";
    setAttributeInternal(CHECK, dbValue);
    However as per best practice can I have a helper method to do the conversion. I use this checkbox code for around eighty checkboxes. What's the best practice.
    Thanks

  • Simple use of variables in query

    Hi,
    i've just started using PL/SQL and as a long time user of TSQL the syntax is a bit confusing for me. I'm trying to test a simple query - using a variable to select some rows from a table. Lest assume that we have a table with data from different days and we want to view data from specific day.
    I could use:
    SELECT * FROM TABLE
    where TRADE_DATE = '2010-10-23'
    but what i would like to do is to pass the date value as a variable, in TSQL i'd just write:
    declare @trade_date datetime
    set @trade_date = '2010-10-23'
    SELECT * FROM TABLE
    where TRADE_DATE = @trade_date
    Could someone help me and write the last query using PL/SQL syntax?
    Also - it there some kind of a tutorial for people like me? comparison of simple queries written in both languages? tried to google it but didn't have luck.

    There are a couple of differences besides variable syntax. The variable would look like this in PL/SQL:
    declare
        v_trade_date date := DATE '2010-10-23';
    begin
        select * into ?????  -- see below
        from   table
        where  trade_date = v_trade_date;
    end;However the next difference is that PL/SQL does not implicitly return result sets to the client application, so you either have to select <b>into</b> a PL/SQL variable, or process the values in a loop, or explicitly return a ref cursor (or just do the processing in SQL statements within the procedure, without returning anything). I don't know much about T-SQL but I have the impression that in Oracle there is a stronger distinction between SQL (the interpreted query language) and PL/SQL (the compiled programming language) than the equivalents in SQL Server. Saubhik's example above is not PL/SQL (which you asked about) but plain SQL.
    Using the example of SQL*Plus, you might use a ref cursor like this:
    var r refcursor;
    declare
        v_trade_date date := DATE '2010-10-23';
    begin
        open :r for
        select *
        from   test_table
        where  trade_date = v_trade_date;
    end;
    print :ror
    var r refcursor;
    create or replace procedure p (p_out_results out sys_refcursor)
    as
        v_trade_date date := DATE '2010-10-23';
    begin
        open p_out_results for
        select *
        from   test_table
        where  trade_date = v_trade_date;
    end p;
    set autoprint on
    exec p(:r)Edited by: William Robertson on Oct 24, 2010 5:31 PM

  • Simple use of iCal

    I have 3 questions. I assume you want 3 separate posts. For reference, the other 2 subjects are: "Can't add eventl" and "Color coding etc."
    In searching for answers it appears most of the questions regard synch and communication of iCal between multiple devices. The possibilities seem to be quite complex. Is there a better calendar to use for basic, one computer, simple calendar use? All I want to do is keep track of appointments and print a page to post on the fridge.
    Sorry to be so ancient sounding but there are still a few of us living in the 20th century.
    Thanks
    Geoff

    Most users of iCal have no problems. If you are not syncing or communicating with other devices you won't have those problems. Stick with iCal.
    AK

  • Simple use of subpanels?

    I've almost given up on finding a simple way to use subpanels.  What I want is very simple--to have the FPs of a few VIs on tabs within a single main FP in order to reduce the clutter.  But what I'm finding is that apparently I'm not supposed to use the VI icons and their connector panes on the BD if I use subpanels.  The necessary overhead is fairly intimidating:
    1. This entire thread
    2. Message 18 of this thread
    3. This entire thread (brace yourself)
    I tried in a simple example (attached) to just use the connector panes, but I'm guessing it's incorrect (at least theoretically), because nobody seems to do it.  Moreover, if I try the same thing with my real VIs, the entire thing hangs when I press buttons in VIs that are not running.  Should I abandon this approach or can it work?
    Am I missing something, or is it really non-trivial to use subpanels?  It would be a shame if such a simple need can only be met with advanced concepts. 
    Thanks!
    Attachments:
    main VI.vi ‏8 KB
    subVI 1.vi ‏22 KB
    subVI 2.vi ‏22 KB

    Hi Bracker,
    I've not used Sub Panels before, but I just had a play around with building an application reference and wiring that into the Sub Panel and this seems to produce a working Sub Panel. My VI will work if you reference an application within the same folder directory. Is this what you wanted?
    Please download the attached VI to see the implementation (The snippet above is a little unclear). Hope this helps.
    Alex Thomas, University of Manchester School of EEE LabVIEW Ambassador (CLAD)
    Attachments:
    Subpanel.vi ‏8 KB

  • IBook G4 blinks out when screen moved; use crash logs to diagnose?

    My iBook G4 (bought 1.5 years ago) blinks out when the screen's position is even slightly adjusted. Sometimes it doesn't care to wake from sleep, either.
    Would it be possible to figure out what's going wrong by examining the console logs?
    Thanks - if this is the time for a repair, I'm hoping the computer itself can tell me the problem.
    Greg

    It sounds like you may have two different problems. Waking from sleep and shutting down because of movement are probably not related. However, I would recommend you have an Apple Authorized Service Provider check out your iBook out for the crashing problem first. That could be a hardware problem. Once that's been eliminated, then you could start troubleshooting your wake from sleep problems.
    The logs might be much better at determining a software problem, since you can see what command or software might have been causing trouble. If your iBook shuts down because of a hardware problem, that kind of trouble isn't really being tracked by the logs. Only the operating system & software functions are.
    -Doug

  • THIS IS THE WORSE PROGRAM I HAVE EVER USED,,,,, CRASHED MY PC AND WONT UNINSTAL... NOW I HAVE TO DO A SYSTEM RESTORE. DONT DOWNLOAD

    CRAP DONT USE.... HAS BUGS

    I had to wipe my computer clean and I had backed up my I tunes on an external hard drive, but I also had all my music on my Ipod.  Now that I reinstalled Itunes, it can't locate all my music that I have on my ipod.  Did you find a way to do this?  Please help if you have a solution.
    Thanks

  • Reading something simple using 60870.5

    I'm new to IEC 60870.5.  I need to read data using this protocol.
    I have the IP Address of the machine that has access to the data.  I guess that is called the Master (?). I was given a document with a bunch of "104 Addresses".  I'm guessing those are "IOA"s (?). The same document I mentioned has a couple of other numbers that seem to apply to several of the "104 Addresses".  They are labeled "Nr." and "Number".  I'm guessing those are "ASDUs" (?).  Unfortunately I don't have much access to the folks who actually put that doc together.
    One of those 104 Addresses is for a measurement labeled "AC voltage". I believe the value is simply a DBL. To read it I built a VI (snippet attached), except I don't know what to insert where the Question Mark is.  Can someone suggest what goes there?  I tried using the "Read Parameter.vi" function but that generated error -355269 stating "NI-Industrial Communications for IEC 60870-5:  This type of points does not have parameters."
    I tried following the examples, but I got confused. Probably just me!
    Thanks in advance for any help!

    Hi AkashSharma,
    Indeed the VI examples are a much better starter than making it on your own when you are not very familiar with the protocol.
    There is no "Read Sing Point".
    The NI IEC 60870-5 toolkit only has the controlled station part of functions. A controlled station (or server, slave) writes data to the Controlling station (or client, master). The controlling station gives commands to the controlled station, and monitors for points on them.
    Check out the Commands VI palette, and you'd find Read Command.vi.
    The Single means point type. Check out the VI context help and detailed help for a list of point type definitions.

  • Simple Use Bean ,,,..

    Hi ....
    Okay ...my web page actually got 2 radio button and 2 use bean .
    Each radio button got it own " on click "so when i click on first radio ,i want to invoke the first use bean and second radio button to invoke the second button .
    Is that anyway i can do it ..please reply.

    In order to achieve this you have to submit the form that includes your radio button to the same page.
    samepage.jsp
    <%
    if(btn1.equals("btn name"){
    //first use bean tag}
    else{
    //second use bean tag}
    %>
    <form method="post" action="samepage.jsp" name="radioTest">
    <input type="radio" name="radio1" onclick="document.radioTest.submit()">
    <input type="radio" name="radio2" onclick="document.radioTest.submit()">
    </form>

  • Qt simple example crash-on-exit

    It's my first time toying with Qt, so please consider not being too harsh on my mistakes.
    I wrote this piece of code just to figure out how the build mechanisms worked:
    #include <QtGui>
    int main(int argv, char **args)
    QApplication app(argv, args);
    QVBoxLayout layout;
    QWidget window;
    window.setLayout(&layout);
    window.show();
    return app.exec();
    Saved as app.cpp in qttest2 directory in my home.
    The I issued:
    qmake -project; qmake; make
    All went OK, then, testing the app, I got this backtrace on console:
    $ ./qttest2
    *** glibc detected *** ./qttest2: free(): invalid pointer: 0xaf871774 ***
    ======= Backtrace: =========
    /lib/libc.so.6(+0x6c301)[0xa6c0d301]
    /lib/libc.so.6(+0x6dc4b)[0xa6c0ec4b]
    /lib/libc.so.6(cfree+0x6d)[0xa6c11dfd]
    /usr/lib/libstdc++.so.6(_ZdlPv+0x21)[0xa6db7281]
    /usr/lib/libQtGui.so.4(_ZN11QVBoxLayoutD0Ev+0x2a)[0xa6f3348a]
    /usr/lib/libQtGui.so.4(_ZN7QWidgetD2Ev+0x153)[0xa6f772c3]
    ./qttest2[0x8048844]
    /lib/libc.so.6(__libc_start_main+0xe6)[0xa6bb7c76]
    ./qttest2[0x8048711]
    ======= Memory map: ========
    08048000-08049000 r-xp 00000000 08:04 655619 /home/luca/lavori/qttest2/qttest2
    08049000-0804a000 rw-p 00000000 08:04 655619 /home/luca/lavori/qttest2/qttest2
    09bb0000-09cad000 rw-p 00000000 00:00 0 [heap]
    a4e00000-a4e21000 rw-p 00000000 00:00 0
    a4e21000-a4f00000 ---p 00000000 00:00 0
    a4fe3000-a4fed000 r-xp 00000000 08:04 1623 /lib/libnss_files-2.12.1.so
    a4fed000-a4fee000 r--p 00009000 08:04 1623 /lib/libnss_files-2.12.1.so
    a4fee000-a4fef000 rw-p 0000a000 08:04 1623 /lib/libnss_files-2.12.1.so
    a4fef000-a4ffc000 r-xp 00000000 08:04 7447 /usr/lib/liboxygenstyle.so.4.5.0
    a4ffc000-a4ffd000 rw-p 0000d000 08:04 7447 /usr/lib/liboxygenstyle.so.4.5.0
    a4ffd000-a5086000 r-xp 00000000 08:04 52943 /usr/lib/kde4/plugins/styles/oxygen.so
    a5086000-a508a000 rw-p 00088000 08:04 52943 /usr/lib/kde4/plugins/styles/oxygen.so
    a508a000-a50c5000 r-xp 00000000 08:04 5654 /usr/lib/libdbus-1.so.3.5.3
    a50c5000-a50c6000 r--p 0003b000 08:04 5654 /usr/lib/libdbus-1.so.3.5.3
    a50c6000-a50c7000 rw-p 0003c000 08:04 5654 /usr/lib/libdbus-1.so.3.5.3
    a50c7000-a522a000 r-xp 00000000 08:04 84087 /usr/lib/libcrypto.so.1.0.0
    a522a000-a523e000 rw-p 00162000 08:04 84087 /usr/lib/libcrypto.so.1.0.0
    a523e000-a5241000 rw-p 00000000 00:00 0
    a5241000-a528e000 r-xp 00000000 08:04 82299 /usr/lib/libssl.so.1.0.0
    a528e000-a5292000 rw-p 0004d000 08:04 82299 /usr/lib/libssl.so.1.0.0
    a5292000-a53b3000 r-xp 00000000 08:04 230 /usr/lib/libxml2.so.2.7.8
    a53b3000-a53b8000 rw-p 00121000 08:04 230 /usr/lib/libxml2.so.2.7.8
    a53b8000-a53b9000 rw-p 00000000 00:00 0
    a53b9000-a53f3000 r-xp 00000000 08:04 51628 /usr/lib/libstreams.so.0.7.2
    a53f3000-a53f4000 rw-p 0003a000 08:04 51628 /usr/lib/libstreams.so.0.7.2
    a53f4000-a5448000 r-xp 00000000 08:04 6145 /usr/lib/libsopranoclient.so.1.2.0
    a5448000-a544a000 rw-p 00053000 08:04 6145 /usr/lib/libsopranoclient.so.1.2.0
    a544a000-a5584000 r-xp 00000000 08:04 6136 /usr/lib/libsoprano.so.4.3.0
    a5584000-a5588000 rw-p 00139000 08:04 6136 /usr/lib/libsoprano.so.4.3.0
    a5588000-a55a8000 r-xp 00000000 08:04 16734 /usr/lib/liblzma.so.5.0.0
    a55a8000-a55a9000 rw-p 00020000 08:04 16734 /usr/lib/liblzma.so.5.0.0
    a55a9000-a55b8000 r-xp 00000000 08:04 1949 /lib/libbz2.so.1.0.6
    a55b8000-a55b9000 rw-p 0000f000 08:04 1949 /lib/libbz2.so.1.0.6
    a55b9000-a55bd000 r-xp 00000000 08:04 19382 /usr/lib/libXtst.so.6.1.0
    a55bd000-a55be000 rw-p 00003000 08:04 19382 /usr/lib/libXtst.so.6.1.0
    a55be000-a55eb000 r-xp 00000000 08:04 38896 /usr/lib/libdbusmenu-qt.so.2.3.6
    a55eb000-a55ec000 rw-p 0002d000 08:04 38896 /usr/lib/libdbusmenu-qt.so.2.3.6
    a55ec000-a5664000 r-xp 00000000 08:04 10896 /usr/lib/libQtDBus.so.4.7.1
    a5664000-a5665000 rw-p 00078000 08:04 10896 /usr/lib/libQtDBus.so.4.7.1
    a5665000-a56b7000 r-xp 00000000 08:04 14090 /usr/lib/libQtSvg.so.4.7.1
    a56b7000-a56b9000 rw-p 00051000 08:04 14090 /usr/lib/libQtSvg.so.4.7.1
    a56b9000-a56bd000 r-xp 00000000 08:04 2803 /lib/libattr.so.1.1.0
    a56bd000-a56be000 rw-p 00003000 08:04 2803 /lib/libattr.so.1.1.0
    a56be000-a56c4000 r-xp 00000000 08:04 2751 /lib/libacl.so.1.1.0
    a56c4000-a56c5000 rw-p 00005000 08:04 2751 /lib/libacl.so.1.1.0
    a56c5000-a5703000 r-xp 00000000 08:04 14109 /usr/lib/libQtXml.so.4.7.1
    a5703000-a5705000 rw-p 0003d000 08:04 14109 /usr/lib/libQtXml.so.4.7.1
    a5705000-a5816000 r-xp 00000000 08:04 14177 /usr/lib/libQtNetwork.so.4.7.1
    a5816000-a581a000 rw-p 00110000 08:04 14177 /usr/lib/libQtNetwork.so.4.7.1
    a581a000-a588a000 r-xp 00000000 08:04 23679 /usr/lib/libsolid.so.4.5.0
    a588a000-a5892000 rw-p 00070000 08:04 23679 /usr/lib/libsolid.so.4.5.0
    a5892000-a5915000 r-xp 00000000 08:04 51631 /usr/lib/libstreamanalyzer.so.0.7.2
    a5915000-a5917000 rw-p 00083000 08:04 51631 /usr/lib/libstreamanalyzer.so.0.7.2
    a5917000-a599c000 r-xp 00000000 08:04 23700 /usr/lib/libnepomuk.so.4.5.0
    a599c000-a599e000 rw-p 00085000 08:04 23700 /usr/lib/libnepomuk.so.4.5.0
    a599e000-a5bf3000 r-xp 00000000 08:04 23653 /usr/lib/libkdecore.so.5.5.0
    a5bf3000-a5bff000 rw-p 00255000 08:04 23653 /usr/lib/libkdecore.so.5.5.0
    a5bff000-a5f6f000 r-xp 00000000 08:04 23868 /usr/lib/libkdeui.so.5.5.0
    a5f6f000-a5f89000 rw-p 0036f000 08:04 23868 /usr/lib/libkdeui.so.5.5.0
    a5f89000-a5f8a000 rw-p 00000000 00:00 0
    a5f8a000-a61ca000 r-xp 00000000 08:04 27426 /usr/lib/libkio.so.5.5.0
    a61ca000-a61d6000 rw-p 0023f000 08:04 27426 /usr/lib/libkio.so.5.5.0
    a61d6000-a61d7000 rw-p 00000000 00:00 0
    a61fe000-a61ff000 rw-s 00000000 00:04 41975925 /SYSV00000000 (deleted)
    a61ff000-a6207000 r-xp 00000000 08:04 52944 /usr/lib/kde4/plugins/gui_platform/libkde.so
    a6207000-a6208000 rw-p 00007000 08:04 52944 /usr/lib/kde4/plugins/gui_platform/libkde.so
    a6208000-a620e000 r-xp 00000000 08:04 20298 /usr/lib/libXrandr.so.2.2.0
    a620e000-a620f000 rw-p 00005000 08:04 20298 /usr/lib/libXrandr.so.2.2.0
    a6210000-a621c000 r-xp 00000000 08:04 19339 /usr/lib/libXi.so.6.1.0
    a621c000-a621d000 rw-p 0000b000 08:04 19339 /usr/lib/libXi.so.6.1.0
    a621d000-a621f000 r-xp 00000000 08:04 19347 /usr/lib/libXinerama.so.1.0.0
    a621f000-a6220000 rw-p 00001000 08:04 19347 /usr/lib/libXinerama.so.1.0.0
    a6220000-a6228000 r-xp 00000000 08:04 21810 /usr/lib/libXcursor.so.1.0.2
    a6228000-a6229000 rw-p 00007000 08:04 21810 /usr/lib/libXcursor.so.1.0.2
    a6229000-a622d000 r-xp 00000000 08:04 20361 /usr/lib/libXfixes.so.3.1.0
    a622d000-a622e000 rw-p 00003000 08:04 20361 /usr/lib/libXfixes.so.3.1.0
    a622e000-a6237000 r--p 00000000 08:04 15494 /usr/share/locale/it/LC_MESSAGES/libc.mo
    a6237000-a6239000 r--s 00000000 08:04 2765 /var/cache/fontconfig/699564f050ff7e0f9dae359f33bc56a5-le32d4.cache-3
    a6239000-a623a000 r--s 00000000 08:04 2735 /var/cache/fontconfig/ec648e9a1aea82bddd4bd6050028158d-le32d4.cache-3
    a623a000-a623b000 r--s 00000000 08:04 10499 /var/cache/fontconfig/2bb5794ea0204a417d14a0dee8a6a354-le32d4.cache-3
    a623b000-a626f000 r--s 00000000 08:04 11130 /var/cache/fontconfig/f6b893a7224233d96cb72fd88691c0b4-le32d4.cache-3
    a626f000-a62b0000 r--s 00000000 08:04 11128 /var/cache/fontconfig/17090aa38d5c6f09fb8c5c354938f1d7-le32d4.cache-3
    a62b0000-a62f1000 r--s 00000000 08:04 11127 /var/cache/fontconfig/df311e82a1a24c41a75c2c930223552e-le32d4.cache-3
    a62f1000-a64f1000 r--p 00000000 08:04 45118 /usr/lib/locale/locale-archive
    a64f1000-a64f4000 rw-p 00000000 00:00 0
    a64f4000-a64f8000 r-xp 00000000 08:04 18012 /usr/lib/libXdmcp.so.6.0.0
    a64f8000-a64f9000 rw-p 00003000 08:04 18012 /usr/lib/libXdmcp.so.6.0.0Abortito
    Did I do something wrong in the code or in the build process? And what?

    The problem is that you allocated your QVBoxLayout object on the stack, though it's supposed to be on the heap so that the Qt framework can free the memory on its own once the object is no longer needed.

  • HH4 - most simple use of 5GHz wireless / Sonos net...

    I've got a Sonos audio device and have set up its network - https://sonos.custhelp.com/app/answers/detail/a_id/126/kw/mesh
    With the 5GHz setting too, that means in terms of networks on my devices I see:
    [Home network name] - the 2.4GHz variant
    [Home network name]5 - the 5GHz variant
    [Sonos]
    [BTWifi] (or sometimes [BTFON] I think)
    From what I can gather, there's no way of stopping the last come up as a network to connect to (unless someone here can advise differently), but what is the optimal way to get my devices connecting? 
    My main machine is a Mac, and I'm also connecting a PS3, a couple of Windows 8 machines and a couple of Android phones.
    To further compound things, I have a TP Link Repeater TL-WA901ND as the signal at the back of the house is really poor (HH4 is at the front).
    What I *want* to get to is a set up where my allowed devices (obviously) will connect to the strongest and most appropriate connection point, rather than me having to specifically select them (in my office, for example, we have extenders all over the place and I don't need to change selection as I walk around). As I have to do this manually, I must be making some daft error - can anyone give me any pointers?
    Thanks in advance!

    Hi there. Sorry for delay in replying - my whole connection went down (unrelated) and the Openreach engineer has just been out to fix it!
    I've been looking at this thread regarding extenders too - http://community.bt.com/t5/Other-BB-Queries/TP-Link-WA701ND-Universal-Repeater-and-HH/m-p/742770/hig...
    It seems like in that instance the gateway IP was set to 0.0.0.0.
    My current set up on the TL-WA901 is:
    Universal repeater
    Static IP (on the same subnet) of 192.168.2.10 (HH is 192.168.2.1)
    Subnet mask - 255.255.255.0
    Gateway 192.168.2.1
    Channel 6 (same as HH, which is fixed on that channel)
    Channel width 20MHz
    DHCP off
    MAC of AP is correct
    Security is in WPA-PSK/ WPA2-PSK mode
    Version - auto
    Encryption - auto
    PSK password - same as on my HH
    And I have an ethernet cable connected that is also connected to the HH.
    Have I missed something out or made a mistake? The gateway, for example?
    Thanks!

  • Troubleshooting Mail using the Mail.crash.log file and TN2123 CrashReporter

    This morning, for apparently no reason at all, Mail began to consistently crash each time I attempted to send or reply to a message. By observing what occured in mail, opening the crash log [mail.crash.log] located here…
    Macintosh HD:Users:<username>:Library:Logs:CrashReporter
    …and parsing the information with the help of the Apple Developer Technical Note linked below, I was able to quickly determine that my last action just prior to sending the message—appending a signature to it—resulted in the application crashing. Simply by deleting the existing signature and recreating it, I was able to resolve the problem in only a matter of minutes.
    This demonstrates how useful crash logs can be, and why they should likely be the very first place you look for an indication of trouble when an application unexpectely quits.
    Here is a very short, relevent section of my Mail crash log which you can examine using the instructions linked below:
    Host Name: Michael-Lafferty
    Date/Time: 2006-05-15 09:37:57.885 -0700
    OS Version: 10.4.6 (Build 8I127)
    Report Version: 4
    Command: Mail
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Parent: WindowServer [64]
    Version: 2.0.7 (746.2)
    Build Version: 2
    Project Name: MailViewer
    Source Version: 7460200
    PID: 1662
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.WebCore 0x956065d4 khtml::CompositeEditCommand::insertNodeAfter(DOM::No
    1 com.apple.WebCore 0x956b0b34 khtml::DeleteSelectionCommand::moveNodesAfterNode()
    2 com.apple.WebCore 0x956b1640 khtml::DeleteSelectionCommand::doApply() + 688
    3 com.apple.WebCore 0x955ff41c khtml::EditCommand::apply() + 52
    4 com.apple.WebCore 0x955ff9c8 khtml::CompositeEditCommand::applyCommandToComposite
    5 com.apple.WebCore 0x956a75c4 khtml::CompositeEditCommand::deleteSelection(khtml::…
    This is the most significant section of a very long, multi-threaded log, because it shows the detail of the thread which crashed, the actual step at which it crashed, and the particular crash type: in this case, a EXCBADACCESS (0x0001) - KERNPROTECTIONFAILURE, indicating an attempt to write to a read-only memory location.
    Here is a link to the Apple Developer documentation you can use to troubleshoot such issues:
    http://developer.apple.com/technotes/tn2004/tn2123.html
    Technical Note TN2123
    CrashReporter

    This morning, for apparently no reason at all, Mail began to consistently crash each time I attempted to send or reply to a message. By observing what occured in mail, opening the crash log [mail.crash.log] located here…
    Macintosh HD:Users:<username>:Library:Logs:CrashReporter
    …and parsing the information with the help of the Apple Developer Technical Note linked below, I was able to quickly determine that my last action just prior to sending the message—appending a signature to it—resulted in the application crashing. Simply by deleting the existing signature and recreating it, I was able to resolve the problem in only a matter of minutes.
    This demonstrates how useful crash logs can be, and why they should likely be the very first place you look for an indication of trouble when an application unexpectely quits.
    Here is a very short, relevent section of my Mail crash log which you can examine using the instructions linked below:
    Host Name: Michael-Lafferty
    Date/Time: 2006-05-15 09:37:57.885 -0700
    OS Version: 10.4.6 (Build 8I127)
    Report Version: 4
    Command: Mail
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Parent: WindowServer [64]
    Version: 2.0.7 (746.2)
    Build Version: 2
    Project Name: MailViewer
    Source Version: 7460200
    PID: 1662
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.WebCore 0x956065d4 khtml::CompositeEditCommand::insertNodeAfter(DOM::No
    1 com.apple.WebCore 0x956b0b34 khtml::DeleteSelectionCommand::moveNodesAfterNode()
    2 com.apple.WebCore 0x956b1640 khtml::DeleteSelectionCommand::doApply() + 688
    3 com.apple.WebCore 0x955ff41c khtml::EditCommand::apply() + 52
    4 com.apple.WebCore 0x955ff9c8 khtml::CompositeEditCommand::applyCommandToComposite
    5 com.apple.WebCore 0x956a75c4 khtml::CompositeEditCommand::deleteSelection(khtml::…
    This is the most significant section of a very long, multi-threaded log, because it shows the detail of the thread which crashed, the actual step at which it crashed, and the particular crash type: in this case, a EXCBADACCESS (0x0001) - KERNPROTECTIONFAILURE, indicating an attempt to write to a read-only memory location.
    Here is a link to the Apple Developer documentation you can use to troubleshoot such issues:
    http://developer.apple.com/technotes/tn2004/tn2123.html
    Technical Note TN2123
    CrashReporter

Maybe you are looking for

  • How to add dll file in a Jar to create executable file

    Hi All! I have one Java file which use one Jar file & three dll file. I create jar file as described in java tutorial http://java.sun.com/docs/books/tutorial/deployment/jar/appman.html 1) I created Manifiest.txt by writting : Class-Path: C:\Flasher\j

  • Right-Indenting the last paragraph line in a Table Of Contents entry

    Hi, I'm using CS4 In Design. I'm trying to format the paragraph styles for my Table of Contents. I have the tab leaders working, everything looks good except that I have entries that have multiple lines, and I can't find a way to format the TOC parag

  • Nokia C6-01

    Could anyone help. I just realised that my touch screen doesn't work. The phone has never fallen or touch water. What should I do?

  • RFC1845: SMTP Service Extension for Checkpoint/Restart

    Hello, I'm wondering if it's possible to enable this extension to the Mac OS X Server 10.5.6 SMTP service. My internet provider requires it because of some "security policy": my server has been "grey listed" because it is not compliant with this RFC.

  • Workspace continually refreshed, Savepoints & MergeWorkspace scenario

    Hi, I'm using Oracle WorkspaceManager from oracle version: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit 1./ I create a workspace with the isRefreshed flag set to true. 2./ I immediately create a savepoint A. 3./ I insert a row in