Adding multiple states in state machine

Hi all,
I have a state machine with many states.  I am using an enum to select state.  I didn't add all the state in the enum at the beginning, so I am adding more statess to the enum and to the state machine as I go.  I found the following pretty troublesome.
If after I made the first 3 state, and I realized that that next 3 states are very similar to the first 3 states.  I want to copy duplicate the first 3 case all at once, instead of duplicating one case at a time.
If I duplicate one state, and the wrong enum is assigned to the state, is there a quick way to change it? 
Are their anything out there that would help plan and keep track of the state machine?
Let me know if you have any cool tips to speed up state machine development, especially topic on enum and case structure (adding, deleting, multiple copy, etc).
Yik
Kudos and Accepted as Solution are welcome!

jyang72211 wrote:
after I made the first 3 state, and I realized that that next 3 states are very similar to the first 3 states.  I want to copy duplicate the first 3 case all at once, instead of duplicating one case at a
If at all possible, never copy and paste code that is very similar to another piece of code! Try to write modular code. If there are several states that are almost identical except for a few slight differences, wrap those differences in a small case structure within the case.
If you ever find yourself tempted to copy and paste a diagram of code that is larger than a POSTAGE STAMP, reconsider!
a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"] {color: black;} a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"]:after {content: '';} .jrd-sig {height: 80px; overflow: visible;} .jrd-sig-deploy {float:left; opacity:0.2;} .jrd-sig-img {float:right; opacity:0.2;} .jrd-sig-img:hover {opacity:0.8;} .jrd-sig-deploy:hover {opacity:0.8;}

Similar Messages

  • Looking for a best query for multiple IF Else statement in a single select

    Hi
    I want to run multiple IF Else statements in a single select SQL, each statement is one SQL operating on the same table, what is the best way to write this select SQL query ?
    If it is PL/SQL, when i get the result from the first IF statement I will skip the remaining execution, and so on... Can any one help me on this.
    Thanks in advance !!

    965818 wrote:
    I Apologize, the information i have given might not be enough.
    This is my scenario,
    I am selecting set of rows from the table for the employee id. After selecting those records,
    i need to go through the result list and check the condition 1, if it is met, i will return that employee record.
    If that condition 1 is not met, then i need to go through the condition 2. If that is met, i will return that record.
    Like wise, i have four conditions.
    I am trying to achieve this in a single sql. If i am not clear, please let me know.Not fully clear yet, but the picture is better already. The thing with SQL is that you should stop thinking procedurally. Instead think in data sets.
    For example if the task is:
    Find all managers that work in sales.
    Procedural thinking would work like this:
    pseudo code
    Loop over all employees that work in sales
       for each row
           check if it is a manager
               if manager
                  then return record
               else
                  do nothing
               end
    end loopThinking in datasets will result in a different logic
    pseudo code
    select all employees
    where department = SALES
    and job = MANAGERThis advantage here is that all the "Do nothing" loops are not needed. Those are already eliminated by the database.
    So what is needed to help you? Give the full picture. What is your task that you try to solve. From a business perspective.

  • Iterating through the result of a multiple row sql statement

    Hi all,
    I would like to access the results of a multiple row sql-statement. However I can't find out how to do this, can you help me here?
    I have tried using the "node-set" functions in xpath, but I can't seem to get it right.
    How should I approach this scenario?
    Sincerely
    Kim

    The jdbc service has the option of returning xml back to you ...if you do it this way then you can interogate the xml

  • Multiple select, update statements in one script

    Hi All,
    I wrote a script that has multiple select, update statements. When I ran the script in the sqlplus, I got error on second update statement:
    ORA-00936: missing expression
    Have any idea what was the problem?
    Thanks
    OF

    the following are my codes:
    set termout off
    set showmode off
    set timing off
    --set echo off
    set echo on
    set heading off
    set verify off
    set pagesize 0
    -- Parameters
    -- Transaction Date
    -- Show dates this format by default
    ALTER SESSION SET nls_date_format='DD-MON-YYYY';
    -- Define bind variables to hold report parameters
    var v_date varchar2(13)
    var v__run_date varchar2(13)
    begin
    -- Get job sumission variable for Transaction Date
    select gjbprun_value into :v_date
    from general.gjbprun
    where gjbprun_job = '&&1'
    and gjbprun_one_up_no = &&2
    AND gjbprun_number = '01' ;
    End;
    spool fwuodoc_&&2
    select FABINVH_CODE, FABINVH_POHD_CODE,
    FABINVH_INVOICE_DATE, FABINVH_PMT_DUE_DATE, FABINVH_TRANS_DATE,
    fabinvh_complete_ind
    from fabinvh
    where fabinvh_complete_ind='R'
    and trunc(FABINVH_TRANS_DATE) < trunc(to_date('&&dd_mon_yyyy','dd-mon-yyyy'))
    update fabinvh set
    fabinvh_trans_date=to_date('&&dd_mon_yyyy','dd-mon-yyyy')
    where fabinvh_complete_ind='R'
    and trunc(FABINVH_TRANS_DATE) < trunc(to_date('&&dd_mon_yyyy','dd-mon-yyyy'))
    update fpbreqh set
    fpbreqh_trans_date=to_date('&&dd_mon_yyyy','dd-mon-yyyy')
    where fpbreqh_complete_ind='Y'
    and nvl(fpbreqh_appr_ind,'x')<>'Y'
    spool off
    exit

  • Adding Multiple Records with Express

    Hello All,
    We have a CRUD application written in Express 2.0 that allows users to
    enter part numbers and associated information. Our part numbers are
    structured as a prefix, alpha, suffix and 'M' or 'P' number variations :
    1 AB 2 P3 for example. We have provided functionality to allow the
    user to enter multiple P or M variations all at once, say 1 AB 2 P1 thru
    P100,
    using a dialog box where they enter the starting number, ending number
    and step.
    The problem comes in the AddRecordsToSave method.
    This method correctly builds the array of BusinessClass needed to be
    passed to the Save method, however, the Save method adds only the
    initial record (the one from the original Express data entry screen)
    to the database.
    I have traced the problem to the BusinessClient.Update method called
    from
    Save. I believe I am missing some query information that should be
    built into
    AddRecordsToSave, but I am completely unsure of how to provide this.
    As you can see in the attached code, we are using the LogAttr method to
    post
    changes. Apparently this is not enough. What am I missing here?
    The InstanceStatus key of the added records is set to ST_EMPTY by
    default....
    I have tried forcing this to ST_UPDATE, only to receive an error that it
    should
    be ST_EMPTY......?? I am confused. If anyone can shed some light on this
    for me,
    I would appreciate it. Thanks for any help.
    Scott Guman E-mail: [email protected]
    IRM Analyst II Phone: (610) 709-2144
    Mack Trucks, Inc. Fax: (610) 709-4713
    Allentown, PA 18105

    Hi There,
    If attr is not specified in your LogAttr() call, the
    BusinessClass
    will be put in the update state but not attributes will
    be logged.
    That may be the reason why only the displayed record(
    fetched from
    the DB ) is getting logged, but not the new records.
    I think you should use ATTR_SIMPLE with LogAttr. This
    will cause
    all the attributes to be logged and a proper query to
    be built
    to insert the newly created record. I am no Express
    Guru,
    but it works fine for me. Also, try not to modify
    InstanceStatus directly.
    Sometimes it might lead to inconsistencies. The online
    help
    The Add Records to Save example really helps.
    Good luck!
    Ajith Kallambella. M.
    Forte Systems Engineer,
    International Business Corporation
    -----Original Message-----
    From: Scott Guman [SMTP:[email protected]]
    Sent: Wednesday, September 16, 1998 9:34 AM
    To: 'Forte Users'
    Subject: Adding Multiple Records with Express
    Hello All,
    We have a CRUD application written in Express 2.0 that
    allows users to
    enter part numbers and associated information. Our
    part numbers are
    structured as a prefix, alpha, suffix and 'M' or 'P'
    number variations :
    1 AB 2 P3 for example. We have provided functionality
    to allow the
    user to enter multiple P or M variations all at once,
    say 1 AB 2 P1 thru
    P100,
    using a dialog box where they enter the starting
    number, ending number
    and step.
    The problem comes in the AddRecordsToSave method.
    This method correctly builds the array of BusinessClass
    needed to be
    passed to the Save method, however, the Save method
    adds only the
    initial record (the one from the original Express
    data entry screen)
    to the database.
    I have traced the problem to the BusinessClient.Update
    method called
    from
    Save. I believe I am missing some query information
    that should be
    built into
    AddRecordsToSave, but I am completely unsure of how to
    provide this.
    As you can see in the attached code, we are using the
    LogAttr method to
    post
    changes. Apparently this is not enough. What am I
    missing here?
    The InstanceStatus key of the added records is set to
    ST_EMPTY by
    default....
    I have tried forcing this to ST_UPDATE, only to receive
    an error that it
    should
    be ST_EMPTY......?? I am confused. If anyone can shed
    some light on this
    for me,
    I would appreciate it. Thanks for any help.
    Scott Guman E-mail:
    [email protected]
    IRM Analyst II Phone: (610) 709-2144
    Mack Trucks, Inc. Fax: (610) 709-4713
    Allentown, PA 18105
    << File: AddRecordsToSave.txt >>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Mail frequently crashing when adding multiple addressees to a message

    Frequently, when adding multiple addressees to a newly composed or forwarded message, Mail crashes.
    I never experienced this problem before upgrading to Snow Leopard. Can anyone please help me? Am at my wits end!
    Below is the error message script:
    Process: Mail [132]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 4.1 (1076)
    Build Info: Mail-10760000~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [80]
    Date/Time: 2009-10-12 20:57:24.846 +0700
    OS Version: Mac OS X 10.6.1 (10B504)
    Report Version: 6
    Interval Since Last Report: 17606 sec
    Crashes Since Last Report: 5
    Per-App Interval Since Last Report: 11912 sec
    Per-App Crashes Since Last Report: 5
    Anonymous UUID: 8C19BDA2-A765-46DD-
    BA43-57BD7AC54AAA
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000000000019
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    objc_msgSend() selector name: release
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libobjc.A.dylib 0x00007fff85b0155c
    objcmsgSendvtable14 + 12
    1 ...apple.AddressBook.framework 0x00007fff85dcdda7 -
    [ABPeoplePickerPropertyCell dealloc] + 26
    2 com.apple.AppKit 0x00007fff82b11d7c -
    [NSToolTipManager drawToolTip:attributedString:inView:] + 463
    3 com.apple.AppKit 0x00007fff82b13cf5 -
    [NSToolTipManager displayToolTip:] + 2604
    4 com.apple.AppKit 0x00007fff826f599f -
    [NSViewDynamicToolTipManager _displayToolTipIfNecessaryIgnoringTime:]
    + 900
    5 com.apple.AppKit 0x00007fff8267723e
    _monitorMovementTimerFired + 78
    6 com.apple.CoreFoundation 0x00007fff86648a78 __CFRunLoopRun +
    5480
    7 com.apple.CoreFoundation 0x00007fff8664703f
    CFRunLoopRunSpecific + 575
    8 com.apple.HIToolbox 0x00007fff8738dc4e
    RunCurrentEventLoopInMode + 333
    9 com.apple.HIToolbox 0x00007fff8738da53
    ReceiveNextEventCommon + 310
    10 com.apple.HIToolbox 0x00007fff8738d90c
    BlockUntilNextEventMatchingListInMode + 59
    11 com.apple.AppKit 0x00007fff8257f520 _DPSNextEvent +
    718
    12 com.apple.AppKit 0x00007fff8257ee89 -[NSApplication
    nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    13 com.apple.AppKit 0x00007fff82544a7d -[NSApplication
    run] + 395
    14 com.apple.AppKit 0x00007fff8253d798
    NSApplicationMain + 364
    15 com.apple.mail 0x000000010000167c 0x100000000 + 5756
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff86789b16 kevent + 10
    1 libSystem.B.dylib 0x00007fff8678ba19
    dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff8678b6d6
    dispatch_queueinvoke + 195
    3 libSystem.B.dylib 0x00007fff8678b1f6
    dispatch_workerthread2 + 244
    4 libSystem.B.dylib 0x00007fff8678ab28
    pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff8678a9c5 start_wqthread +
    13
    Thread 2:
    0 libSystem.B.dylib 0x00007fff86770d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff867713ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff86647ce2 __CFRunLoopRun +
    2002
    3 com.apple.CoreFoundation 0x00007fff8664703f
    CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8004ea94 -[NSRunLoop
    (NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff8004e973 -[NSRunLoop
    (NSRunLoop) run] + 77
    6 com.apple.MessageFramework 0x00007fff82163161 -[RSSInterchange
    _runManager] + 1445
    7 com.apple.Foundation 0x00007fff80013f65
    _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff867a9f66 pthreadstart +
    331
    9 libSystem.B.dylib 0x00007fff867a9e19 thread_start + 13
    Thread 3:
    0 libSystem.B.dylib 0x00007fff86770d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff867713ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff86647ce2 __CFRunLoopRun +
    2002
    3 com.apple.CoreFoundation 0x00007fff8664703f
    CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8004ea94 -[NSRunLoop
    (NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff8004e973 -[NSRunLoop
    (NSRunLoop) run] + 77
    6 com.apple.MessageFramework 0x00007fff82195e68 +[_NSSocket
    _runIOThread] + 78
    7 com.apple.Foundation 0x00007fff80013f65
    _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff867a9f66 pthreadstart +
    331
    9 libSystem.B.dylib 0x00007fff867a9e19 thread_start + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff867b49f2 select
    $DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff86669252
    __CFSocketManager + 818
    2 libSystem.B.dylib 0x00007fff867a9f66 pthreadstart +
    331
    3 libSystem.B.dylib 0x00007fff867a9e19 thread_start + 13
    Thread 5:
    0 libSystem.B.dylib 0x00007fff86770d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff867713ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff86647ce2 __CFRunLoopRun +
    2002
    3 com.apple.CoreFoundation 0x00007fff8664703f
    CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8009351f +[NSURLConnection
    (NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff80013f65
    _NSThread__main_ + 1429
    6 libSystem.B.dylib 0x00007fff867a9f66 pthreadstart +
    331
    7 libSystem.B.dylib 0x00007fff867a9e19 thread_start + 13
    Thread 6:
    0 libSystem.B.dylib 0x00007fff8678a94a
    _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff8678ad5c
    pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff8678a9c5 start_wqthread +
    13
    Thread 7:
    0 libSystem.B.dylib 0x00007fff8678a94a
    _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff8678ad5c
    pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff8678a9c5 start_wqthread +
    13
    Thread 8:
    0 libSystem.B.dylib 0x00007fff8678a94a
    _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff8678ad5c
    pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff8678a9c5 start_wqthread +
    13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x0000000000000000 rbx: 0x0000000118cfb600 rcx:
    0x0000000000000000 rdx: 0x0000000000000000
    rdi: 0x0000000114707ac0 rsi: 0x00007fff82c6e968 rbp:
    0x00007fff5fbfe600 rsp: 0x00007fff5fbfe5d8
    r8: 0x0000000000000000 r9: 0x0000000000000000 r10:
    0x0000000000000001 r11: 0x00007fff85b01550
    r12: 0x00007fff82c74098 r13: 0x000000011897c400 r14:
    0x0000000101987ae0 r15: 0x0000000118966510
    rip: 0x00007fff85b0155c rfl: 0x0000000000010206 cr2:
    0x0000000000000019
    Binary Images:
    0x100000000 - 0x100336ff7 com.apple.mail 4.1 (1076)
    <C6C651FE-C706-1B61-3D43-116621DAB9C8> /Applications/Mail.app/Contents/
    MacOS/Mail
    0x112cc9000 - 0x112ccafff ATSHI.dylib ??? (???)
    <9BC80E39-A52B-D3C2-4C3C-3CA209BA35FC> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/
    Versions/A/Resources/ATSHI.dylib
    0x1145b6000 - 0x1145baff7 libFontRegistryUI.dylib ???
    (???) <EB462473-8DC9-5F16-4592-8F1D743C779A> /System/Library/
    Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/
    Resources/libFontRegistryUI.dylib
    0x115721000 - 0x115725fff
    com.apple.audio.AudioIPCPlugIn 1.1.0 (1.1.0) <60B5ECBE-2324-4136-7DD8-
    A2A9CF3E3A3D> /System/Library/Extensions/AudioIPCDriver.kext/Contents/
    Resources/AudioIPCPlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
    0x115f31000 - 0x115f37ff7
    com.apple.audio.AppleHDAHALPlugIn 1.7.4 (1.7.4a1) <90758686-B4FE-
    EC81-7DC5-9EB1A6F737F0> /System/Library/Extensions/AppleHDA.kext/
    Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/
    AppleHDAHALPlugIn
    0x115fbe000 - 0x115fd1ff7
    com.apple.AddressBook.LocalSourceBundle 1.0 (862)
    <2ECC6C67-80B4-9F60-1A2F-2DF54DF51F9E> /System/Library/Address Book
    Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x115fdd000 - 0x115fe0fff
    com.apple.yahoo.syncframework 1.3 (51) <aEBB9A2D-
    B787-0C74-7C40-64E6F0BBF43C> /System/Library/PrivateFrameworks/
    YahooSync.framework/Versions/A/YahooSync
    0x115feb000 - 0x115ff1fff
    com.apple.AddressBook.LDAPSource 1.0 (862) <BCAA89D3-9042-
    F5BB-6CE2-7884EF7AB3D1> /System/Library/Address Book Plug-Ins/
    LDAP.sourcebundle/Contents/MacOS/LDAP
    0x116165000 - 0x11616bfff libgermantok.dylib ??? (???)
    <a87630B4-D01C-8724-54D2-5E8CC85FC07B> /usr/lib/libgermantok.dylib
    0x116206000 - 0x116265fff
    com.apple.google.GoogleContactSyncFramework 39 (39) <BD6B36C2-620E-
    DBC2-71A9-ECE0F627DE22> /System/Library/PrivateFrameworks/
    GoogleContactSync.framework/Versions/A/GoogleContactSync
    0x116584000 - 0x1165d4ff7
    com.apple.datadetectors.actions 2.0 (102.0) <B64E5232-8736-050B-3F68-
    A2BA6DFFCA43> /System/Library/PrivateFrameworks/
    DataDetectors.framework/Versions/A/Resources/Actions.datadetectors/
    Contents/MacOS/Actions
    0x1172ce000 - 0x1172cefff com.apple.JavaPluginCocoa
    13.0.0 (13.0.0) <02EA2DA9-59AB-9A18-EE03-6A7147EAE31D> /System/Library/
    Frameworks/JavaVM.framework/Versions/A/Resources/
    JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x1172d2000 - 0x1172d9ff7 com.apple.JavaVM 13.0.0
    (13.0.0) <D98F6BC3-5901-F2E4-BA32-054953E7E877> /System/Library/
    Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1172e2000 - 0x1172f4ff7 com.apple.mail.WebPlugIn 4.1
    (1076) <39083281-BF6E-E21C-BD3E-648066819054> /Applications/Mail.app/
    Contents/PlugIns/MailWebPlugIn.webplugin/Contents/MacOS/MailWebPlugIn
    0x1174b9000 - 0x1174dcfff com.apple.Mail.Syncer 4.1
    (1076) <7F42C85F-D0B3-253D-95B6-2510B642FB60> /System/Library/
    Frameworks/Message.framework/Versions/B/Resources/Syncer.syncschema/
    Contents/MacOS/Syncer
    0x118189000 - 0x118255fe7
    com.apple.audio.units.Components 1.6 (1.6) <92E8CA3F-8C01-4B34-6E34-
    AF1D0F6699E3> /System/Library/Components/CoreAudio.component/Contents/
    MacOS/CoreAudio
    0x11f71d000 - 0x11f82dfef libmecab.1.0.0.dylib ???
    (???) <E321EA43-4F4C-6561-3E87-4081904D53F3> /usr/lib/libmecab.
    1.0.0.dylib
    0x12352f000 - 0x1236e4fff libCMaps.A.dylib ??? (???)
    <4CDC8D8A-100F-6B22-DC5F-D6D6E5590DDC> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libCMaps.A.dylib
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???)
    <B633F790-4DDB-53CD-7ACF-2A3682BCEA9F> /usr/lib/dyld
    0x7fff80003000 - 0x7fff80284fe7 com.apple.Foundation 6.6
    (751) <CCE98C5C-DFEA-6C80-A014-A5985437072E> /System/Library/
    Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff802ce000 - 0x7fff8031bff7 libauto.dylib ??? (???)
    <8658DB85-C611-1212-44E5-5B2539018FA0> /usr/lib/libauto.dylib
    0x7fff8031c000 - 0x7fff8031efef com.apple.ExceptionHandling
    1.5 (10) <F2867B93-A56A-974F-9556-266BCE394057> /System/Library/
    Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHandling
    0x7fff8031f000 - 0x7fff80502ff7 libType1Scaler.dylib ???
    (???) <a5EFDAB3-6293-8A83-532E-C71C58F6BD16> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x7fff80503000 - 0x7fff80509ff7 com.apple.DiskArbitration
    2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/
    Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8050a000 - 0x7fff806e9fff com.apple.CalendarStore 4.0
    (965) <86082B77-ABD6-A9DD-E0CE-C5471ED2399A> /System/Library/
    Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x7fff806ea000 - 0x7fff80700fff com.apple.ImageCapture 6.0
    (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/
    ImageCapture.framework/Versions/A/ImageCapture
    0x7fff80706000 - 0x7fff8070dfff com.apple.OpenDirectory 10.6
    (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/
    Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8070e000 - 0x7fff80724fef libbsm.0.dylib ??? (???)
    <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff8075b000 - 0x7fff8075dfff libRadiance.dylib ??? (???)
    <77F285E0-5D5E-A0B0-A89E-9332D6AB2867> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libRadiance.dylib
    0x7fff8075e000 - 0x7fff80799fe7 com.apple.CoreMedia 0.420.17
    (420.17) <E299556E-6930-DC30-DA23-88B812AF63CA> /System/Library/
    PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff8079a000 - 0x7fff807c2fff com.apple.DictionaryServices
    1.1 (1.1) <D57BA55A-4CC5-5C17-8077-AEEA27A01C7A> /System/Library/
    Frameworks/CoreServices.framework/Versions/A/Frameworks/
    DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff807c3000 - 0x7fff807e9fe7 libJPEG.dylib ??? (???)
    <52ACD177-F101-BEF5-E7CC-9131F8372D0A> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libJPEG.dylib
    0x7fff807ea000 - 0x7fff80a23fe7 com.apple.imageKit 2.0 (1.0)
    <F579694D-9FA0-6365-45CD-E380C2EB2573> /System/Library/Frameworks/
    Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/
    ImageKit
    0x7fff80a54000 - 0x7fff80a67ff7
    com.apple.syncservices.syncservicesui 5.0 (575) <4B99D800-624D-FEBF-
    CC70-EAC553046AEB> /System/Library/PrivateFrameworks/
    SyncServicesUI.framework/Versions/A/SyncServicesUI
    0x7fff80a68000 - 0x7fff80a7bfff libGL.dylib ??? (???)
    <D452ADC0-04B1-E24F-03E6-717E58E1D659> /System/Library/Frameworks/
    OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff80a7c000 - 0x7fff80ab5ff7 com.apple.MeshKit 1.0 (49.0)
    <7587A7F2-DF5D-B8B2-A6A8-1389CF28BC51> /System/Library/
    PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff80ae6000 - 0x7fff80b2fff7 com.apple.securityinterface
    4.0 (36981) <F14235A2-8320-1A71-24FE-EB22008483E9> /System/Library/
    Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x7fff80b30000 - 0x7fff80b36fff libCGXCoreImage.A.dylib ???
    (???) <D113DB65-BB37-5499-8825-E6AE8AB1F8B8> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff80b37000 - 0x7fff80c74fef com.apple.WebKit 6531
    (6531.9) <17A680A1-FE75-81E5-952A-047E5FA96F66> /System/Library/
    Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff80c75000 - 0x7fff80d7fff7 com.apple.MeshKitIO 1.0
    (49.0) <66600E25-66F9-D31A-EA47-E81518FF6DDA> /System/Library/
    PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/
    MeshKitIO.framework/Versions/A/MeshKitIO
    0x7fff80d80000 - 0x7fff80e89fff com.apple.MediaToolbox
    0.420.17 (420.17) <31834AB2-1BFF-92D5-A8D2-21B0AE51FA98> /System/
    Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff80e8a000 - 0x7fff80f82fe7 libiconv.2.dylib ??? (???)
    <ECEE3D93-B5E3-F0E0-803E-CA3DC3B33D57> /usr/lib/libiconv.2.dylib
    0x7fff80faa000 - 0x7fff81010fe7 com.apple.AppleVAFramework
    4.6.2 (4.6.2) <3DA57727-EAD1-A199-4093-54CC4698A109> /System/Library/
    PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff81011000 - 0x7fff81014fff com.apple.help 1.3.1 (41)
    <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/
    Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff81039000 - 0x7fff8108efef
    com.apple.framework.familycontrols 2.0 (2.0) <2520A455-5487-1964-C5D9-
    D284699D2537> /System/Library/PrivateFrameworks/
    FamilyControls.framework/Versions/A/FamilyControls
    0x7fff8108f000 - 0x7fff81173ff7 com.apple.DesktopServices
    1.5.1 (1.5.1) <65D7E707-DBCA-5752-78EC-351DC88F3AE8> /System/Library/
    PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/
    DesktopServicesPriv
    0x7fff81174000 - 0x7fff811e8ff7
    com.apple.WhitePagesFramework 10.6.0 (140.0) <546E204C-AC7A-030C-
    DC32-125A3E422FB5> /System/Library/PrivateFrameworks/
    WhitePages.framework/Versions/A/WhitePages
    0x7fff811e9000 - 0x7fff81209fef
    com.apple.DirectoryService.Framework 3.6 (621) <925EE208-03B2-
    B24A-3686-57EAFBDA5ADF> /System/Library/Frameworks/
    DirectoryService.framework/Versions/A/DirectoryService
    0x7fff8120a000 - 0x7fff813c4fef com.apple.ImageIO.framework
    3.0.0 (3.0.0) <D5594E10-F805-F816-10E9-F95753BE18CC> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ImageIO.framework/Versions/A/ImageIO
    0x7fff813c5000 - 0x7fff81532fe7 com.apple.QTKit 7.6.3 (1584)
    <6D02A542-5202-4022-2050-5BE01F70D225> /System/Library/Frameworks/
    QTKit.framework/Versions/A/QTKit
    0x7fff81533000 - 0x7fff81651ff7 com.apple.PubSub 1.0.4
    (65.11) <C1D56F85-7553-FB97-2A31-35CEB2BB8B63> /System/Library/
    Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff81652000 - 0x7fff81663fff
    com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-
    F6EB13A4ADF9> /System/Library/PrivateFrameworks/
    DSObjCWrappers.framework/Versions/A/DSObjCWrappers
    0x7fff81729000 - 0x7fff81786fef com.apple.framework.IOKit
    2.0 (???) <65AA6170-12E3-BFB5-F982-E0C433610A1F> /System/Library/
    Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff81787000 - 0x7fff81944fff libicucore.A.dylib ??? (???)
    <224721C0-EC21-94D0-6484-66C603C34CBE> /usr/lib/libicucore.A.dylib
    0x7fff81945000 - 0x7fff81994fff com.apple.iCalendar 1 (42)
    <25CA7CA2-0994-62F1-9A2E-F938C8142330> /System/Library/
    PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x7fff819dc000 - 0x7fff81a48ff7 com.apple.CorePDF 1.0 (1.0)
    <8D76B569-F938-6337-533A-5C8A69B005DA> /System/Library/
    PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff81a49000 - 0x7fff81a87fef com.apple.DebugSymbols 1.1
    (70) <C3D11461-E118-09DB-D9D7-8972B3FD160F> /System/Library/
    PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff81a88000 - 0x7fff81b9ffef libxml2.2.dylib ??? (???)
    <6D4C196C-B061-CBCD-AAFD-A21736A8425C> /usr/lib/libxml2.2.dylib
    0x7fff81ba0000 - 0x7fff81bcfff7 com.apple.quartzfilters
    1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/
    Frameworks/Quartz.framework/Versions/A/Frameworks/
    QuartzFilters.framework/Versions/A/QuartzFilters
    0x7fff81bd0000 - 0x7fff81c01fff libGLImage.dylib ??? (???)
    <4F318A3E-20C1-D846-2B36-62451A3241F7> /System/Library/Frameworks/
    OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff81c02000 - 0x7fff81f96ff7 com.apple.QuartzCore 1.6.0
    (226.0) <66E14771-C5F0-1415-0B7B-C45EE00C51A1> /System/Library/
    Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff81f97000 - 0x7fff81feefff com.apple.Symbolication 1.1
    (67) <73B6FC15-9E05-69E2-2955-14F82F9BC337> /System/Library/
    PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff81fef000 - 0x7fff82033fef com.apple.ImageCaptureCore
    1.0 (1.0) <29A6CF83-B5C2-9730-D71D-825AEC8657F5> /System/Library/
    Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff82034000 - 0x7fff820c0fef SecurityFoundation ??? (???)
    <B69E2FF9-A698-4923-BC8B-180224B6EF75> /System/Library/Frameworks/
    SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff820c1000 - 0x7fff82108fef com.apple.QuickLookFramework
    2.0 (327.0) <E15E267E-D462-2AD0-DB03-A54E0F94452F> /System/Library/
    Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff82109000 - 0x7fff82134ff7 libxslt.1.dylib ??? (???)
    <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff82135000 - 0x7fff82143ff7 libkxld.dylib ??? (???)
    <823B6BE6-E952-3B3C-3633-8F4D6C4606A8> /usr/lib/system/libkxld.dylib
    0x7fff82144000 - 0x7fff82144ff7 com.apple.quartzframework
    1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/
    Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff82145000 - 0x7fff82482fe7 com.apple.MessageFramework
    4.1 (1076) <5F5E9539-3443-F692-47C1-1B0567F9ECEE> /System/Library/
    Frameworks/Message.framework/Versions/B/Message
    0x7fff82483000 - 0x7fff82484fff liblangid.dylib ??? (???)
    <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff82485000 - 0x7fff824effe7 libvMisc.dylib ??? (???)
    <524DC30F-6A54-CCED-56D9-F57033B06E99> /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/
    libvMisc.dylib
    0x7fff824f0000 - 0x7fff8253aff7 com.apple.Metadata 10.6.0
    (507.1) <aA0DF8E0-9B5B-2377-9B20-884919E28994> /System/Library/
    Frameworks/CoreServices.framework/Versions/A/Frameworks/
    Metadata.framework/Versions/A/Metadata
    0x7fff8253b000 - 0x7fff82f2ffe7 com.apple.AppKit 6.6.1
    (1038.2) <C17AD2AC-8639-D20F-CD99-36EEC619A5F0> /System/Library/
    Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff82f30000 - 0x7fff83035fe7
    libGLProgrammability.dylib ??? (???)
    <EDEC71CB-5F5B-7F55-47F4-19E953E3BE61> /System/Library/Frameworks/
    OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff83036000 - 0x7fff830ebfff com.apple.ink.framework 1.3
    (104) <9B552E27-7E3F-6767-058A-C998E8F78692> /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/
    Versions/A/Ink
    0x7fff830fc000 - 0x7fff83107fff
    com.apple.CrashReporterSupport 10.6 (237) <7B22FB86-33C7-
    A775-2F13-0D3356E2B971> /System/Library/PrivateFrameworks/
    CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff83108000 - 0x7fff837fa5d7 com.apple.CoreGraphics
    1.535.5 (???) <6599C41F-2D50-5E04-44E4-44FA90E022B5> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff837fb000 - 0x7fff8384cfe7 com.apple.HIServices 1.8.0
    (???) <113EEB8A-8EC6-9F86-EF46-4BA5C2CBF77C> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    HIServices.framework/Versions/A/HIServices
    0x7fff8384d000 - 0x7fff83876ff7
    com.apple.speech.LatentSemanticMappingFramework 2.6.9 (2.6.9)
    <CDFCD034-B44A-1C99-CBA4-ED9F233B3DD4> /System/Library/Frameworks/
    LatentSemanticMapping.framework/Versions/A/LatentSemanticMapping
    0x7fff83877000 - 0x7fff83877ff7 com.apple.Carbon 150 (152)
    <8D8CF535-90BE-691C-EC1B-63FBE2162C9B> /System/Library/Frameworks/
    Carbon.framework/Versions/A/Carbon
    0x7fff83878000 - 0x7fff83908fff com.apple.SearchKit 1.3.0
    (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/
    Frameworks/CoreServices.framework/Versions/A/Frameworks/
    SearchKit.framework/Versions/A/SearchKit
    0x7fff83909000 - 0x7fff83953fef com.apple.IMCore 5.0 (742)
    <EE4D5BA7-AFFF-0FB1-08AF-A4152A741B8B> /System/Library/Frameworks/
    IMCore.framework/Versions/A/IMCore
    0x7fff83954000 - 0x7fff83954ff7 com.apple.Accelerate 1.5
    (Accelerate 1.5) <E517A811-E0E6-89D0-F397-66122C7A25A4> /System/
    Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff83955000 - 0x7fff83964fff com.apple.NetFS 3.2 (3.2)
    <61E3D8BE-A529-20BF-1A11-026EC774820D> /System/Library/Frameworks/
    NetFS.framework/Versions/A/NetFS
    0x7fff83965000 - 0x7fff83980fff com.apple.datadetectors 2.0
    (102.0) <D3E026E9-C12A-88ED-25FC-7A58E435AB02> /System/Library/
    PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors
    0x7fff83981000 - 0x7fff83981ff7
    com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-
    DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/
    Versions/A/ApplicationServices
    0x7fff83982000 - 0x7fff83986ff7 libmathCommon.A.dylib ???
    (???) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/
    libmathCommon.A.dylib
    0x7fff8399d000 - 0x7fff839e3fe7 libvDSP.dylib ??? (???)
    <2DAA1591-8AE8-B411-7D01-68DE99C63CEE> /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/
    libvDSP.dylib
    0x7fff839e4000 - 0x7fff83a05ff7 com.apple.opencl 11 (11)
    <a53E07FB-AD2F-9F3E-EC00-7DCC7DDE2F90> /System/Library/Frameworks/
    OpenCL.framework/Versions/A/OpenCL
    0x7fff83a06000 - 0x7fff83a4dff7 com.apple.coreui 0.2 (112)
    <E64F7594-7829-575F-666A-0B16875FC644> /System/Library/
    PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff83a4e000 - 0x7fff83a52ff7 libCGXType.A.dylib ??? (???)
    <50EB4AB0-0B25-E5DC-FC9E-12268B51F02F> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff83a53000 - 0x7fff83ad5fef
    com.apple.QuickLookUIFramework 2.0 (327.0) <B9850E11-3F04-100F-0122-
    B4AD6222A43F> /System/Library/Frameworks/Quartz.framework/Versions/A/
    Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x7fff83ad6000 - 0x7fff83bf8ff7
    com.apple.audio.toolbox.AudioToolbox 1.6 (1.6) <3CA3B481-9627-6F36-
    F2B8-C2763DEEB128> /System/Library/Frameworks/AudioToolbox.framework/
    Versions/A/AudioToolbox
    0x7fff83bf9000 - 0x7fff83c19fff com.apple.DotMacSyncManager
    2.0.0 (446) <1D7898EC-2EA8-EAAF-821A-B0E1A170CB03> /System/Library/
    PrivateFrameworks/DotMacSyncManager.framework/Versions/A/
    DotMacSyncManager
    0x7fff83c1a000 - 0x7fff83c25fff com.apple.dotMacLegacy 3.2
    (266) <80F00DE2-4C50-0FD9-5C6E-3EAA1599277B> /System/Library/
    PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegacy
    0x7fff83c26000 - 0x7fff83d83ff7 com.apple.syncservices 5.0
    (575) <5A2B1757-BADC-9E3E-9260-3133C45859BB> /System/Library/
    Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x7fff83d84000 - 0x7fff83da8ff7 com.apple.CoreVideo 1.6.0
    (43.0) <FF5F0EEF-56BE-24DD-C8FA-CB41F126E6A8> /System/Library/
    Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff83de5000 - 0x7fff83f1dff7 com.apple.CoreData 102 (246)
    <0502CBD8-513E-C19A-3562-20EC35535D71> /System/Library/Frameworks/
    CoreData.framework/Versions/A/CoreData
    0x7fff83f1e000 - 0x7fff83fd2fef com.apple.ColorSync 4.6.0
    (4.6.0) <080BEDDE-E7A4-F88D-928B-7501574A157B> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ColorSync.framework/Versions/A/ColorSync
    0x7fff84003000 - 0x7fff8404dfff com.apple.DAVKit 4.0 (729)
    <83F34E7A-4C4C-D021-FDB3-157600E2BA0A> /System/Library/
    PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x7fff8404e000 - 0x7fff84085ff7 libssl.0.9.8.dylib ??? (???)
    <2D7FAEF9-A3CD-9F80-7CDE-852D3C93AEDB> /usr/lib/libssl.0.9.8.dylib
    0x7fff84086000 - 0x7fff840d5ff7
    com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0)
    <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/
    PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
    0x7fff840d6000 - 0x7fff840d6ff7 com.apple.Accelerate.vecLib
    3.5 (vecLib 3.5) <BA861575-B0DE-50F5-A799-BDF188A3D4EF> /System/
    Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/
    vecLib.framework/Versions/A/vecLib
    0x7fff840d7000 - 0x7fff840e4ff7 com.apple.AppleFSCompression
    1.0 (1.0) <597C8E16-90C0-A7AA-7236-5D1281F20AD0> /System/Library/
    PrivateFrameworks/AppleFSCompression.framework/Versions/A/
    AppleFSCompression
    0x7fff84101000 - 0x7fff8411fff7 libPng.dylib ??? (???)
    <6A0E35B8-2E33-7C64-2B53-6F47F628DE7A> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libPng.dylib
    0x7fff84120000 - 0x7fff84122fff
    com.apple.print.framework.Print 6.0 (237) <70DA9755-5DC1-716B-77E2-
    E42C5DAB85A2> /System/Library/Frameworks/Carbon.framework/Versions/A/
    Frameworks/Print.framework/Versions/A/Print
    0x7fff84123000 - 0x7fff84137ff7
    com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-
    A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/
    SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff84138000 - 0x7fff8415bff7 com.apple.iChat.IMFoundation
    5.0 (742) <1A4FEDF7-78CF-23A3-D0FD-23D74FA556C5> /System/Library/
    Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/Versions/
    A/IMFoundation
    0x7fff8415c000 - 0x7fff841abff7 libTIFF.dylib ??? (???)
    <E11A75A8-223C-8B5E-7F62-821F9ADE8821> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libTIFF.dylib
    0x7fff841ac000 - 0x7fff84430fff com.apple.security 6.0
    (36910) <F7431448-BC2E-835D-E7A2-E47E0A5CB984> /System/Library/
    Frameworks/Security.framework/Versions/A/Security
    0x7fff84471000 - 0x7fff84487fff
    com.apple.MultitouchSupport.framework 200.20 (200.20) <96B8C66E-
    D84D-863B-CB1D-F7E005569706> /System/Library/PrivateFrameworks/
    MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff84488000 - 0x7fff844c3ff7
    com.apple.CoreMediaIOServices 101.0 (715) <7B93206A-FEC5-
    FCC3-3587-91E3CEC61797> /System/Library/PrivateFrameworks/
    CoreMediaIOServices.framework/Versions/A/CoreMediaIOServices
    0x7fff844c4000 - 0x7fff8472eff7 com.apple.QuartzComposer 4.0
    (156.6) <4E43D357-4A18-5D16-02E8-14324A5B9302> /System/Library/
    Frameworks/Quartz.framework/Versions/A/Frameworks/
    QuartzComposer.framework/Versions/A/QuartzComposer
    0x7fff84830000 - 0x7fff848b0ff7 com.apple.iLifeMediaBrowser
    2.1.3 (346.0.3) <04677A98-142E-9C0E-18A7-4C74275856B7> /System/Library/
    PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/
    iLifeMediaBrowser
    0x7fff848b1000 - 0x7fff848b6ff7 com.apple.CommonPanels 1.2.4
    (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/
    Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/
    A/CommonPanels
    0x7fff848b7000 - 0x7fff84973ff7
    com.apple.CoreServices.OSServices 352 (352) <CD933BBD-B260-552F-
    E64E-291D6ED3091A> /System/Library/Frameworks/CoreServices.framework/
    Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff84974000 - 0x7fff84977ff7 libCoreVMClient.dylib ???
    (???) <3A41933A-5174-7516-37E0-8E06365BF3DA> /System/Library/
    Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff84978000 - 0x7fff849b8fef com.apple.QD 3.31 (???)
    <0FA2713A-99BD-A96B-56AF-7DB0AB4927AD> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/QD.framework/
    Versions/A/QD
    0x7fff849b9000 - 0x7fff849fcfff libtidy.A.dylib ??? (???)
    <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
    0x7fff84a55000 - 0x7fff84f4dff7 com.apple.VideoToolbox
    0.420.17 (420.17) <E034AA6E-A1E4-BB8F-5AFA-F5C354DDD889> /System/
    Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff84f82000 - 0x7fff8505cff7 com.apple.vImage 4.0 (4.0)
    <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/
    vImage
    0x7fff8505d000 - 0x7fff85116fff libsqlite3.dylib ??? (???)
    <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff85117000 - 0x7fff85138fff libresolv.9.dylib ??? (???)
    <01C7C750-7F6A-89B3-C586-5C50A839019E> /usr/lib/libresolv.9.dylib
    0x7fff851ee000 - 0x7fff8526bfef com.apple.backup.framework
    1.1 (1.0) <35E2F1B1-C301-EFF7-F222-964D1A6ABE09> /System/Library/
    PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff8526c000 - 0x7fff8527dfef libz.1.dylib ??? (???)
    <3A7A4C48-A4C8-A78A-8B87-C0DDF6601AC8> /usr/lib/libz.1.dylib
    0x7fff8527e000 - 0x7fff8548aff7 com.apple.RawCamera.bundle
    2.2.1 (477) <B4DD9D3B-CD05-5ACE-6808-BEC5660D805C> /System/Library/
    CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff854e8000 - 0x7fff85523fef com.apple.AE 496 (496)
    <6AFD62E0-DD92-4F04-A73A-90224D80593D> /System/Library/Frameworks/
    CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff8552f000 - 0x7fff85535fff com.apple.AOSNotification
    1.1.0 (123.3) <9436ED02-186A-E6CC-E594-31E3942A5898> /System/Library/
    PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
    0x7fff85536000 - 0x7fff85573ff7 libFontRegistry.dylib ???
    (???) <43ADB89E-036B-9D8F-CC4B-CE6B6BCC5AB5> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8557f000 - 0x7fff855e1fe7 com.apple.datadetectorscore
    2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/
    PrivateFrameworks/DataDetectorsCore.framework/Versions/A/
    DataDetectorsCore
    0x7fff855e2000 - 0x7fff85a25fef libLAPACK.dylib ??? (???)
    <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/
    libLAPACK.dylib
    0x7fff85a26000 - 0x7fff85ac0fe7
    com.apple.ApplicationServices.ATS 4.0 (???)
    <76009EB5-037B-8A08-5AB5-18DA59559509> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/
    Versions/A/ATS
    0x7fff85ac1000 - 0x7fff85afbfff com.apple.bom 10.0 (164)
    <E5C9AFBD-68C1-197E-72B0-B43295DC87DC> /System/Library/
    PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff85afc000 - 0x7fff85bb2fe7 libobjc.A.dylib ??? (???)
    <261D97A3-225B-8A00-56AA-F9F27973063F> /usr/lib/libobjc.A.dylib
    0x7fff85bb3000 - 0x7fff85bbaff7 com.apple.DisplayServicesFW
    2.1 (2.1) <2C039CF5-8AF8-6DA3-3C77-566B22EFB172> /System/Library/
    PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fff85bbb000 - 0x7fff85bc1ff7 IOSurface ??? (???)
    <8E0EE904-59D1-9AA0-CE55-B1777F4BAEC1> /System/Library/Frameworks/
    IOSurface.framework/Versions/A/IOSurface
    0x7fff85bc2000 - 0x7fff85c3ffe7 com.apple.CoreText 3.0.0
    (???) <51175014-9F0C-7E96-FB6F-3DC5E446B92E> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    CoreText.framework/Versions/A/CoreText
    0x7fff85c40000 - 0x7fff85c4ffef com.apple.opengl 1.6.3
    (1.6.3) <6318A188-B43D-E82F-C157-2E76331227BD> /System/Library/
    Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff85c50000 - 0x7fff85e86fef
    com.apple.AddressBook.framework 5.0 (862) <06928F7A-AFEC-7C7F-E1EC-
    D99983588C00> /System/Library/Frameworks/AddressBook.framework/
    Versions/A/AddressBook
    0x7fff85ea5000 - 0x7fff85f45fff com.apple.LaunchServices
    360.3 (360.3) <02FFE657-CC7A-5266-F06E-8732E28F70A9> /System/Library/
    Frameworks/CoreServices.framework/Versions/A/Frameworks/
    LaunchServices.framework/Versions/A/LaunchServices
    0x7fff85f46000 - 0x7fff85f4efff com.apple.iChat.IMUtils 5.0
    (742) <58F866BF-C746-E260-DBA8-265B772EDDBA> /System/Library/
    Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versions/A/
    IMUtils
    0x7fff85f4f000 - 0x7fff85faffff
    com.apple.ExchangeWebServices 1.0 (54) <C56EF9CA-93FC-066F-23E5-
    E1FD53D86916> /System/Library/PrivateFrameworks/
    ExchangeWebServices.framework/Versions/A/ExchangeWebServices
    0x7fff85fe1000 - 0x7fff85fe1ff7 com.apple.vecLib 3.5 (vecLib
    3.5) <5B072584-9579-F54F-180E-5D425B37E85C> /System/Library/Frameworks/
    vecLib.framework/Versions/A/vecLib
    0x7fff85fe4000 - 0x7fff86027ff7 libRIP.A.dylib ??? (???)
    <8D7113D2-71A7-A205-D2D0-2DB0F37FFBB3> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff86028000 - 0x7fff860a5fef libstdc++.6.dylib ??? (???)
    <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff860a6000 - 0x7fff863d8fef
    com.apple.CoreServices.CarbonCore 859.1 (859.1) <5712C4C1-
    B18B-88EE-221F-DA04A8EDA029> /System/Library/Frameworks/
    CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/
    Versions/A/CarbonCore
    0x7fff863d9000 - 0x7fff863ebfe7 libsasl2.2.dylib ??? (???)
    <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff863ec000 - 0x7fff863edfff
    com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-
    F5F6-58821778629C> /System/Library/PrivateFrameworks/
    MonitorPanel.framework/Versions/A/MonitorPanel
    0x7fff863ee000 - 0x7fff864fdff7 libcrypto.0.9.8.dylib ???
    (???) <a2DA70D0-02AE-89FA-1CDA-B3CA986CAE6D> /usr/lib/libcrypto.
    0.9.8.dylib
    0x7fff864fe000 - 0x7fff864feff7 com.apple.CoreServices 44
    (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/
    CoreServices.framework/Versions/A/CoreServices
    0x7fff864ff000 - 0x7fff8655bfff libGLU.dylib ??? (???)
    <aA2D37B3-8B7C-6772-F8BA-7364284C55FE> /System/Library/Frameworks/
    OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8655c000 - 0x7fff8655cff7 com.apple.Cocoa 6.6 (???)
    <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/
    Cocoa.framework/Versions/A/Cocoa
    0x7fff8655d000 - 0x7fff86592ff7 libcups.2.dylib ??? (???)
    <1FE99C26-B845-F508-815A-5B2CF2CA5337> /usr/lib/libcups.2.dylib
    0x7fff86593000 - 0x7fff865fbff7 com.apple.MeshKitRuntime 1.0
    (49.0) <580F1945-540B-1E68-0341-A6ADAD78397E> /System/Library/
    PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/
    MeshKitRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff865fc000 - 0x7fff8676ffef com.apple.CoreFoundation 6.6
    (550) <04EC0CC2-6CE4-4EE0-03B9-6C5109398CB1> /System/Library/
    Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff86770000 - 0x7fff8692eff7 libSystem.B.dylib ??? (???)
    <66102D4E-6C8B-77D0-6766-2A1788B20C6F> /usr/lib/libSystem.B.dylib
    0x7fff8692f000 - 0x7fff8693bfef libbz2.1.0.dylib ??? (???)
    <4AA81AA7-DF37-6430-07D1-F59F37AEC357> /usr/lib/libbz2.1.0.dylib
    0x7fff8693c000 - 0x7fff8735ffe7 com.apple.WebCore 6531
    (6531.9) <6DEBA397-4369-A8B1-1757-40FD454F6B51> /System/Library/
    Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/
    Versions/A/WebCore
    0x7fff87360000 - 0x7fff8765dfef com.apple.HIToolbox 1.6.0
    (???) <870B39B2-55BD-9C82-72EB-2E3470BD0E14> /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/
    Versions/A/HIToolbox
    0x7fff8765e000 - 0x7fff87661ff7 com.apple.securityhi 4.0
    (36638) <77F40B57-2D97-7AE5-1331-8945C71DFB57> /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/
    Versions/A/SecurityHI
    0x7fff87662000 - 0x7fff876e6fff
    com.apple.print.framework.PrintCore 6.0 (312) <1F747E69-924D-8C5B-F318-
    C4828CC6E85D> /System/Library/Frameworks/ApplicationServices.framework/
    Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff8770b000 - 0x7fff87748fff com.apple.LDAPFramework 2.0
    (120.1) <0F7DF87D-6A08-02AF-790B-76294FCE8916> /System/Library/
    Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff87749000 - 0x7fff8774aff7
    com.apple.TrustEvaluationAgent 1.0 (1) <4B6B7853-EDAC-08B7-3324-
    CA9A3802FAE2> /System/Library/PrivateFrameworks/
    TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff87839000 - 0x7fff87844ff7
    com.apple.speech.recognition.framework 3.10.10 (3.10.10)
    <7E2A89FC-0F18-1CCC-472E-AD0E2BC2DD4C> /System/Library/Frameworks/
    Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/
    Versions/A/SpeechRecognition
    0x7fff87845000 - 0x7fff87911fff com.apple.CFNetwork 454.4
    (454.4) <E7721AD8-3177-8749-60F7-5EF323E6492B> /System/Library/
    Frameworks/CoreServices.framework/Versions/A/Frameworks/
    CFNetwork.framework/Versions/A/CFNetwork
    0x7fff87a4b000 - 0x7fff87a7cfef libTrueTypeScaler.dylib ???
    (???) <3F30259E-9EB0-18D2-B0F3-7B8A9625574E> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff87a7d000 - 0x7fff87afbfef com.apple.audio.CoreAudio
    3.2.0 (3.2) <51E4AA76-3A8A-2B78-95D2-582501421A4E> /System/Library/
    Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff87afc000 - 0x7fff87b15fff com.apple.CFOpenDirectory
    10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/
    Frameworks/OpenDirectory.framework/Versions/A/Frameworks/
    CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff87b16000 - 0x7fff87b2bfff com.apple.LangAnalysis 1.6.5
    (1.6.5) <D4956302-5A2D-2AFD-C143-6287F1313196> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff87b2c000 - 0x7fff87b34ff7
    com.apple.NSServerNotificationCenter 2 (1.0) <0F9B07B8-D9F9-A55D-
    AB60-9CC3533D77F8> /System/Library/Frameworks/
    ServerNotification.framework/Versions/A/ServerNotification
    0x7fff87b35000 - 0x7fff87b36ff7
    com.apple.audio.units.AudioUnit 1.6 (1.6) <7A51FBCE-7907-28A0-B2D2-
    CAADA78F2913> /System/Library/Frameworks/AudioUnit.framework/Versions/
    A/AudioUnit
    0x7fff87b37000 - 0x7fff87cbbfff com.apple.JavaScriptCore
    6531 (6531.5) <8C470ACB-1A45-71FC-673D-34EA3F5EF0DC> /System/Library/
    Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff87cbc000 - 0x7fff87d37ff7 com.apple.ISSupport 1.9.1
    (49) <EF46DFEE-3B41-97C1-1BE6-A19A1786B85F> /System/Library/
    PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff87d38000 - 0x7fff87de7fef edu.mit.Kerberos 6.5.8
    (6.5.8) <a9C16B72-A1F8-3DDE-7772-E7635774CA6E> /System/Library/
    Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff87de8000 - 0x7fff885f2fe7 libBLAS.dylib ??? (???)
    <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/
    libBLAS.dylib
    0x7fff8860e000 - 0x7fff8861bfff libCSync.A.dylib ??? (???)
    <D97C8D7E-2CA3-9495-0C41-004CE47BC5DD> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff8861c000 - 0x7fff886d7ff7 libFontParser.dylib ???
    (???) <8926E1B0-6D1E-502A-5028-1DCC57F6D6FA> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8876a000 - 0x7fff887f9fff com.apple.PDFKit 2.5 (2.5)
    <7849E675-4289-6FEA-E314-063E91A4B07F> /System/Library/Frameworks/
    Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/
    PDFKit
    0x7fff887fa000 - 0x7fff8886cfef com.apple.CoreSymbolication
    2.0 (23) <06F8561E-4B36-7BF6-31BA-64091B3D8058> /System/Library/
    PrivateFrameworks/CoreSymbolication.framework/Versions/A/
    CoreSymbolication
    0x7fff8886d000 - 0x7fff88888ff7 com.apple.openscripting 1.3
    (???) <DFBFBFD3-90C0-0710-300C-1A7210CB3713> /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/
    OpenScripting.framework/Versions/A/OpenScripting
    0x7fff8888b000 - 0x7fff88890fff libGIF.dylib ??? (???)
    <0C112067-95FE-B9BC-C70C-64A46A277F34> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libGIF.dylib
    0x7fff889fa000 - 0x7fff889fffff libGFXShared.dylib ??? (???)
    <C386DB22-A0AA-D826-ACBA-25E82B480D05> /System/Library/Frameworks/
    OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff88a00000 - 0x7fff88a18fff
    com.apple.iChat.InstantMessage 5.0 (742) <14DD4C3C-FAEE-40FC-
    FED1-65A134F96B12> /System/Library/Frameworks/InstantMessage.framework/
    Versions/A/InstantMessage
    0x7fff88a19000 - 0x7fff88a5aff7
    com.apple.SystemConfiguration 1.10 (1.10) <E3FF1FC8-C760-2047-
    F954-0D283DD0F714> /System/Library/Frameworks/
    SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff88a5b000 - 0x7fff88b26fe7
    ColorSyncDeprecated.dylib ??? (???) <03DA3BF0-1293-8947-
    A8B6-5E599F5B5DC7> /System/Library/Frameworks/
    ApplicationServices.framework/Frameworks/ColorSync.framework/Versions/
    A/Resources/ColorSyncDeprecated.dylib
    0x7fff88b2d000 - 0x7fff88b34ff7 com.apple.KerberosHelper 2.0
    (1.0) <F0154529-03F3-356D-56BC-A78964B2BE50> /System/Library/
    PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosHelper
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???)
    <66102D4E-6C8B-77D0-6766-2A1788B20C6F> /usr/lib/libSystem.B.dylib
    Model: MacBookPro4,1, BootROM MBP41.00C1.B03, 2 processors, Intel Core
    2 Duo, 2.6 GHz, 4 GB, SMC 1.28f2
    Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8C),
    Broadcom BCM43xx 1.0 (5.10.91.19)
    Bluetooth: Version 2.2.1f7, 2 service, 1 devices, 1 incoming serial
    ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS542525K9SA00, 232.89 GB
    Parallel ATA Device: MATSHITADVD-R UJ-875
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd400000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x1a100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.),
    0x820f, 0x1a110000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.),
    0x0230, 0x5d200000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000
    Many thanks in advance!

    Hi
    I am suffering the same problem with Mail crashing when adding multiple names to the 'To' field.
    Sometimes it can be OK.
    I have a group in my contacts which has the names I e-mail most often and if I add names to the e-mail from that group all is well. If I navigate away from that group in Contacts as I wish to add someone not in that group this is usually when it crashes for me.
    When I relaunch Mail I get the message back I was working on with all the names I had added to the 'To' field but usually minus the last name. Which would be the one I had navigated away from the group I was using in contacts to all contacts.
    I don't know if that helps in any way?
    Phil

  • How would I go about adding multiple rectangles using the same lines of code?

    How would I go about adding multiple rectangles using the same lines of code? I would prefer to just run through a set of code every time I need a polygon. If I just have to create multiple polygon adding statements that's fine but I'd prefer just 1.

    >>How would I go about adding multiple rectangles using the same lines of code?
    You could create a method that creates and returns x number of Rectangle elements:
    public IEnumerable<Rectangle> CreateRectangles(int numberOfRectsToCreate)
    for (int i = 0; i < numberOfRectsToCreate; ++i)
    Rectangle rect = new Rectangle();
    rect.Fill = Brushes.Blue;
    rect.Width = 100;
    rect.Height = 100;
    yield return rect;
    ..and then call this method from anywhere in your code:
    IEnumerable<Rectangle> rects = CreateRectangles(5);
    foreach (Rectangle rect in rects)
    //add to StackPanel or do whatever with the Rectangle elements:
    yourStackPanel.Children.Add(rect);
    >>If I just have to create multiple polygon adding statements that's fine but I'd prefer just 1.
    When adding Point objects to a Polygon you can only add one per call to the Add method but you could call the Add method inside a loop, e.g:
    for(int i = 0; i < 10; ++i)
    //add to StackPanel or do whatever with the Rectangle elements:
    Polygon p = new Polygon();
    p.Points.Add(new Point());
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question. Please don't post several questions in the same thread.

  • *Help Needed* Adding multiple emails/mailing list in the email subscription

    Help Needed
    Hi,
    Can someone help me in adding multiple email address/mailing list in the email subscription for interactive reports in Apex 4.
    pls mail me at [email protected]
    Regards,
    Sunny

    The doc does not mention a separator for the email addresses because we only support one email address per subscription. I have logged a task for our next release to look at expanding it and allowing multiple.
    -- Sharon

  • Adding multiple same-name nodes from one xml into another

    Hi,
    Following on from my question the other day (Adding multiple different nodes from one xmltype into another), I now have a slightly more complex requirement that I cannot work out where to start, assuming that it's something that can reuse some/all of yesterday's work (thanks again, odie_63!). ETA: I'm on 11.2.0.3
    So, here's the (slightly amended) xml along with yesterday's solution:
    with sample_data as (select xmltype('<root>
                                           <xmlnode>
                                             <subnode1>val1</subnode1>
                                             <subnode2>val2</subnode2>
                                           </xmlnode>
                                           <xmlnode>
                                             <subnode1>val3</subnode1>
                                             <subnode2>val4</subnode2>
                                           </xmlnode>
                                         </root>') xml_to_update,
                                xmltype('<a>
                                           <b>valb</b>
                                           <c>valc</c>
                                           <d>
                                             <d1>vald1</d1>
                                             <d2>vald2</d2>
                                           </d>
                                           <e>vale</e>
                                           <f>valf</f>
                                           <g>
                                             <g1>valg1</g1>
                                             <g2>valg2</g2>
                                           </g>
                                           <h>
                                             <h1>valh1</h1>
                                             <h2>valh2</h2>
                                           </h>
                                           <multinode>
                                             <name>fred</name>
                                             <type>book</type>
                                             <head>1</head>
                                           </multinode>
                                           <multinode>
                                             <name>bob</name>
                                             <type>car</type>
                                             <head>0</head>
                                           </multinode>                                        
                                         </a>') xml_to_extract_from
                          from   dual)
    select xmlserialize(document
               xmlquery(
                 'copy $d := $old
                  modify (
                    insert node element extrainfo {
                      $new/a/b
                    , $new/a/d
                    , $new/a/f
                    , $new/a/h
                    } as first into $d/root
                  return $d'
                 passing sd.xml_to_update as "old"
                       , sd.xml_to_extract_from as "new"
                 returning content
             indent
    from sample_data sd;
    That gives me:
    <root>
      <extrainfo>
        <b>valb</b>
        <d>
          <d1>vald1</d1>
          <d2>vald2</d2>
        </d>
        <f>valf</f>
        <h>
          <h1>valh1</h1>
          <h2>valh2</h2>
        </h>
      </extrainfo>
      <xmlnode>
        <subnode1>val1</subnode1>
        <subnode2>val2</subnode2>
      </xmlnode>
      <xmlnode>
        <subnode1>val3</subnode1>
        <subnode2>val4</subnode2>
      </xmlnode>
    </root>
    However, I now need to add in a set of new nodes based on information from the <multinode> nodes, something like:
    <root>
      <extrainfo>
        <b>valb</b>
        <d>
          <d1>vald1</d1>
          <d2>vald2</d2>
        </d>
        <f>valf</f>
        <h>
          <h1>valh1</h1>
          <h2>valh2</h2>
        </h>
        <newnode>
          <name>fred</name>
          <type>book</type>
        </newnode>
        <newnode>
          <name>bob</name>
          <type>car</type>
        </newnode>
      </extrainfo>
      <xmlnode>
        <subnode1>val1</subnode1>
        <subnode2>val2</subnode2>
        <type>book</type>
      </xmlnode>
      <xmlnode>
        <subnode1>val3</subnode1>
        <subnode2>val4</subnode2>
        <type>car</type>
      </xmlnode>
    </root>
    If it's easier, I *think* we would be ok with something like:
    <newnode>
      <type name="fred">book</type>
      <type name="bob">car</type>
    </newnode>
    The closest I've come is:
    with sample_data as (select xmltype('<root>
                                           <xmlnode>
                                             <subnode1>val1</subnode1>
                                             <subnode2>val2</subnode2>
                                           </xmlnode>
                                           <xmlnode>
                                             <subnode1>val3</subnode1>
                                             <subnode2>val4</subnode2>
                                           </xmlnode>
                                         </root>') xml_to_update,
                                xmltype('<a>
                                           <b>valb</b>
                                           <c>valc</c>
                                           <d>
                                             <d1>vald1</d1>
                                             <d2>vald2</d2>
                                           </d>
                                           <e>vale</e>
                                           <f>valf</f>
                                           <g>
                                             <g1>valg1</g1>
                                             <g2>valg2</g2>
                                           </g>
                                           <h>
                                             <h1>valh1</h1>
                                             <h2>valh2</h2>
                                           </h>
                                           <multinode>
                                             <name>fred</name>
                                             <type>book</type>
                                             <head>1</head>
                                           </multinode>
                                           <multinode>
                                             <name>bob</name>
                                             <type>car</type>
                                             <head>0</head>
                                           </multinode>                                        
                                         </a>') xml_to_extract_from
                          from   dual)
    select xmlserialize(document
               xmlquery(
                 'copy $d := $old
                  modify (
                    insert node element extrainfo {
                      $new/a/b
                    , $new/a/d
                    , $new/a/f
                    , $new/a/h
                    , element newnode {
                                       $new/a/multinode/name
                                       ,$new/a/multinode/type
                    } as first into $d/root
                  return $d'
                 passing sd.xml_to_update as "old"
                       , sd.xml_to_extract_from as "new"
                 returning content
             indent
             ) fred
    from sample_data sd;
    Which produces:
    <newnode>
      <name>fred</name>
      <name>bob</name>
      <type>book</type>
      <type>car</type>
    </newnode>
    - obviously not right!
    Can anyone provide any hints? I've tried searching for similar examples, but I mustn't be putting in the right search terms or something!

    odie_63 wrote:
    or, similarly, to get the alternate output :
    copy $d := $old
    modify (
      insert node element extrainfo {
        $new/a/b
      , $new/a/d
      , $new/a/f
      , $new/a/h
      , element newnode {
          for $i in $new/a/multinode
          return element type {
            attribute name {data($i/name)}
          , data($i/type)
      } as first into $d/root
    return $d
    So we're going with the second method, but I've discovered that the "$i/name" node is not always present. When that happens, I would like to use a default value (for example, "george"). I promise I've searched and searched, but I'm completely failing to turn up anything that sounds remotely like what I'm after (seriously, I can't believe my google-fu sucks this badly!).
    Is there a simple way of doing it? The only thing that I've found that looks vaguely relevant is "declare default namespace...." but I'm not sure that that's the correct thing to use, or if it is, how I'm supposed to reference it when populating the attribute value.

  • Adding multiple e-mail alias addresses to an account

    Can someone please tell me how to add another e-mail address to my Mail account. I have tried using info from the Mail Help file, both "adding another account" and "adding multiple e-mail alias addresses to an account". Each time when I try to send a test message to or from the added e-mail address, I get the same message: "Cannot send message using the server mail.bellsouth.net. Use the Pop-up menu below to try a different outgoing mail server". The only pop-up is smtp .Mac.
    I have tried both methods shown in the HELP file and get the same message. I would really appreciate your help.

    Are you trying to add a second email account to Mail, or just add a second "(apparently) from" address to an existing account?
    If the former, we need to know some more detail, like:
    (1) who is the existing account, .mac or bellsouth?
    (2) Which are you trying to add, .mac or bellsouth?
    (3) I assume your ISP is Bell South?
    (4) What are the names of the smtp servers and what are their respective smtp server port numbers?
    (5) Are either of them using SSL on the smtp server?
    (6) I don't remember whether Tiger Mail has it or not, but in Leopard Mail, on the menu bar under "Window" there is a selection "Connection Doctor." If applicable to Tiger Mail, what does it say about your connections?
    (7) Which account can you send mail through and which one can't you send mail through?
    (8) Are your receiving mail okay through either or both accounts? Which one(s)?
    Now if you are trying to add a second "(apparently) from" address to an existing account, in Mail Prefs > Accounts > mail account > Email Address, just add a second email address separated by a comma like so:
       [email protected], [email protected] 
    You could have an issue with bellsouth or .mac requiring the domain name in the apparently from email address to match the domain name of the smtp mail server.

  • Accout statement (customer statement)standard forms ?

    I would like to modify customer statement(Account statement)forms.Here I am using Tcode F.27,I can take printout but cannot find a forms which we are using in that Tcode,I tried to find in NACE also but nothing related to FI/CO.pls kindly guide me on this.

    Hi jaya,
    find out for OPEN_FORM in ur F.27 program , from there u will find out form name.
    Regards
    Prabhu

  • Adding multiple components in same direction ?

    Hi,
    I'm adding multiple child panels to a single parent panel. One of such child panel is "xPanel" as shown below. The problem is that all the 4 labels overlap each other i.e. main Panel only displays "11111" i.e the last JLabel added. I know that specifying direction (e.g BorderLayout.NORTH etc) will fix the overlap problem but I want all the lables in a single row i.e. XXXXX 00000 YYYYY 11111 ..... any suggestions how to fix this ?
              JPanel xPanel = new JPanel(new BorderLayout());
              xPanel .add(new JLabel("XXXXX:"));
              xPanel .add(new JLabel("00000"));
              xPanel .add(new JLabel("YYYYY:"));
              xPanel .add(new JLabel("11111"));
              mParentPanel.AddPanel(xPanel , BorderLayout.NORTH);          

    The default layout for a JPanel is the FlowLayout. Why did you change it do a BorderLayout?
    I suggest you read this section from the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.html]Using Layout Managers so you understand how they work.

  • ITunes 9.2 stops adding multiple artwork in multiple selection mode. Help?

    Hi everybody,
    Since 2003 I've been using iTunes and adding multiple artwork in several tracks at once.
    Lets say: I added 10 tracks of a CD to iTunes library, then selected all of them and then right click to choose "Get Info > Multiple Item Information". Then I just dragged and dropped as many artwork pieces as I wanted onto the artwork window, one by one. Clicked OK and voilá.
    Now it will only accept one artwork. Following the procedure I used to do, now it will only take the last artwork I place onto the artwork window.
    Now the only way to get multiple artwork in a CD is adding all the artwork (lets say the 20 pages of the booklet) one by one in "each track" separately!, which is a pain in the neck.
    So now I have to add artwork one by one to each track one at a time.
    Is there a NEW way to add multiple artwork on multiple tracks at once in iTunes 9.2?
    Screen shot: http://grab.by/51UT
    Thank you for your help.

    Hi- you might've already figured this out on your own, but:
    A) add the first artwork picture (what you want for your cover artwork) using "Get Info > Multiple Item Information" - and close the Multiple Item Information window
    B) with the multiple tracks still selected, drag your additional artwork picture items into the artwork panel in the lower left corner of the iTunes window (this is the artwork panel titled "selected item").
    C) your additional artwork will be added to all of the selected items. You can click through the artworks using the left/right arrows above the artwork panel.
    Obviously you can also use this same method to add that same additional artwork to any other tracks, from other albums, etc. simply by selecting them as well.
    Side note, the easiest way to select all tracks from a single album: select the starting track, then use ctrl-shift and select the ending track- all tracks between those two will be selected.
    Aaaaaand you're done! Hope this helps!

  • Statement,Prepared Statement and callable statement

    Hi,
    Please let me know in which scenario we are using Statement,Prepared Statement and callable statement.
    and which is efficient one among the above.
    Thanks in advance

    Welcome to the forum!
    >
    Please let me know in which scenario we are using Statement,Prepared Statement and callable statement.
    >
    We don't know what scenario you are using those in or if you are using them at all. Are you asking what they are?
    For document related questions you should consult the documentation or use your favorite search engine to get information.
    See the Java Tutorial
    http://docs.oracle.com/javase/tutorial/jdbc/basics/prepared.html
    >
    The main feature of a PreparedStatement object is that, unlike a Statement object, it is given a SQL statement when it is created. The advantage to this is that in most cases, this SQL statement is sent to the DBMS right away, where it is compiled. As a result, the PreparedStatement object contains not just a SQL statement, but a SQL statement that has been precompiled. This means that when the PreparedStatement is executed, the DBMS can just run the PreparedStatement SQL statement without having to compile it first.
    >
    The Javadocs for your Java SDK have the API for each of those classes and a description of what they are. And the Oracle JDBC Developer Guide has extensive information on how to use them.
    http://docs.oracle.com/cd/B28359_01/java.111/b31224/toc.htm

  • Adding Multiple excel sheets

    Hi Experts,
    How i want to add multiple excel sheet in Xcelsius using liveoffice in single canvas.Hope i will expect good from you
    Regards,
    surigs

    Hi Surigs,
    Could you clarify what exactly you need? Do you mean adding multiple sheet? If yes, you can insert multiple sheet in the excel and add live office document.
    Thanks,
    Amit

  • [svn:osmf:] 13557: Fixing problem where a lingering TraitAggregationHelper causes elements to be added multiple times on ParallelDisplayObjectTrait .

    Revision: 13557
    Revision: 13557
    Author:   [email protected]
    Date:     2010-01-17 10:05:12 -0800 (Sun, 17 Jan 2010)
    Log Message:
    Fixing problem where a lingering TraitAggregationHelper causes elements to be added multiple times on ParallelDisplayObjectTrait.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelDisplayObjectTrait.as

    Revision: 13557
    Revision: 13557
    Author:   [email protected]
    Date:     2010-01-17 10:05:12 -0800 (Sun, 17 Jan 2010)
    Log Message:
    Fixing problem where a lingering TraitAggregationHelper causes elements to be added multiple times on ParallelDisplayObjectTrait.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelDisplayObjectTrait.as

Maybe you are looking for

  • Performing Init and Init of Delta in BI 7.0

    Hi, As we use to create two info packages in BW 3.5, one for "INIT" and another for "INIT of Delta". Do we have to create two infopackages in BI 7.0 too? If we create two info Packages, then do we have to create two DTP's too? Please let me know how

  • Satellite L50-B-1XF - Win 7 64bit drivers and software

    Hello, as I can't find anything about my model - Satellite L50-B-1XF (PSKTUE-04C00WGR) I will try it here... I bought two of these (one for me, one for my wife) with Win8.1 installed. Well... no need to say that this is one of the worst OS I ever see

  • How can I made a background picture in the page?

    HI    I made a news scene user km,but the news display page is very bald and ugly,How I can made a picture as the background or the banner of the page? Message was edited by:         cui zhao

  • Getting error when executing mysql command in powershell.

    When I run this it gives me an error and I'm not sure if I'm doing it right. Can someone look at my code please and thank you. It has a problem with the commandtext and is giving me this error: Exception calling "ExecuteNonQuery" with "0" argument(s)

  • How to start page number in footer lower down

    I'm creating an inventory catalog and I need to have all the pages numbered. I know how to insert the page numbers using the master pages, but they always start right at page 1. The first 8 pages are going to be a table of contents and need their own