Cant get Data in Combo Box of Udo

Hi
I made one Master Table..then i made User defined field and i linked that field with a table of no object type. Then i registered the UDO of that Master Table.
Then i generate teh form of UDO from SAP b1 UDO FORM GENERATOR. when i saw that form in screen painter then it didnt show the combo box for the field which i linked with no object type table.
i change the type of field in xml file..then its showing the combo box in screen painter but i am unable to get how to link it with table.
can anybody tell why its happen and how to correct it.
Thanks
Rupinder

Hi..
     Combobox in udf u have to select  set valid values there give ur combo data
Regards...
Billa 2007

Similar Messages

  • Getting Dates using combo boxes

    I am trying to get a start date and an end date from a combo
    box. I have the following AS3 code but it doesn't work. startDay,
    startMonth etc are all comboboxes with appropriate data. Just can't
    figure the syntax to make it work.
    var start_date = new
    Date(startYear.selectedIndex,startMonth.selectedIndex,startDay.selectedIndex);
    var end_date = new
    Date(endYear.selectedIndex,endMonth.selectedIndex,endDay.selectedIndex);
    then i want to calculate and display the total days
    var nDiffDays = Math.floor((end_date - start_date)/86400000);
    totalDays_txt = nDiffDays;
    Any help appreciated.

    There are two of those controls: the drop down list and the combo box. Try the drop down list instead.

  • How to retrieve data in Combo box?

    :mad; I need to do a form for delivery order. Just fill some
    personal data and order of product. Inside I have some combo box of
    product, but I need save the record into txt file (just once time)
    then need to retrieve the data from txt file onto combo box. I have
    attached the code, I don't know which part got wrong, anybody who
    get help me?

    "roy16" <[email protected]> wrote in message
    news:[email protected]...
    >
    I need to do a form for delivery order. Just fill
    some personal data
    > and
    > order of product. Inside I have some combo box of
    product, but I need
    > save the
    > record into txt file (just once time) then need to
    retrieve the data from
    > txt
    > file onto combo box. I have attached the code, I don't
    know which part got
    > wrong, anybody who get help me?
    >
    > Combo box code :
    > controls := wcGetControlList()
    > listing := "Choose an Item"^Return^"Hot
    > Chocholate"^Return^"Tea"^Return^"Coffee"^Return^"Low fat
    > Milk"^Return^"Full
    > Cream Milk"^Return^"Orange Juice"^Return^"Purified
    Water"
    > id_list := wcDisplayControl(350, 350, 150, 21,
    "ComboBox", "wcS")
    > propList := wcGetPropertyList(id_list)
    >
    >
    > Save the data from Combo box list :
    > data := wcGetPropertyValue(id_list, "value")^Return
    data at this point will be some number between 0 and 7 and
    your appended
    return.
    > WriteExtFile("list2.txt", data)
    >
    > Read the data from txt :
    > data := ReadExtFile("list2.txt")
    This will again be a string that contains a number and a
    return.
    > Convert string to list :
    > id_list := [:]
    Before, you are populating id_list with a single number that
    is the _ID_ of
    the winCtrl . Now, you are changing it to an empty property
    list. Why?
    > AddProperty(data^id_list,controls ,GetLine(data,1))
    The first parameter of AddProperty is supposed to be the name
    of a variable
    which is a property list. As such, you couldn't use a
    concatenated
    expression there. Even if you could, an Authorware variable
    cannot begin
    with a number, which data always will in this instance. It
    also cannot
    contain a return. _And_ the characters "[:]" are not valid
    parts of a
    variable name either. Next, you're trying to add a property
    that looks
    something like:
    "Button\rCheckBox\rCheckListBox\rColorCombo\rComboBox\rDriveCombo\rEdit..."
    While a property list _can_ have strings instead of symbols
    as the keys to
    the values, this is not documented or officially supported.
    Even if it
    were, you _cannot_ have a key with returns in it, and I have
    no idea why
    you'd want to!
    Here are the steps you should be using:
    1) Create your WinCtrl and store its ID in a regular numeric
    value (I'll
    call it wcID for convenience)
    2) Set its Items property to listing.
    3) Check for the existence (FileType) of your file with the
    value of the
    winCtrl in it. If it exists, set the value property of wcID
    to the contents
    of the file.
    4) You're using wcS as your change event, so set up a
    conditional on false
    to true with wcS as the condition.
    5) Inside that response, write the "value" property (without
    the return) of
    the wcID control to file.
    HTH;
    Amy

  • Cant get data from text file to print into Jtable

    Instead of doing JDBC i am using text file as database. I cant get data from text file to print into JTable when i click find button. Goal is to find a record and print that record only, but for now i am trying to print all the records. Once i get that i will change my code to search desired record and print it. when i click the find button nothing happens. Can you please take a look at my code, dbTest() method. thanks.
    void dbTest() {
    DataInputStream dis = null;
    String dbRecord = null;
    String hold;
    try {
    File f = new File("customer.txt");
    FileInputStream fis = new FileInputStream(f);
    BufferedInputStream bis = new BufferedInputStream(fis);
    dis = new DataInputStream(bis);
    Vector dataVector = new Vector();
    Vector headVector = new Vector(2);
    Vector row = new Vector();
    // read the record of the text database
    while ( (dbRecord = dis.readLine()) != null) {
    StringTokenizer st = new StringTokenizer(dbRecord, ",");
    while (st.hasMoreTokens()) {
    row.addElement(st.nextToken());
    System.out.println("Inside nested loop: " + row);
    System.out.println("inside loop: " + row);
    dataVector.addElement(row);
    System.out.println("outside loop: " + row);
    headVector.addElement("Title");
    headVector.addElement("Type");
    dataTable = new JTable(dataVector, headVector);
    dataTableScrollPane.setViewportView(dataTable);
    } catch (IOException e) {
    // catch io errors from FileInputStream or readLine()
    System.out.println("Uh oh, got an IOException error!" + e.getMessage());
    } finally {
    // if the file opened okay, make sure we close it
    if (dis != null) {
    try {
    dis.close();
    } catch (IOException ioe) {
    } // end if
    } // end finally
    } // end dbTest

    Here's a thread that loads a text file into a JTable:
    http://forum.java.sun.com/thread.jsp?forum=57&thread=315172
    And my reply in this thread shows how you can use a text file as a simple database:
    http://forum.java.sun.com/thread.jsp?forum=31&thread=342380

  • Filtering of Data through Combo Box with chart drill down Option.

    Hey Guys,
    I need to ask one thing about combo box filtering option, i want to filter my data like country, agent, customer and in the end material. I have achieved this through filter component but the thing which bother me is that if i select the specific customer in filter option it directly give's input to other filter's which i don't want. So the alternate is combo box but the thing which is creating problem is that if i filter my data through combo box it doesn't give any option for the chart filtering. For more convenience i am attaching my spreadsheet data which i want to filter.  please help me in this matter.
    Thanks & Best Regards,
    Hassan Ali.
    Sample Is Below::
    Country
    Customer
    Material
    Austria
    David
       Mat 1
    Austria
    Simon
       Mat 2
    China
    XYI jo
       Mat 2
    China
    CHU pa
       Mat 4
    India
    Suresh
       Mat 1
    India
    Ramesh
       Mat 5
    Sales Quantity
    Export Sales
    300.000 FT2
    1,631,020.77 PKR
    600.000 FT2
    3,108,107.67 PKR
    600.000 FT2
    11,917,131.08 PKR
    200.000 FT2
    8,679,817.14 PKR
    760.000 FT2
    8,059,453.23 PKR
    790.000 FT2
    1,727,072.16 PKR

    Nothing to do with excel file, just the logic with combo box.

  • How to display data in combo box from xml file.

    Hi All,
            I have the data in xml file.
      <jukebox>
        <song>
            <title>When the Levee Breaks</title>
            <artist>Kansas Joe and Memphis Minnie</artist>
            <url>delhi601(www.songs.pk).mp3</url>
        </song>
        <song>
            <title>Better Leave that Stuff Alone</title>
            <artist>Will Shade</artist>
            <url>delhi601(www.songs.pk).mp3</url>
        </song>
        <song>
            <title>Walk Right In</title>
            <artist>Cannon's Jug Stompers</artist>
            <url>delhi601(www.songs.pk).mp3</url>
        </song>
    </jukebox>
    and i want to display the only url in combo box list. for that how can load this xml file and how can i show.
    Can any one help me.
    thanks
    Raghu.

    Raghuvasa,
    Get the XML file data into an XML variable in your code, say var jukebox: xml. Then do
    combo.dataProvider = jukebox.song.url
    or as a shortcut
    combo.dataProvider = jukebox.descendants("url")
    The latter will pull out elements with tag name url at any depth in the xml structure, so sometimes you have to be careful, but in your case there should be no problem.
    Richard

  • How do I retrieve data from combo boxes?

    The past weekend I spent my whole weekend trying to find this
    out and gone through the top 10 pages on google trying all sorts of
    things. I would be grateful for anyone who can help me.
    I have 6 combo boxes in a booking form and I need to retrieve
    the data when someone click submits which gets forwarded on to php
    then my mailbox. They are called box1_cb, box2_cb.....box6_cb All
    in the instance of: ComboBox - which I don't understand what that
    does.
    it does not seem to be retrieving any of the data. For each
    combo box:
    I have the the options people can choose form in "Labels" box
    under "Paramaters", nothing for "Data", Row Count is 8 and nothing
    for "Change Handler" which I don't know what it does.
    Can anyone please provide some help with telling me what
    "change handler" does, do I need the data for each combo box in the
    "Labels" parameter as well as the "Data" box, what an instance does
    (for combo boxes) and what I need to put in the actionscript for
    the submit button as well as do i need to put code in the
    actionscript for each combo box?
    The options people can choose from in the combo boxes are
    there when someone views the site.
    Can anyone please help me..I would greatly appriciate it.
    Thanks.

    If your hard drive can be detected and shows up as a drive letter in my computer but you can't access your files,then you can recover your data off it with data recovery software easily.This way is the easiest and the most inexpensive way to recover your data.If you bring it to a computer repair shop that is available for data recovery servise,they will cost you $500-1000 or more.Hmm, a lot of money.
    I managed to recover data from crashed hard drive with Tenorshare Data Recovery.If needed,you can download it and scan your hard drive for free to preview whether your data can be recovered.It will show you thumbnails for recoverable pictures.

  • Data grid combo box

    how can i add a combo box in to the Data grid when i click the add button.
    when i add  the second row what i have selected before is refreshed.
    please help me

    The data property of the item renderer corresponds to the
    item the item renderer renders (a lot of repetitions here... :-).
    But when your application starts, the data property of your
    item renderer is null. Still, the code is executed. So you get a
    null pointer exception.
    How to solve this problem ?
    Use databinding within the item renderer in order to detect
    the data value change from null to an object value:
    <mx:Binding source="{this.data}"
    destination="onDataChanged" />
    private function set onDataChanged(value:Object):void
    if(value)
    // Do something if value is non-null
    Voila !
    No more errors.
    Since the item has a type in the dataprovider of my datagrids
    in my projects, I cast the data property to an explicit type before
    accessing the item properties:
    E.g
    (this.data as Product).ISBN

  • To filter data in two dates using combo box component

    Hi,
    I have a requirement like, i need to filter data in chart between two dates from two combo box.. From combo_box and To combo_box.
    I am using one QaaWS to populate LOV's into Combo box's and another QaaWS for chart data. Universe is the same one on SAP  BI query.
    LOV's are populating into both combo's and chart as well, i used a query refresh button after choosing two dates and press button.
    Data is not reflecting as per the choice of dates.
    If any one have such scenario, request you to share the same....
    Thanks in advance...
    Raj..

    Problem is with ranges, not with dates, my data is working fine with CALDAY (in BI Query)....
    My query variable is on FiscalPeriod month, like "FEB 2011"  to "OCT 2011" and is optional, but it is fails in QaaWS to execute when i try to input any months.
    If we give default values in BI query format is like K4/010.2011 for october month. QaaWS doesnt fail and executes, but if i change any value in QaaWS it is taking as "OCT 2011"
    And in Xcelsius it is not recognizing eaither of the formats like, K4/010.2011 or "OCT 2011"
    the format is not matching with xcelsius.

  • IChat complains that it cant' get data for 10 seconds

    and drops my video or audio connection.
    I've been killing myself trying to get screen sharing, video and audio chat to work w/ a friend. ALL of the equipment is Apple.
    Me: Macbook running latest Leopard <- wired -> Time Capsule <- wired -> Westell DSL Modem on ATT (3 Mbps downstream/768 Kbps upstream)
    Friend: Macbook running latest Leopard <- 2.4GHz 11n wireless WPA2 -> AEBS <- wired -> Morotola (?) cable modem on comcast.
    I've set both Macs to have Quicktime set for automatic (setting it lower didn't make any diff) and iChat is throttled down to 100Kbps bandwidth.
    We can iChat fine. Then if I start video, audio or screen share, it'll start and last about 20 seconds until it stops. Then iChat complains it didn't get data for 10 seconds. The error log is at the end. Neither machine has internet sharing turned on. If I try the same test with 2 Macbooks inside my home network, no problem.
    Ideas? I'm baffled that all my equipment is Apple (aside from the modems and internet connections) and it still doesn't work.
    ERROR LOG:
    Date/Time: 2008-07-13 21:42:14.912 -0700
    OS Version: 10.5.4 (Build 9E17)
    Report Version: 4
    iChat Connection Log:
    2008-07-13 21:41:27 -0700: AVChat started with ID 1104206518.
    2008-07-13 21:41:27 -0700: dsfanboy051: State change from AVChatNoState to AVChatStateWaiting.
    2008-07-13 21:41:27 -0700: 0x1a220c50: State change from AVChatNoState to AVChatStateInvited.
    2008-07-13 21:41:46 -0700: 0x1a220c50: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-07-13 21:41:46 -0700: dsfanboy051: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-07-13 21:41:51 -0700: 0x1a220c50: State change from AVChatStateConnecting to AVChatStateConnected.
    2008-07-13 21:41:51 -0700: dsfanboy051: State change from AVChatStateConnecting to AVChatStateConnected.
    2008-07-13 21:42:11 -0700: 0x1a220c50: State change from AVChatStateConnected to AVChatStateEnded.
    2008-07-13 21:42:11 -0700: 0x1a220c50: Error -20 (No data has been received for the last 10 seconds.)
    2008-07-13 21:42:11 -0700: dsfanboy051: State change from AVChatStateConnected to AVChatStateEnded.
    2008-07-13 21:42:11 -0700: dsfanboy051: Error -20 (No data has been received for the last 10 seconds.)
    Video Conference Error Report:
    23.739548 @VCU/streamer/RTPTransport.c:2136 type=4 (00000000/2)
    [Bandwidth Detection]
    [Not enough packet samples 2 < 4]
    Video Conference Support Report:
    0.260487 @Video Conference/VCInitiateConference.m:1583 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    19.498358 @Video Conference/VCInitiateConference.m:1598 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    19.503462 @Video Conference/VCInitiateConference.m:1702 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    21.496366 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:43580;branch=z9hG4bK2b63015b5f0b1a0b
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=558083850
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:43580>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 394
    v=0
    o=cagustin 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 43580 RTP/AVP 110 121 12 3 0
    a=rtcp:43580
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3330649068
    21.546757 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP sip:43580;branch=z9hG4bK2b63015b5f0b1a0b
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=558083850
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    21.551959 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP sip:43580;branch=z9hG4bK2b63015b5f0b1a0b
    To: "u0" <sip:user@rip:16402>;tag=423949614
    From: "0" <sip:user@lip:16402>;tag=558083850
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:45514>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    21.563085 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:43580;branch=z9hG4bK2b63015b5f0b1a0b
    To: "u0" <sip:user@rip:16402>;tag=423949614
    From: "0" <sip:user@lip:16402>;tag=558083850
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:45514>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 266
    [v=0
    o=joykellman 0 0 IN IP4 67.188.125.253
    s=0
    c=IN IP4 67.188.125.253
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 45514 RTP/AVP 110
    a=rtcp:45514
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:2527946835
    21.563394 @SIP/Transport.c:2362 type=1 (00000000/0)
    [ACK sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:43580;branch=z9hG4bK1735c05b28dcc06a
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=423949614
    From: "0" <sip:user@lip:16402>;tag=558083850
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.3
    Content-Length: 0
    21.809273 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Received the first BWD packet from 67.188.125.253:45514]
    22.135306 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Avg=104447.50, NSDev=31.62%]
    22.265783 @:0 type=1 (00000000/1)
    [Bandwidth Detection]
    [Avg=1098214.90, NSDev=77.73%]
    24.022096 @:0 type=1 (00000000/2)
    [Bandwidth Detection]
    [Avg=888512.50, NSDev=26.14%]
    30.000989 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:43580;branch=z9hG4bK24093ad60967e29d
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=423949614
    From: "0" <sip:user@lip:16402>;tag=558083850
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    30.050749 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:43580;branch=z9hG4bK24093ad60967e29d
    To: "u0" <sip:user@rip:16402>;tag=423949614
    From: "0" <sip:user@lip:16402>;tag=558083850
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    30.561845 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP 67.188.125.253:45514;branch=z9hG4bK6e0cc787713335ec
    Max-Forwards: 70
    To: "0" <sip:user@lip:16402>;tag=558083850
    From: "u0" <sip:user@rip:16402>;tag=423949614
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    30.562558 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 67.188.125.253:45514;branch=z9hG4bK6e0cc787713335ec
    To: "0" <sip:user@lip:16402>;tag=558083850
    From: "u0" <sip:user@rip:16402>;tag=423949614
    Call-ID: 2baf395c-515f-11dd-a69c-92474b244012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000026 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000049 @:0 type=5 (00000000/16402)
    [Local SIP port]
    24.064349 @:0 type=5 (00000000/60)
    [Detected bandwidth (kbits/s): 332 up, 332 down. (00000000)
    24.356247 @Video Conference/VideoConferenceMultiController.m:1958 type=5 (00000000/0)
    [Start Conference With UserID: u0]
    Binary Images Description for "iChat":
    0x1000 - 0x23bfff com.apple.iChat 4.0.5 (608) /Applications/iChat.app/Contents/MacOS/iChat
    0x2b0000 - 0x31efff com.apple.Bluetooth 2.1 (2.1f17) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x36a000 - 0x4bdfff com.apple.viceroy.framework 363.2.11 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x52c000 - 0x56bfff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x58d000 - 0x5a6fff com.apple.frameworks.preferencepanes 12.1 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5c0000 - 0x5f9fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x609000 - 0x61dfff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x62e000 - 0x64cfff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x654000 - 0x685fff com.apple.iChatCommonGUI 4.0.5 (608) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x6ae000 - 0x6b1fff com.apple.BezelServicesFW 1.4.832 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x6f1000 - 0x6f6fff com.apple.iChat.Styles.Balloons 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x119fb000 - 0x119fefff com.apple.iChat.Styles.Boxes 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x11a05000 - 0x11a0bfff com.apple.iChat.Styles.Compact 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x11a13000 - 0x11a15fff com.apple.iChat.Styles.Text 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x175b1000 - 0x176cffff com.apple.RawCamera.bundle 2.0.7 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x17dcc000 - 0x17dd1fff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x17ed1000 - 0x17f0cfff com.apple.QuickTimeFireWireDV.component 7.5 (861) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x17f69000 - 0x17fd6fff com.DivXInc.DivXDecoder 6.6.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x17fe5000 - 0x181d7fff com.elgato.mpegsupport EyeTV MPEG Support 1.0.7 (build 43) (1.0.7) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x18301000 - 0x1830afff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x18314000 - 0x18341fff com.apple.QuickTimeIIDCDigitizer 7.5 (861) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x18353000 - 0x1839dfff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x183c4000 - 0x183c7fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x183cd000 - 0x183d2fff com.apple.audio.AppleHDAHALPlugIn 1.5.7 (1.5.7a24) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x183d7000 - 0x18559fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x18587000 - 0x185e0fff com.apple.driver.AppleIntelGMA950GLDriver 1.5.28 (5.2.8) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x185e8000 - 0x18604fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x197a8000 - 0x1995efff com.apple.audio.codecs.Components 1.6.3 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x19ad4000 - 0x19ad4fff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x19ada000 - 0x19ae1fff com.apple.JavaVM 12.0.2 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x19aeb000 - 0x19aecfff com.apple.iChat.PersonIconPlugIn 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x90005fff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90006000 - 0x90006fff 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
    0x90007000 - 0x90079fff com.apple.iLifeMediaBrowser 1.0.7 (208) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x901db000 - 0x9033bfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9033c000 - 0x903f6fff com.apple.CoreServices.OSServices 226.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x903f7000 - 0x90415fff com.apple.DirectoryService.Framework 3.5.4 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90416000 - 0x904c4fff com.apple.QTKit 7.5 (861) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x904d2000 - 0x908e2fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x908e3000 - 0x90965fff com.apple.CFNetwork 330.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90966000 - 0x90aacfff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90aad000 - 0x90adafff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90adb000 - 0x90adcfff libffi.dylib /usr/lib/libffi.dylib
    0x90add000 - 0x90c14fff com.apple.imageKit 1.0.1 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90c15000 - 0x90c6efff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90c6f000 - 0x90da7fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90da8000 - 0x90e24fff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9108e000 - 0x9109afff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9109b000 - 0x910b7fff com.apple.IMFramework 4.0.5 (582) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x910b8000 - 0x910c1fff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x910c2000 - 0x910d3fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x910d4000 - 0x910e4fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x910e5000 - 0x91197fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91198000 - 0x91198fff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91199000 - 0x91199fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9119a000 - 0x91226fff com.apple.LaunchServices 289.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91227000 - 0x91251fff com.apple.CoreMediaPrivate 9.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x91252000 - 0x912e5fff com.apple.ApplicationServices.ATS 3.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x912e6000 - 0x9140afff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91415000 - 0x91417fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91418000 - 0x9141cfff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x914fe000 - 0x91522fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x91523000 - 0x91533fff com.apple.speech.synthesis.framework 3.7.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91534000 - 0x9153bfff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9153c000 - 0x91b8cfff com.apple.WebCore 5525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91b8d000 - 0x91b9cfff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x91b9d000 - 0x91b9dfff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91b9e000 - 0x91ba2fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x91ba3000 - 0x91bc2fff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91bc3000 - 0x91bc8fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91c3c000 - 0x91cb9fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91cba000 - 0x92050fff com.apple.QuartzCore 1.5.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92051000 - 0x92051fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92052000 - 0x92061fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x92062000 - 0x920a6fff com.apple.DirectoryService.PasswordServerFramework 3.0.3 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x920a7000 - 0x92131fff com.apple.DesktopServices 1.4.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92132000 - 0x922b1fff com.apple.AddressBook.framework 4.1.1 (695) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x922b2000 - 0x9230ffff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x924cf000 - 0x925b4fff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x925b5000 - 0x925b8fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x925b9000 - 0x925e4fff libauto.dylib /usr/lib/libauto.dylib
    0x925e5000 - 0x92600fff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92601000 - 0x92dfefff com.apple.AppKit 6.5.3 (949.33) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92dff000 - 0x92e1ffff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e20000 - 0x92eebfff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92eec000 - 0x92ef0fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x92ef1000 - 0x92f28fff com.apple.SystemConfiguration 1.9.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92f64000 - 0x92f77fff com.apple.IMUtils 4.0.5 (582) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x92f78000 - 0x92f7efff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92f7f000 - 0x93452fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93453000 - 0x93470fff com.apple.QuickLookFramework 1.1 (170.4) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x93471000 - 0x934b3fff com.apple.NavigationServices 3.5.2 (163) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x934b4000 - 0x935e6fff com.apple.CoreFoundation 6.5.3 (476.14) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x935e7000 - 0x93616fff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93617000 - 0x936f6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x936f7000 - 0x93d93fff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93d94000 - 0x93dbcfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x93dbd000 - 0x93e5ffff com.apple.QuickTimeImporters.component 7.5 (861) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x93e60000 - 0x93e9efff com.apple.CoreMediaIOServicesPrivate 9.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x93ed0000 - 0x93f0afff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93f0b000 - 0x93f13fff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x93f14000 - 0x93f64fff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93f65000 - 0x93f6cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x93f6d000 - 0x94000fff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9400d000 - 0x9404cfff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9404d000 - 0x9409dfff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9409e000 - 0x940a9fff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x940aa000 - 0x9418bfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x9418c000 - 0x9420bfff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9420c000 - 0x94211fff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94212000 - 0x9425cfff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9425d000 - 0x9428efff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9428f000 - 0x942defff com.apple.QuickLookUIFramework 1.1 (170.4) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x942df000 - 0x94307fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94308000 - 0x9432cfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9432d000 - 0x94337fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94368000 - 0x943a6fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x943a7000 - 0x954ecfff com.apple.QuickTimeComponents.component 7.5 (861) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x954ed000 - 0x95594fff com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95595000 - 0x955b3fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x955b4000 - 0x95602fff com.apple.datadetectorscore 1.0.1 (52.13) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x95603000 - 0x95619fff com.apple.CoreVideo 1.5.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9561a000 - 0x95660fff com.apple.Metadata 10.5.2 (398.18) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95661000 - 0x9593bfff com.apple.CoreServices.CarbonCore 786.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9593c000 - 0x959c7fff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x959c8000 - 0x95d86fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95d87000 - 0x95de1fff com.apple.CoreText 2.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x95e19000 - 0x96094fff com.apple.Foundation 6.5.5 (677.19) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x96095000 - 0x96145fff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96146000 - 0x961a2fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x961a3000 - 0x961a3fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x961a4000 - 0x961e5fff com.apple.CoreGraphics 1.351.31 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x961e6000 - 0x964edfff com.apple.HIToolbox 1.5.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x964ee000 - 0x964eefff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x964ef000 - 0x96503fff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x96504000 - 0x966d2fff com.apple.security 5.0.4 (34102) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x966d3000 - 0x966defff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x966df000 - 0x966dffff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x966e0000 - 0x966e7fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x966e8000 - 0x966e8fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x966e9000 - 0x966ebfff com.apple.ImageIO.framework 2.0.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x966ec000 - 0x968a7fff com.apple.QuartzComposer 2.1 (106.5) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x968a8000 - 0x9692ffff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x96930000 - 0x969a2fff com.apple.PDFKit 2.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x969a3000 - 0x969b1fff libz.1.dylib /usr/lib/libz.1.dylib
    0x969b2000 - 0x969b9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x96aca000 - 0x96debfff com.apple.QuickTime 7.5.0 (861) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96dec000 - 0x96e04fff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96ed9000 - 0x96ef0fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x96ef1000 - 0x96ef1fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96ef2000 - 0x96f24fff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96f25000 - 0x96f25fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96f26000 - 0x96ff4fff com.apple.JavaScriptCore 5525.18 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x96ff5000 - 0x9706ffff com.apple.print.framework.PrintCore 5.5.3 (245.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x97070000 - 0x97086fff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97087000 - 0x97144fff com.apple.WebKit 5525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x97145000 - 0x9720cfff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9724a000 - 0x97283fff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x97284000 - 0x97289fff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices

    First of All set Quicktime for 1.5Mbps for both ends and the iChat Bandwidth for 500kbps on the Comcast end.
    One end has a feature on a modem or router that blocks what it thinks are Internet attacks (judging by the Log although speed could be a factor).
    Most Likely it is a DoS or SPI filter/firewall setting.
    Turn it Off (The Westell is the most likely)
    It Does not look like Pings are blocked as the log details them.
    There appears to be a small problem with the SIP Invite
    Contact: <sip:[email protected]:45514>
    This looks like the Comcast end and port 45514 on the example I have pulled out.
    If you read the rest of the log this moves about a bit.
    AS you Connected (however briefly) I would not worry too much about this unless the Time capsule and the Westell are both doing DHCP
    If you don't know how to access your Westell use this page http://portforward.com/routers.htm
    Click on your device.
    Click on iChat on the next page.
    Use the info near the top of the next page (once the Instructions start).
    Check first if it is doing DHCP.
    Next check if it has UPnP and if it is active.
    If it is doing both of those make sure the Time Capsule is NOT set to Share an IP (Set it to Off/Bridged).
    At the other end the cable modem is unlikely to route but check it is not listed in the Port Forward front page.
    9:07 PM Wednesday; July 16, 2008

  • Issues with Data Grid Combo Boxes

    Hi,
    I am trying to implement, 3 combo boxes for each row in extended data grid but unable to find the solution. Can someone please help?
    Problem in detail:
    The issue is after populating the data grid i want to give users 3 options  using 3 combo boxes(i.e each row in data grid will now have 3 options , which is basically converting 1 row into 3 rows with 3 options),so that they are able to do their computations.
    This is reallly urgent, any help would be highly appreciated.
    Thanks & Regards
    Pankaj

    "In this new release of SQL Dev, when I execute a SQL in the SQL Worksheet and click in the Data Grid in the Results tab and try to navigate within a record using arrow keys, the grid cell enters into edit mode by default and so I cannot use the Left or Right arrow keys to navigate the grid. I am forced to use tab key to navigate. This is counter intuitive in my opinion."
    In the "Results" tab, Click Ctrl & Tab keys (at the same time) or with mouse click on any cell other than the first column (a sequence or rownum), you will be able to navigate using the arrow keys.
    "Another issue that I have come across is with SQL syntax checking. In some cases, when I press F9 to execute a SQL, it shows the SQL as executed i.e. shows something like 0.0134 seconds in the toolbar and no results displayed. In reality, the SQL had some syntax error which were NOT reported. This can be frustrating since now I have to fall back to SQL*Plus or TOAD just for syntax check."
    The 0.0134 seconds could be the result of the most recently executed successful statement. Check the Script Output tab for errors. Use F5 (Run Script option) instead of F9.
    "I like the fact that SQLDev highlights the current SQL but it would be more useful if it just indicated the first line of the current sql instead of highlighting the whole sql."
    On the SQL statement (or code), Right Click -> Format SQL (or press Ctrl & B), proper formatting would help.
    I use version 1.0.0.15.57 and seems to be working allright.
    - Babu Rangasamy

  • I can only see the welcome to mail screen (iphone 5).  I have set up mail successfully because it shows mail icon with messages.  But I cant get into the mail box!

    I can only see the welcome to mail screen (iphone 5).  I have successfully set up the mail because it shows mail icon with messages (104 messages).  But I cant get into the actual mail box to read them.  Pls help!

    The received emails should show in two locations:
    1. In the All Inboxes tab of Mail.
    2. The Inbox for each mail account,
    If your emails are not showing in these locations try quitting the mail app and then reset your iPhone.
    Go to the Home screen and double click the Home button. That will reveal the row of recently used apps at the bottom of the screen. Tap and hold on the app in question until it wiggles and displays a minus sign. Tap the minus sign to actually quit the app. Then tap anywhere on the screen above that bottom row to return the screen to normal.
    To reset your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider should one appear until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • How Do I Get Item In Combo Box and Not It's Export Value?

    I created a Combo Box in Adobe pdf listing Company Names in the Item field. As well, I added an abbreviation for each Company Name in the Export Value field. When I try to display the Company Name from the Item field, it displays the Export Value.
    The Combo Box is named "Company-Name".
    In it, I have a company called "MacKenzie" within the Item Field. It's Export Value is "MFC".
    app.alert(this.getField("Company-Name").value); will display "MFC". How do I display or get the value from the Item field?

    You can use the getItemAt field method, like:
    // Get a reference to the combo box
    var f = getField("Company-Name");
    // Get the index of the selected item
    var a = f.currentValueIndices;
    // Show the item value of the selected item
    app.alert(f.getItemAt(a, false));

  • How to get values of combo box?

    Hi All,
    I had a problem that need to be solve asap. I would be very appreciated if anyone could help me.
    I had a combo box that contain a string "Flower and Gifts" and when i passed the value to another jsp file it show only "Flower". I had been think for a long time about this problem. How can i pass the value to another jsp file with the whole value "Flower and Gifts".
    Please reply asap. Thanks all.

    Hi,
    Even i had the same problem earlier. Just try to print the string that you are passing to the next page, if it reads something like this "Flowers%20and%20Gifts" then you have to replace the special characters (i.e.,'%,2,0')with the blank spaces so that you have the complete string.
    Example:
    String str = "Flowers%20and%Gifts";
    if(str.indexOf('%')!=-1)
    str = str.replace('%','');
    Thanks,
    Rkanth

  • How to get  Subvalues using Combo box ?

    Hi , friends,
    I have one Combo box :
    Having list of all Districts
    When i select one of District it will give all related villages
    regarding District that i selected in another combo box.
    How to achieve this ? in one page itself
    I have another idea but its not good..
    where
    1) first select District from Combo
    2) Press submit
    3) second page displays another combo and fetch perticular villages
    and display in another combo.
    but this technique requires more page navigation.
    I want it should be on one page itself
    PLEASE HELP ME ....
    Ghanshyam
    Message was edited by:
    Ghanshyam

    the brand old dependent combo issue..
    as far as i know i could tell you for every two days a similar post is being posted here on the same thread..
    you could have taken a look of them....
    Anyways there are many ways of doing it....
    In the days when XmlHttpRequest Object was not invented ppl used to achieve this using Hidden iframe and then updating parent frame dropdown by calling a javascript function onload of the page. or by auto refershing the page after saving the form state inside the scope of session.
    However,using XmlHttpRequest Object (AJAX) nowdays is one of the smater ways of acheving tasks as these.
    checkout one such examples where i've posted a similar example in the last reply
    http://forum.java.sun.com/thread.jspa?threadID=5170019
    hope this might help :)
    REGARDS,
    RaHuL

Maybe you are looking for

  • Sharepoint 2013 Download registration issue

    this is what is get when I go to register. 3 different machines. Server Error in '/en-us/evalcenter/wizards' Application Server Error in '/en-us/evalcenter/wizards' Application. 'countryCode' has a SelectedValue which is invalid because it does not e

  • Changing camera model in metadata

    I have a series of scans of slides. One of the disadvantage of being, blessed with years, is that I took a LOT of slides. And one of the advantages of same blessing is that most photos were taken with one camera... back when cameras were expensive wa

  • Import views from studio

    Hi, I have following problem with importing views during process deploy. After importing project from studio to enterprise BPM I am obtaining message: The import operation finished successfully. Although the views were correctly imported, some of the

  • Validity Period

    Hello Friends, I have a requirement. When I create contract and subsequently create release order, I want to see the validity dates to be copied to relase order. How to achieve this , Please let me know. Regards, Venkat.

  • Oracle Discoverer Desktop 10g screen layout

    Hi, I am using discoverer desktop version 10g. After I select workbook I am not able to Item Navigator, Parameter, conditions window ? Basically whatever in Tools menu I used to see that in the left side of the screen. I am not seeing that. Please he