String overlapping problem in mx:List caused by wordWrap

I'm using mx:List to display String items. The dataProvider is XMLListCollection. Some of the String is long so it takes more than one rows. I use the wordWrap to display the long String in more than one rows. The problem is that the next String item will overlapping with the long String. The mx:List can not adjust the vertical space for the Strings that needs more than one rows dynamically. Any suggections?

Here is solution: variableRowHeight="true"

Similar Messages

  • Setting input fields to an empty string BIG PROBLEM

    Hi Rob, thanks for your rerply, It makes sense alright, but I am using 2 seperate input fields. I have discovered what is causing the problem .
    After the user types into the inputfield and moves on to a different frame, I have set the input field to an empty string and this is what is causing the problem.
    I have tried setting the input field to an empty string in a movie script and on individual sprites and the first right answer is not excepted.I have to type in the right answer twice to get get a right response. I am actually using three seperate input fields in total, each with a different name and behavior. Even If I use one input field I still have the same problem. Its driving me crazey. Any Ideas.
    Anne

    I believe that the FIM Service always does trims on string, so you may be out of luck.
    What is your scenario / what are you trying to accomplish by setting a space in an attribute? A space is not an empty string in my definition.
    Regards, Soren Granfeldt
    blog is at http://blog.goverco.com | facebook https://www.facebook.com/TheIdentityManagementExplorer | twitter at https://twitter.com/#!/MrGranfeldt

  • Problem In Awt List

    I am Having problem with Awt List component
    setSize
    setPrefferedSize
    setMaximumSize
    None is working I have limited screen are to use in applet Hence I want to limit the width of List
    Below Is My code I am using in Devloping Some Applet.
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.Frame;
    import java.awt.List;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    public class ListSizeProblem extends Frame {
         public List list1;
         ListSizeProblem (String t) {
              this.setTitle(t); // setting up the main window
              this.setSize(500, 400);
              this.setLocation(50, 50);
              this.setLayout(new BorderLayout());
              addWindowListener(new WindowAdapter() { // application will exit if window is closed
                 public void windowClosing(WindowEvent e) {
                      System.exit(0);
              list1 = new List(15, false);
              //list1.setSize(new Dimension(40,200));
              list1.setPreferredSize(new Dimension(40,200));
              //list1.setMaximumSize(new Dimension(40,200));
               for (int i = 1; i < 21; i++) {
                 list1.add("But"+i);
              this.add(list1,BorderLayout.WEST);
              this.pack();
              this.setVisible(true);
         public static void main (String [] args) {
              ListSizeProblem mainframe = new ListSizeProblem("List Size");
    }can somebody help me

    It is indeed a bug. Once your List has data in it, the getPreferredSize method starts calling preferredSize(int rows) method. This method in turn asks the list's peer for the size. The result is that the preferred size you set is completely ignored (hence a bug). Quick fix would be to override the getPreferredSize method like so.
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.Frame;
    import java.awt.List;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    public class ListSizeProblem extends Frame {
        public List list1;
        ListSizeProblem(String t) {
            this.setTitle(t); // setting up the main window
            this.setSize(500, 400);
            this.setLocation(50, 50);
            this.setLayout(new BorderLayout());
            addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {
                    System.exit(0);
            list1 = new List(15, false) {
                Dimension size = new Dimension(40, 200);
                public java.awt.Dimension getPreferredSize() {
                    return size;
            for (int i = 1; i < 21; i++) {
                list1.add("But" + i);
            this.add(list1, BorderLayout.WEST);
            this.setVisible(true);
        public static void main(String[] args) {
            ListSizeProblem mainframe = new ListSizeProblem("List Size");
    }The list is not 200 pixels high, but this just comes from the fact that you don't have a BorderLayout.NORTH or BorderLayout.SOUTH object yet, so the BorderLayout is alowed to extend the height of the list.
    And you seem to havea pretty exact idea on the size you want your components to be. If the frame is not going to be resizable, then you can use no layout manager if you want. This would require you to set the exact bounds of every component you add to the frame.

  • Problems with Student List Part 1

    i have tried a lot of things to make this program run, but it doesn't.. so guys, i really need your help.. the following codes are to be saved as: StudentList.java, Student.java, Person.java, MyListArray.java and MyList.java.. the program will run through compiling and running StudentList.java.. this program adds Student Lists.. the problem is that it does not delete and insert item lists after is has been displayed.. so guys, i hope you can help me with this one..thanks in advance
    * @(#)StudentList.java
    * @author
    * @version 1.00 2009/1/13
    import java.util.*;
    public class StudentList extends MyListArray
         public static void menu()
              String [] menu = {"...Student List...",
                                    "1. Create List",
                                    "2. Add Student",
                                    "3. Delete Student",
                                    "4. Insert Student",
                                    "5. Display Student",
                                    "6. Quit"};
              for(int i = 0; i < menu.length; i++)
                   System.out.println(menu);
         public static void main(String[] args)
              MyListArray list = null;
              Scanner con = new Scanner(System.in);
              String idno = null;
              String familyName = null;
              String givenName = null;
              String mi = null;
              String course = null;
              int option = 0;
              Student t = null;
              Student s = null;
              while(option != 6)
                   menu();
                   System.out.print("Select item from above: ");
                   option = con.nextInt();
                   switch(option)
                        case 1: System.out.println("Create List");
                                  System.out.print("Enter size: ");
                                       int size = con.nextInt();
                                       list = new MyListArray(size);
                                       break;
                        case 2: System.out.println("Add Student");
                                  System.out.print("ID Number: ");
                                       idno = con.next();
                                  System.out.print("Family Name: ");
                                       familyName = con.next();
                                  System.out.print("Given Name: ");
                                       givenName = con.next();
                                  System.out.print("Middle Intitial: ");
                                       mi = con.next();
                                  System.out.print("Course: ");
                                       course = con.next();
                                  list.addItem(new Student(idno,familyName, givenName, mi, course));
                                  break;
                        case 3: System.out.println("Delete Student");
                                  System.out.print("Enter ID Number: ");
                                       idno = con.next();
                                       s = new Student();
                                       s.setIdNo(idno);
                                       list.deleteItem(s);
                                       break;
                        case 4: System.out.println("Insert Student");
                                  System.out.print("ID Number: ");
                                       idno = con.next();
                                  System.out.print("Family Name: ");
                                       familyName = con.next();
                                  System.out.print("Given Name: ");
                                       givenName = con.next();
                                  System.out.print("Middle Intitial: ");
                                       mi = con.next();
                                  System.out.print("Course: ");
                                       course = con.next();
                                  s = new Student(idno, familyName, givenName, mi, course);
                                  System.out.print("Insert at ID Number: ");
                                       idno = con.next();
                                       t = new Student();
                                       t.setIdNo(idno);
                                       list.insertItem(t,s);
                                       break;
                        case 5: System.out.println("Student List");
                                  System.out.println("" + list);
    * @(#)Student.java
    * @author
    * @version 1.00 2009/1/13
    public class Student extends Person
              private String idno;
              private String course;
         public Student(String idno, String familyName, String givenName, String mi, String course)
              super(familyName, givenName, mi);
              this.idno = idno;
              this.course = course;
         public Student()
              super();
              this.idno = "___";
              this.course = "___";           
         public String toString()
              return idno + " " + getFamilyName() + " " + getGivenName() + " " + getMi() + " " + course;
    Edited by: jen_nard on Jan 23, 2009 4:33 AM
    Edited by: jen_nard on Jan 23, 2009 4:36 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    hi, i have added some methods in my program..but still, it does not work correctly..
    * @(#)StudentList.java
    * @author
    * @version 1.00 2009/1/13
    import java.util.*;
    public class StudentList extends MyListArray
         public static void menu()
              String [] menu = {"...Student List...",
                                    "1. Create List",
                                    "2. Add Student",
                                    "3. Delete Student",
                                    "4. Insert Student",
                                    "5. Display Student",
                                    "6. Quit"};
              for(int i = 0; i < menu.length; i++)
                   System.out.println(menu);
         public static void main(String[] args)
              MyListArray list = null;
              Scanner con = new Scanner(System.in);
              String idno = null;
              String familyName = null;
              String givenName = null;
              String mi = null;
              String course = null;
              int option = 0;
              Student t = null;
              Student s = null;
              while(option != 6)
                   menu();
                   System.out.print("Select item from above: ");
                   option = con.nextInt();
                   switch(option)
                        case 1: System.out.println("Create List");
                                  System.out.print("Enter size: ");
                                       int size = con.nextInt();
                                       list = new MyListArray(size);
                                       break;
                        case 2: System.out.println("Add Student");
                                  System.out.print("ID Number: ");
                                       idno = con.next();
                                  System.out.print("Family Name: ");
                                       familyName = con.next();
                                  System.out.print("Given Name: ");
                                       givenName = con.next();
                                  System.out.print("Middle Intitial: ");
                                       mi = con.next();
                                  System.out.print("Course: ");
                                       course = con.next();
                                  list.addItem(new Student(idno,familyName, givenName, mi, course));
                                  break;
                        case 3: System.out.println("Delete Student");
                                  System.out.print("Enter ID Number: ");
                                       idno = con.next();
                                       s = new Student();
                                       s.setIdNo(idno);
                                       list.deleteItem(s);
                                       break;
                        case 4: System.out.println("Insert Student");
                                  System.out.print("ID Number: ");
                                       idno = con.next();
                                  System.out.print("Family Name: ");
                                       familyName = con.next();
                                  System.out.print("Given Name: ");
                                       givenName = con.next();
                                  System.out.print("Middle Intitial: ");
                                       mi = con.next();
                                  System.out.print("Course: ");
                                       course = con.next();
                                  s = new Student(idno, familyName, givenName, mi, course);
                                  System.out.print("Insert at ID Number: ");
                                       idno = con.next();
                                       t = new Student();
                                       t.setIdNo(idno);
                                       list.insertItem(t,s);
                                       break;
                        case 5: System.out.println("Student List");
                                  System.out.println(" " + list);
    * @(#)Student.java
    * @author
    * @version 1.00 2009/1/13
    public class Student extends Person
              private String idno;
              private String course;
         public Student(String idno, String familyName, String givenName, String mi, String course)
              super(familyName, givenName, mi);
              this.idno = idno;
              this.course = course;
         public Student()
              super();
              this.idno = "___";
              this.course = "___";           
         //setters
         public void setIdNo(String idno)
                   this.idno = idno;
         public void setCourse(String course)
              this.course = course;
         //getters
         public String getIdNo()
              return idno;
         public String getCourse()
              return course;
         public boolean equals(Object obj)
              boolean okey = false;
              if(obj instanceof StudentList)
                   Student s = (Student)obj;
                   if(s.getIdNo().equals(idno))
                        okey = true;
              return okey;
         public String toString()
              return idno + " " + super.toString() + " " + course;

  • Text overlapping problem

    Since I upgraded to 10.4.10, I dont know if I did something wrong but I have bad text overlapping problems in Safari and some other apps such as Software Update, I first noticed the overlapping when editing a Wikipedia article and in the text box the text kept overlapping. Another site where it is very noticeable is in Facebook, here's a screenshot:
    Even on this site it's pretty bad. It's the worst in text-boxes like in the one I'm typing in right now.
    This is driving me crazy, anyone else have this problem or know how to fix it? Thanks.
    Message was edited by: Johnny K.

    Ok, Johnny --
    I hated to ask cause it's "Old School."
    If you shut down your Mac every night,
    you should have something on your Mac that will run cron scripts,
    and do other helpful things for you.
    I personally use YASU.
    I run it about 1x month.
    It's free or donation-ware
    it's written just for Macs
    and is excellent.
    Here's where to go for more info on it:
    http://jimmitchell.org/projects/yasu/
    The new Macs were built to stay on 24/7.
    When you shut them off at night, you stop the regular
    maintenance it already has scheduled. YASU (or similar apps)
    will take care of everything for you.

  • A problem with this webpage caused Internet Explorer (IE9) to close and reopen the tab

    I have IE9 (using 32-bit version) installed on a relatively new laptop with Windows 7 64-bit. Up until last weekend IE9 worked fine and Flash Player worked fine too.
    At the weekend a webpage asked for Flash Player to be updated - which I did. Ever since then whenever I go to a webpage needing Flash Player I get the message "A problem with this webpage caused Internet Explorer to close and reopen the tab". This happens twice and then an IE9 error page.
    I have read the discussions in here about the problems with Flash Player 10.3 and have tried the various solutions. I have updated to 10.3.181.16 having tried 15 and 14 previously. Same problem.
    I have reset IE9. Same problem.
    I have disabled all add-ons which stops the problem. If I enable just the Flash Player add-on then the problem recurs. Since there are so many webpages that use Flash I do not want to run my browser without this add-on running.
    If I enable the add-on and run IE9 using software rendering instead of GPU rendering then I don't get the problem. However, this isn't exactly making the best use of the resources on my laptop.
    This may well all be related to the 10.3 problems but no one seems to have mentioned having a problem with tabs closing and reopening so I thought I would post on here to check.
    Any suggestions for how to solve this (other than using software rendering)?

    Thanks again for your reply. I appreciate the time you have taken to respond.
    I think, however, you misunderstand the problem. IE9 does not reopen the tabs on just one website - it is doing this on every website that needs Flash Player. Therefore, running in Compatibility mode is not an option. In fact, because IE9 reopens the tabs so quickly and then ends up with an error page, I cannot even click the Compatibility button anyway.
    I could use ActiveX filtering - true. All that this means is that Flash does not play on any of the websites. When I want to re-enable ActiveX for a particular website where I need to see the Flash Player item, this just triggers the error.
    This problem also happened on .14, .15 and well as the current .16 version. It did not happen with the previous version of Flash Player that I had on the system (version 10.2 I think).
    The fact is that either Flash Player or IE9 or both is/are broken. The two choices I am still left with are:
    1. Use software rendering (which contradicts the latest advertisements for IE9 about unleashing the power of IE)
    2. Use another browser - I have no problems with either Firefox or Chrome

  • Itunes won't open and i am getting this error message: the application itunes quit unexpectedly. the problem may have been caused by the libgnsdk_dsp.1.9.5.dylib plug in

    Have not changed any settings on my mac. Quit the application end of the day. The next day I went to start it and it won't open. Everytime I try to launch it, it won't open and I get this error message: The application itunes quit unexpectedly. The problem may have been caused by the libgnsdk_dsp.1.9.5.dylib plug in

    Have not changed any settings on my mac. Quit the application end of the day. The next day I went to start it and it won't open. Everytime I try to launch it, it won't open and I get this error message: The application itunes quit unexpectedly. The problem may have been caused by the libgnsdk_dsp.1.9.5.dylib plug in

  • I would like to create a playlist of some of my voicememos to hear on my iphone5. I have no problem creating the list and can listen on playlist on computer but not when i sync to my phone. How can I listen to voicememos in a playlist on my iPhone?

    I would like to create a playlist of some of my voicememos to hear on my iphone5. I have no problem creating the list and can listen on playlist on computer but not when i sync to my phone. How can I listen to voicememos in a playlist on my iPhone?

    Hi czigrand,
    Thanks for visiting Apple Support Communities.
    Currently, you can gift dollar amounts or individual items (EG. songs) on the iTunes Store. See this article for more information:
    In the iTunes Store, you can gift a dollar amount or specific music, movies, TV shows, or apps from your iPhone, iPod touch, iPad, Mac, or PC. Follow these steps to send a gift from the iTunes Store.
    iTunes: Sending iTunes Gifts
    http://support.apple.com/kb/HT2736
    Best Regards,
    Jeremy

  • I have been unable to publish my website due to this message "iweb quit unexpectedly - the problem may have been caused by FTP plug-in" - Iweb seems to register all pages, then crashes before publishing.Tried quite few thread trouble shoots, no luck.Help?

    I have mac book pro 10.5 Leopard
    Have just started using iweb and have small site of about 5 pages, plus blog.  I have yet been able to publish, each time I try iweb crashes and receive following note -
    The application iweb quite unexpectedly.  The problem may have been caused by the FTPKit Plug-in.
    I have tried a few troubleshooting methods recomended on other threads, ie. deleting caches, copying domain and reboots... but no luck.
    Any help very much appreciated.

    Reinstall iWeb from the source you got it from originallhy.  Or, if you're running iWeb 3 download and apply or reapply the iWeb 3.0.4 updater. It included that plugin.
    OT

  • Part of a string contained in one element list's strings

    Hi evebody,
    I have process that use this sql request :
    SELECT $code
    FROM DUAL
    WHERE $code IN ('BMW','MERCEDES','TOYOTA','PEUGEOT');
    Actually, the code is a string which value is car brand. for example 'BMW'.
    I want to change my process and have the possibility to put in $code multiples car brand separated by '||' . For example, 'BMW||RENAULT'.
    In this way, howa could I change my sql request?
    ie I want to check if a part of string exists in a element list's string.
    PLEASE HELP ME
    THANKS

    One way is to use regular expressions:
    SQL> variable code varchar2(100);
    SQL> exec :code := 'TOYOTA';
    PL/SQL procedure successfully completed.
    SQL> SELECT  :code
      2    FROM  DUAL
      3    WHERE REGEXP_LIKE('||' || :code || '||','\|\|BMW\|\||\|\|MERCEDES\|\||\|\|TOYOTA\|\||\|\|PEUGEOT\|\|')
      4  /
    :CODE
    TOYOTA
    SQL> exec :code := 'BMW||RENAULT';
    PL/SQL procedure successfully completed.
    SQL> SELECT  :code
      2    FROM  DUAL
      3    WHERE REGEXP_LIKE('||' || :code || '||','\|\|BMW\|\||\|\|MERCEDES\|\||\|\|TOYOTA\|\||\|\|PEUGEOT\|\|')
      4  /
    :CODE
    BMW||RENAULT
    SQL> SY.

  • Firefox has detected that the server is redirecting the request for this address in a way that will never complete. * This problem can sometimes be caused by disabling or refusing to accept cookies.

    Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
    * This problem can sometimes be caused by disabling or refusing to accept
    cookies.

    In my experience this is most of the times a server issue of the website provider.
    Does this error occur on all Websites or just one specific Website?
    Does this Website load in Internet Explorer (or any other Browser?)?

  • I have problem were safari quits before it has loaded up, I get a message " the problem may have been caused by ct_plugins plug-in" can anyone help. Regards Paul

    I have a problem were safari quits before it has loaded up, I get a message " the application safari quit unexpectedly. The problem may have been caused by
    Ct_plugins plug-in.
    Can anyone help
    Regards
    Paul

    HI and welcome...
    Open a Finder window. *Select your MacintoshHD in the Sidebar on the left*. Now open the Library folder, then the ScriptingAdditions folder, the InputManagers folder, and the ApplicationSupport folder.
    Move these files to the Trash:
    ctscripting.osax/Contents/MacOS/ctscripting
    CTLoader/ctloader.bundle/Contents/MacOS/ctloader
    Conduit/Plugins/cttoolbar.bundle/Contents/MacOS/ct_plugins
    Relaunch Safari.
    Carolyn

  • The application Safari quit unexpectedly.  The problem may have been caused

    I tried to download free tv or something of that sort. Ever since, Firefox works but I can no longer use Safari. Can someone please tell me how to fix this?!!! I'm not very computer savvy, but I can follow specific, detailed directions in layman's terms. Thank you--this is driving me crazy!

    I failed to give more information. The message says "The application Safari quit unexpectedly. The problem may have been caused by the ct_plugins plug-in.
    Process: Safari [1023]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0.4 (5531.21.10)
    Build Info: WebBrowser-55312110~1
    Code Type: X86 (Native)
    Parent Process: launchd [65]
    Interval Since Last Report: 2374 sec
    Crashes Since Last Report: 6
    Per-App Interval Since Last Report: 29 sec
    Per-App Crashes Since Last Report: 6
    Date/Time: 2010-02-20 14:18:02.469 -0500
    OS Version: Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: BEF1EC3C-9D18-4811-9F7D-3F46A33B67CF
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 14
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSRangeException', reason: '* -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)'
    Thread 0:
    0 libSystem.B.dylib 0x9002f6ea malloc_size + 56
    1 com.apple.CoreFoundation 0x91a1320f _CFRuntimeCreateInstance + 159
    2 com.apple.CoreFoundation 0x919d8a3e __CFDataInit + 94
    3 com.apple.Foundation 0x90609aff bytesInEncoding + 959
    4 com.apple.Foundation 0x90609701 -[NSCFString UTF8String] + 177
    5 com.conduit.cttoolbar 0x1330d743 +[CTGlobals getStringMD5:] + 74
    6 com.conduit.cttoolbar 0x13322afa -[CTExternalMenuHandler getFile:] + 93
    7 com.conduit.cttoolbar 0x1330b489 -[CTExternalMenu loadExternalMenuFile] + 129
    8 com.apple.Foundation 0x905fc9ac __NSThreadPerformPerform + 476
    9 com.apple.CoreFoundation 0x91a1140f CFRunLoopRunSpecific + 3215
    10 com.apple.CoreFoundation 0x91a11aa8 CFRunLoopRunInMode + 88
    11 com.apple.HIToolbox 0x929082ac RunCurrentEventLoopInMode + 283
    12 com.apple.HIToolbox 0x92907ffe ReceiveNextEventCommon + 175
    13 com.apple.HIToolbox 0x92907f39 BlockUntilNextEventMatchingListInMode + 106
    14 com.apple.AppKit 0x942c36d5 _DPSNextEvent + 657
    15 com.apple.AppKit 0x942c2f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    16 com.apple.Safari 0x0000c045 0x1000 + 45125
    17 com.apple.AppKit 0x942bbf9f -[NSApplication run] + 795
    18 com.apple.AppKit 0x942891d8 NSApplicationMain + 574
    19 com.apple.Safari 0x000029d2 0x1000 + 6610
    Thread 1:
    0 libSystem.B.dylib 0x9002b46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x90055dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x93cd8842 ***::TCMalloc_PageHeap::scavengerThread() + 578
    3 com.apple.JavaScriptCore 0x93cd886f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4 libSystem.B.dylib 0x90055155 pthreadstart + 321
    5 libSystem.B.dylib 0x90055012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x9002b46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x90055dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x91e0a1d4 WebCore::IconDatabase::syncThreadMainLoop() + 260
    3 com.apple.WebCore 0x91e06009 WebCore::IconDatabase::iconDatabaseSyncThread() + 185
    4 libSystem.B.dylib 0x90055155 pthreadstart + 321
    5 libSystem.B.dylib 0x90055012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x90024286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9002ba7c mach_msg + 72
    2 com.apple.CoreFoundation 0x91a10e7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91a11aa8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x974bb264 CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x90055155 pthreadstart + 321
    6 libSystem.B.dylib 0x90055012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x9002b46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x90055dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.Foundation 0x90643932 -[NSCondition wait] + 210
    3 com.apple.Foundation 0x905fc27a -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 938
    4 com.apple.Foundation 0x9064f8e8 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
    5 com.conduit.cttoolbar 0x1330ba46 -[CTExternalMenu reloadExternalMenu:] + 275
    6 com.conduit.cttoolbar 0x1330affd -[CTExternalMenu buildObject] + 94
    7 com.conduit.cttoolbar 0x13362f82 -[CTThread run] + 177
    8 com.apple.Foundation 0x905fbdfd -[NSThread main] + 45
    9 com.apple.Foundation 0x905fb9a4 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x90055155 pthreadstart + 321
    11 libSystem.B.dylib 0x90055012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x90024286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9002ba7c mach_msg + 72
    2 com.apple.CoreFoundation 0x91a10e7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91a11b04 CFRunLoopRun + 84
    4 com.apple.QTKit 0x917c7b8f QTSurfaceRendererScheduledDisplayThread + 105
    5 libSystem.B.dylib 0x90055155 pthreadstart + 321
    6 libSystem.B.dylib 0x90055012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x90024286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9002ba7c mach_msg + 72
    2 com.apple.CoreFoundation 0x91a10e7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91a11b04 CFRunLoopRun + 84
    4 com.apple.QTKit 0x917beb56 QTVisualContextImageProviderWorkLoop + 108
    5 libSystem.B.dylib 0x90055155 pthreadstart + 321
    6 libSystem.B.dylib 0x90055012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x9002b46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x90055dcd pthreadcondwait$UNIX2003 + 73
    2 libGLProgrammability.dylib 0x93d7ab32 glvmDoWork + 162
    3 libSystem.B.dylib 0x90055155 pthreadstart + 321
    4 libSystem.B.dylib 0x90055012 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x9002b46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x90055dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.Foundation 0x90643932 -[NSCondition wait] + 210
    3 com.apple.Foundation 0x905fc27a -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 938
    4 com.apple.Foundation 0x9064f8e8 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
    5 com.conduit.cttoolbar 0x13339b13 -[CTRadioPlayer buildObject] + 773
    6 com.conduit.cttoolbar 0x13362f82 -[CTThread run] + 177
    7 com.apple.Foundation 0x905fbdfd -[NSThread main] + 45
    8 com.apple.Foundation 0x905fb9a4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x90055155 pthreadstart + 321
    10 libSystem.B.dylib 0x90055012 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x9002b46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x90055dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.Foundation 0x90643932 -[NSCondition wait] + 210
    3 com.apple.Foundation 0x905fc27a -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 938
    4 com.apple.Foundation 0x9064f8e8 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
    5 com.conduit.cttoolbar 0x1330ba46 -[CTExternalMenu reloadExternalMenu:] + 275
    6 com.conduit.cttoolbar 0x1330affd -[CTExternalMenu buildObject] + 94
    7 com.conduit.cttoolbar 0x13362f82 -[CTThread run] + 177
    8 com.apple.Foundation 0x905fbdfd -[NSThread main] + 45
    9 com.apple.Foundation 0x905fb9a4 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x90055155 pthreadstart + 321
    11 libSystem.B.dylib 0x90055012 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x9002b46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x90055dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.Foundation 0x90643932 -[NSCondition wait] + 210
    3 com.apple.Foundation 0x905fc27a -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 938
    4 com.apple.Foundation 0x9064f8e8 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
    5 com.conduit.cttoolbar 0x1330ba46 -[CTExternalMenu reloadExternalMenu:] + 275
    6 com.conduit.cttoolbar 0x1330affd -[CTExternalMenu buildObject] + 94
    7 com.conduit.cttoolbar 0x13362f82 -[CTThread run] + 177
    8 com.apple.Foundation 0x905fbdfd -[NSThread main] + 45
    9 com.apple.Foundation 0x905fb9a4 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x90055155 pthreadstart + 321
    11 libSystem.B.dylib 0x90055012 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x90024286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9002ba7c mach_msg + 72
    2 com.apple.CoreFoundation 0x91a10e7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91a11aa8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x9065f520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x905fbdfd -[NSThread main] + 45
    6 com.apple.Foundation 0x905fb9a4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x90055155 pthreadstart + 321
    8 libSystem.B.dylib 0x90055012 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x9002b46e _semwaitsignal + 10
    1 com.apple.Foundation 0x90699151 +[NSThread sleepUntilDate:] + 97
    2 com.conduit.cttoolbar 0x133035c8 -[CTIconHandler updateImages] + 130
    3 com.conduit.cttoolbar 0x13362f82 -[CTThread run] + 177
    4 com.apple.Foundation 0x905fbdfd -[NSThread main] + 45
    5 com.apple.Foundation 0x905fb9a4 _NSThread__main_ + 308
    6 libSystem.B.dylib 0x90055155 pthreadstart + 321
    7 libSystem.B.dylib 0x90055012 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x900661fa pread$UNIX2003 + 10
    1 com.apple.Safari 0x00191fdf 0x1000 + 1642463
    2 com.apple.Safari 0x0019e26a 0x1000 + 1692266
    3 com.apple.Safari 0x0019e5e2 0x1000 + 1693154
    4 com.apple.Safari 0x0019e5e2 0x1000 + 1693154
    5 com.apple.Safari 0x001fa326 0x1000 + 2069286
    6 com.apple.Safari 0x00203e9f 0x1000 + 2109087
    7 com.apple.Safari 0x000284ec 0x1000 + 161004
    8 com.apple.Safari 0x000c7242 0x1000 + 811586
    9 com.apple.Safari 0x00027e82 0x1000 + 159362
    10 com.apple.Safari 0x00027da3 0x1000 + 159139
    11 com.apple.Safari 0x00027d16 0x1000 + 158998
    12 com.apple.Safari 0x00027488 0x1000 + 156808
    13 com.apple.Safari 0x000272cd 0x1000 + 156365
    14 com.apple.Safari 0x00027259 0x1000 + 156249
    15 com.apple.Safari 0x0002705d 0x1000 + 155741
    16 com.apple.Safari 0x0002663b 0x1000 + 153147
    17 com.apple.Safari 0x00025f24 0x1000 + 151332
    18 com.apple.Safari 0x00025ccb 0x1000 + 150731
    19 com.apple.CoreFoundation 0x91a113c5 CFRunLoopRunSpecific + 3141
    20 com.apple.CoreFoundation 0x91a11aa8 CFRunLoopRunInMode + 88
    21 com.apple.Safari 0x0002591f 0x1000 + 149791
    22 com.apple.Safari 0x00025648 0x1000 + 149064
    23 com.apple.Safari 0x000255d3 0x1000 + 148947
    24 libSystem.B.dylib 0x90055155 pthreadstart + 321
    25 libSystem.B.dylib 0x90055012 thread_start + 34
    Thread 14 Crashed:
    0 com.apple.CoreFoundation 0x91a8ae94 __TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION__ + 4
    1 libobjc.A.dylib 0x973e0e3b objcexceptionthrow + 40
    2 com.apple.CoreFoundation 0x91a8adcb +[NSException raise:format:arguments:] + 155
    3 com.apple.CoreFoundation 0x91a8ae0a +[NSException raise:format:] + 58
    4 com.apple.Foundation 0x90678fcf _NSArrayRaiseBoundException + 127
    5 com.apple.Foundation 0x905f6788 -[NSCFArray objectAtIndex:] + 72
    6 com.conduit.cttoolbar 0x13303857 -[CTIconHandler getImage:forItem:] + 314
    7 com.conduit.cttoolbar 0x132eabf7 -[CTMenuItem buildObject] + 227
    8 com.conduit.cttoolbar 0x132fa3ae +[CTComponentFactory newMenuItem:forToolbar:] + 558
    9 com.conduit.cttoolbar 0x132e463a -[CTDynaMenu buildObject] + 288
    10 com.conduit.cttoolbar 0x13362f82 -[CTThread run] + 177
    11 com.apple.Foundation 0x905fbdfd -[NSThread main] + 45
    12 com.apple.Foundation 0x905fb9a4 _NSThread__main_ + 308
    13 libSystem.B.dylib 0x90055155 pthreadstart + 321
    14 libSystem.B.dylib 0x90055012 thread_start + 34
    Thread 14 crashed with X86 Thread State (32-bit):
    eax: 0xa01a60f0 ebx: 0x973e0e1c ecx: 0xa01a51a0 edx: 0x002f8000
    edi: 0x00000000 esi: 0xa0066c38 ebp: 0xb022aac8 esp: 0xb022aac8
    ss: 0x0000001f efl: 0x00000282 eip: 0x91a8ae94 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x2f221000
    Binary Images:
    0x1000 - 0x278ff2 com.apple.Safari 4.0.4 (5531.21.10) <408df699beb70a81fc282fe4fb802483> /Applications/Safari.app/Contents/MacOS/Safari
    0x2d8000 - 0x2e7ffc SyndicationUI ??? (???) <343075ab9dcaa627f8fe84fcd0c01702> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x562000 - 0x563ffc +com.yourcompany.ct_loader 1.3.0.7 (1307) <3a0d89b5efcc6a3a34e6105302ae055c> /Library/InputManagers/CTLoader/ctloader.bundle/Contents/MacOS/ctloader
    0x119c6000 - 0x11bcdfef com.apple.RawCamera.bundle 2.1.0 (474) <48a574d3b3269c8dbdc38d6f67879317> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x132db000 - 0x1339cfff +com.conduit.cttoolbar 1.3.0.7 (1307) <ac700ef6ff1811187d231b123404b3ba> /Library/Application Support/Conduit/Plugins/cttoolbar.bundle/Contents/MacOS/ct_plugins
    0x15cf1000 - 0x15d0dff7 GLRendererFloat ??? (???) <927b7d5ce6a7c21fdc761f6f29cdf4ee> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x15d80000 - 0x15f05fe3 GLEngine ??? (???) <3bd4729832411ff31de5bb9d97e3718d> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x15f33000 - 0x16309fef com.apple.driver.AppleIntelGMAX3100GLDriver 1.5.48 (5.4.8) <91a7c520d2f372780b5c2f14307a7501> /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/App leIntelGMAX3100GLDriver
    0x181ff000 - 0x18204ff3 libCGXCoreImage.A.dylib ??? (???) <ebbf9ab0f700c881f7e2f94ffedc1bdf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x90022ffa libJPEG.dylib ??? (???) <50b881dd5a5795d38405c9c88c2806fa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x90023000 - 0x9018aff3 libSystem.B.dylib ??? (???) <ae47ca9b1686b065f8ac4d2de09cc432> /usr/lib/libSystem.B.dylib
    0x9018b000 - 0x901f1ffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x90296000 - 0x90570ff3 com.apple.CoreServices.CarbonCore 786.11 (786.14) <d5cceb2fe9551d345d40dd1ecf409ec2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90571000 - 0x90571ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90572000 - 0x905effef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x905f0000 - 0x905f0ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x905f1000 - 0x9086dfe7 com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9086e000 - 0x9086effb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9086f000 - 0x908a9ffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x908aa000 - 0x908aaffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x908ab000 - 0x908e9fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x908ea000 - 0x909c6fef com.apple.WebKit 5531.21 (5531.21.8) <aac476a6fa3231d4cdce9a111143e0b7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x909c7000 - 0x90aafff3 com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90ab0000 - 0x90dd6fe2 com.apple.QuickTime 7.6.4 (1327.73) <96515f6a2d628cd2105c7082295199b5> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90dd7000 - 0x90ddffff com.apple.DiskArbitration 2.2.1 (2.2.1) <d97688958e0b1fdcd4747088bdf1962a> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90de0000 - 0x90e0dfeb libvDSP.dylib ??? (???) <e89461ed03200fb3c0304e62e14a42ed> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90e0e000 - 0x90e50fef com.apple.NavigationServices 3.5.2 (163) <26eeb5a205f749aad83d5dac0330c41f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90e51000 - 0x90e79ff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x90fb2000 - 0x91652feb com.apple.CoreGraphics 1.409.5 (???) <a40644ccdbdc76e3a0ab4d468b2f9bdd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x91653000 - 0x91659fff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9165a000 - 0x9173bff7 libxml2.2.dylib ??? (???) <b3bc0b280c36aa17ac477b4da56cd038> /usr/lib/libxml2.2.dylib
    0x9173c000 - 0x91740fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x91741000 - 0x917f8ff3 com.apple.QTKit 7.6.4 (1327.73) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x917f9000 - 0x917fdfff libGIF.dylib ??? (???) <3c7100e80b7f7ca8809cf9512c1a6004> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x917fe000 - 0x9197efff com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9197f000 - 0x9197fffe com.apple.quartzframework 1.5 (1.5) <49afd7e7e3b2cad89cfaf2ac8c67c8a4> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x91980000 - 0x91980ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91981000 - 0x9199dff3 libPng.dylib ??? (???) <271373dd41f56369a3dfca0ed2be579a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9199e000 - 0x91ad1fe7 com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91b05000 - 0x91bccff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91bcd000 - 0x91c26ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91c27000 - 0x91c3dfff com.apple.DictionaryServices 1.0.0 (1.0.0) <7e9ff586b5c9d02b09e2a5527d98524f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91c3e000 - 0x91c43fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x91c44000 - 0x91ccbff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x91ccc000 - 0x91cf5fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x91d48000 - 0x91df8fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91e03000 - 0x926d4fff com.apple.WebCore 5531.21 (5531.21.8) <fa100d959d8655e174d84b87fe154b31> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x926d5000 - 0x926f2ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x926f3000 - 0x927adfe3 com.apple.CoreServices.OSServices 228 (228) <bc83e97f6888673c33f86652677c09cb> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x927ae000 - 0x927b5fe9 libgcc_s.1.dylib ??? (???) <28a7cbc3a5ca2982d124668306f422d9> /usr/lib/libgcc_s.1.dylib
    0x927eb000 - 0x9282cfe7 libRIP.A.dylib ??? (???) <e9c5df8bd574b71e55ac60c910b929ce> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9282d000 - 0x9282dff8 com.apple.ApplicationServices 34 (34) <e9cd7c823062c4382d89e3c9997f4739> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9282e000 - 0x928c1fff com.apple.ink.framework 101.3 (86) <dfa9debcd7537849d228021d1d9c0f63> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x928c2000 - 0x928d2fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <7bd1ec22c47e62a11b34d7ba66606e2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x928d8000 - 0x92be0fe7 com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92be1000 - 0x92c1bfe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92c1c000 - 0x92c47fe7 libauto.dylib ??? (???) <a64961ed20db64f0f439bfbc6f962bf9> /usr/lib/libauto.dylib
    0x92c48000 - 0x92ca4ff7 com.apple.htmlrendering 68 (1.1.3) <a9f65fa1c4668dc7c49af5bf7d5287ad> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92e09000 - 0x93219fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9321a000 - 0x93353ff7 libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x93354000 - 0x9336cff7 com.apple.CoreVideo 1.6.0 (20.0) <587c9c8966070a7d50276db35e1c76aa> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9336d000 - 0x93379ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9337a000 - 0x93388ffd libz.1.dylib ??? (???) <545ca09467025f77131cfac09d8b9375> /usr/lib/libz.1.dylib
    0x93389000 - 0x9348fff7 com.apple.PubSub 1.0.4 (65.11) <bcc4ae4e2dacbd25c5415bf9f7c65a67> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x93490000 - 0x9349dfe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9349e000 - 0x93550ffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0x93551000 - 0x93580fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93581000 - 0x93583fff com.apple.securityhi 3.0 (30817) <ec9d62cf117b0f5f0cea986acf420351> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93584000 - 0x93611ff7 com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9367a000 - 0x936f9ff5 com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x936fa000 - 0x93718fff libresolv.9.dylib ??? (???) <36c871d5da9b49bb5bcf0449833d1dc5> /usr/lib/libresolv.9.dylib
    0x93719000 - 0x93731fff com.apple.openscripting 1.2.8 (???) <54ab21172b8b3caa601dde44872a9c0d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93732000 - 0x938c1fe7 com.apple.CoreAUC 3.08.0 (3.08.0) <276d2dc9250afad7868a50e3b283b1f2> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x938c2000 - 0x938c7fff com.apple.CommonPanels 1.2.4 (85) <3b64ef0de184d09c6f99a1a7e77e42be> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x938c8000 - 0x938fafff com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x938fb000 - 0x938fdff5 libRadiance.dylib ??? (???) <aefd52482869bb5010672679d151167e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x939e7000 - 0x93a36fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x93a37000 - 0x93a37ffa com.apple.CoreServices 32 (32) <2760719f7a81e8c2bdfd15b0939abc29> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93a38000 - 0x93a61fff libcups.2.dylib ??? (???) <ee771753dd1111b656a2daa234a9e971> /usr/lib/libcups.2.dylib
    0x93a62000 - 0x93aa1fef libTIFF.dylib ??? (???) <801873cbd85ba7bdfe7646fe97a54ca3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93aa5000 - 0x93aa5fff com.apple.Carbon 136 (136) <054ca98d0e0b0b2aa6d860fa36b40e3f> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x93aa6000 - 0x93b33ff7 com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x93b34000 - 0x93b7ffe1 com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x93b80000 - 0x93bb1ffb com.apple.quartzfilters 1.5.0 (1.5.0) <01090d7204c55b32a6a11199fa0d2e2b> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93bb2000 - 0x93d52fff com.apple.JavaScriptCore 5531.21 (5531.21.9) <8b132638e4d517b8cd4613155ed82b87> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93d53000 - 0x94224fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x94225000 - 0x94282ffb libstdc++.6.dylib ??? (???) <6106b1f2b0b303b06ae476253dbb5f3f> /usr/lib/libstdc++.6.dylib
    0x94283000 - 0x94a81fef com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94a94000 - 0x94ab2ff3 com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <77d36e1bf2ee090f490950eba225dfb0> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x94ab3000 - 0x94ab3ff8 com.apple.Cocoa 6.5 (???) <e9318c93615b27231498bbe585b8da98> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94ab4000 - 0x94aeafef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib
    0x94aeb000 - 0x94bb6fef com.apple.ColorSync 4.5.3 (4.5.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94bb7000 - 0x94bbeffe libbsm.dylib ??? (???) <5582985a86ea36504cca31788bccf963> /usr/lib/libbsm.dylib
    0x94bbf000 - 0x94bd4ffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94bd5000 - 0x94c68ff3 com.apple.ApplicationServices.ATS 3.8 (???) <eda9db16110de6b7fd9436cd0daa787d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x94c69000 - 0x94c8dfff libxslt.1.dylib ??? (???) <ec4c269815bab8e7211cb8fe9df3a9a3> /usr/lib/libxslt.1.dylib
    0x94c8e000 - 0x94c99fe7 libCSync.A.dylib ??? (???) <d88c20c9a2fd0676dec62fddfa74979f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94cb2000 - 0x9504ffef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95050000 - 0x95221ff3 com.apple.security 5.0.5 (36371) <c7f5d1b89c9891d332c81d1c5fe925e3> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95222000 - 0x955e0fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x955e1000 - 0x95632ff7 com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95633000 - 0x95633ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1bce4a22b6a5cc7055d0938ddad269b2> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x95634000 - 0x9567dfef com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9567e000 - 0x95687fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <6a6518b392d3d41ace3dcea69d6809d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95688000 - 0x95702ff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95703000 - 0x96653ff6 com.apple.QuickTimeComponents.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x96654000 - 0x96664ffc com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96665000 - 0x966a5fff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x966a6000 - 0x966a9fff com.apple.help 1.1 (36) <175489f8adf287b3ebd259362b0292c0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x966aa000 - 0x966e1fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <cfd64ded4da1064ce316243fd425d5a4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x966e2000 - 0x966e9ff7 libCGATS.A.dylib ??? (???) <1339abfb67318d65c0130f76bc8c4da6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x966ea000 - 0x96767feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x969fa000 - 0x96a6cfff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96ab2000 - 0x96c04ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96c05000 - 0x96c07ffd com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x96c38000 - 0x96d70fe7 com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x96d71000 - 0x96d76fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96d84000 - 0x96d85ffc libffi.dylib ??? (???) <596e0dbf626b211741cecaa9698f271b> /usr/lib/libffi.dylib
    0x96d86000 - 0x96de0ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96de1000 - 0x96debfeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <caa41909dcb5a18a94bc68cd13999bd5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96dec000 - 0x96e76fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <a6edef2d49ffdee3b01010b7e6edac1f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x96e77000 - 0x96e9bfeb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x96e9c000 - 0x96fe4ff7 com.apple.ImageIO.framework 2.0.6 (2.0.6) <7f73ef328c8e8566f3f204b5a540a7f0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96fe5000 - 0x96ff1ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x96ff2000 - 0x97001fff libsasl2.2.dylib ??? (???) <c0bb658cd951bbe8882244fc5db4617b> /usr/lib/libsasl2.2.dylib
    0x97002000 - 0x970a9feb com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x970aa000 - 0x970b1fff com.apple.agl 3.0.9 (AGL-3.0.9) <2526a28a2fc087c09f9238dd03684513> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97125000 - 0x972e1ff3 com.apple.QuartzComposer 2.1 (106.13) <f487aaca8ebdc7e334e2c79cebd8da66> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x973d7000 - 0x974b7fff libobjc.A.dylib ??? (???) <bba0c22add60c7724e259ab28de8953e> /usr/lib/libobjc.A.dylib
    0x974b8000 - 0x9755ffec com.apple.CFNetwork 438.14 (438.14) <5f9ee0430b5f6319f18d9b23e777e0d2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x97565000 - 0x97574ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <47c451a0ea1fd2ebd6a192ecdc3f3867> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • Problem during number assignment cause record in iw51

    Hi,
    I am getting this error message in my BAPI(BAPI_SERVNOT_CREATE).Kindly suggest me what am I supposed to do.
    I am getting the error message while assigning the cause code "Problem during number assignment cause record "
    Please have a look at my code link.
    http://selectoptions.blogspot.in/2012/03/report-zbapiservnot.html#!http://selectoptions.blogspot.com/2012/03/report-zbapiservnot.html
    Edited by: dhinesh on Mar 8, 2012 5:05 AM
    Edited by: dhinesh on Mar 8, 2012 5:08 AM

    Hi
    The problem seems to be with the number range given for the document type you are using for posting the rentals.  When you simulate it, no posting happens that is why the problems does not come fore.  But when the tick is removed, the system is trying to post the document and at the same time, since the number range of internal type, the number you are giving (hope you might be giving some number for your document or something like that..I am not sure about your module), the system throws the error.  Please check your entry.

  • I am English but I live in Spain. when I try to download an app now, as well as my password i get asked to complete a security question from a list. The problem is the list is in Spanish. How can I turn this additional security off

    I am English but I live in Spain. when I try to download an app now, as well as my password i get asked to complete a security question from a list. The problem is the list is in Spanish. How can I turn this additional security off.
    Please note: I dont speak Spanish.
    Please HELP

    You can't turn it off.

Maybe you are looking for

  • Jdbc receiver error in RWB

    My scenario is Idoc to jdbc.. I m able to successfully send the idoc from R3 and it is received in XI also. However the message does not reach to database and am getting the following error in RWB of XI. "Error when attempting to get processing resou

  • Table in a table in smartforms

    Hi , I have to design a form with a table and one of the columns of this table have structure of a table, i mean corresponding to one entry in main table,this column will have some 3 entries. yogesh

  • ISA-Ecommerce : Passing extension data at item level to CRM backend?

    Hi Experts, I want to pass the extension filed data which is present at item level to the CRM back end system. In DEMO1 example provided, they have demonstrated about header data to pass. HeaderData headerdata = isaBOM.getBasket().getHeaderData();(he

  • Skype not load correctly in my win 8..

    hallo everyone ihave problem with my Skype application.. after installing in my win 8.. Skype not load correctly in my win 8.. it display  like this.. anyone know why this happens?? Itry to sign in in there, but it just not respond..

  • ORA-01801 Error

    Hi, We are using Oracle Ver 9.2.0.5 and the application connects to the database using JDBC. When are facing ORA-01801 date format error while executing some queries. When the same query is executed in SQL*Plus it gives the expected result. Does anyo