Problem with ADO

I have defined a view to get the data from an XMLTYPE table into relational form. I have a problem with opening this view with ADO and Delphi 6.
If I define my view like this:
CREATE OR REPLACE VIEW xml_test (versionsnr)
AS SELECT extractValue(value(xml),'/STANDAT/HEADER/@versionsnr')
FROM xmltable xml
I will the an error ORA-03114 when I try to select from the view with ADO. I have no problems when doing the select in sql*plus.
When I define the view like this:
CREATE OR REPLACE VIEW xml_test2 (versionsnr)
AS SELECT extractValue(value(header),'/HEADER/@versionsnr')
FROM xmltable xml,
table(xmlsequence(extract(value(xml),'/STANDAT/HEADER'))) header
,then it works everywhere, but it is significally slower with large amounts of data.
Interestingly enough, if the view contains a minus operator like below, then it also works everywhere.
CREATE OR REPLACE VIEW xml_test3 (versionsnr)
AS
(SELECT extractValue(value(xml),'/STANDAT/HEADER/@versionsnr')
FROM xmltable xml
MINUS
SELECT extractValue(value(xml),'/STANDAT/HEADER/@versionsnr')
FROM xmltablenew xml)
Do you have any experience with this? Is it a bug in ADO?

Viktor,
Have you looked in the Oracle server trace file dump location to see if there are any trace files that correspond with the time/date of your Ora-03114 error.
Secondly, Have you tried to trace your session to see what is happening?

Similar Messages

  • Weird Problem with ADO Recordset on windows 7!!

    Hi ,
    I am facing a very weird issue , i am running a sql using the ADO recordset , but i get only one column value in the recordset.
    Other columns values are coming as Null.
    Using as below :
    Set objConnection=Createobject("ADODB.Connection")
    'connection String and query
    strConnString="Provider=OraOLEDB.Oracle.1;Data Source=<DBNAME>;User ID=<UNAME>;Password=<PSWD>;"
    'Establishing connection with DB
    objConnection.Open strConnString
    sql="select t1.colum1,t2.column2,t1.column3 from table t1,table t2 where t1.id=t2.id(+)"'sample sql
    Set rs= Createobject("ADODB.Recordset")
    rs.Open sql,strConnString
    msgbox rs.GetString()
    'rs.MoveFirst
    'msgbox rs(0).value
    'msgbox rs(1).value
    so , In the above code i am only getting the value for t2.column2 .
    It doesnt matter if i use GetString() or GetRows() or iterate throught the recordset.
    If i run the query in Toad i am getting values for all the column in the select clause.I have oracle 11g on windows7.
    Can anybody help with a solution here?

    I actually have a similar problem with my machine. I am running FrameMaker 9 with Windows XP on a 32bit machine.
    The problem is slightly different because on my machine the GDI Objects doesn't continue to increase over time it increases with the number of files I open and close. Every time I open a file the number of FrameMaker GDI Objects increase and when I close the file the number of GDI Objects decreases a little but not down to the original value, so when I open and close a lots of FrameMaker files the number continues to increase until it reaches 10 000 then my FrameMaker crashes.

  • Mailbox problems with OSX server 10.8  Any suggestions?

    I am upgrading from 10.5.8 to 10.8.  I am having problems getting mail to function. At start up I get the message mail cannot save information about your mail boxes because of a network problem".  I suspect this is a dns problem.  Any suggestions?

    Things have improved some.  After much ado with the app store I was able to download 10.8.2.  That did indeed help.  However I am still trying to get Server 2.1 so that it will download.  The App store doesn't want to allow the download.  I have put in a request through express lane but nothing has happened.
    Currently, I am getting some downloads but am unable to upload.  Both the server logs and connection doctor (client end)  indicate that there is an authentication problem with pop.  However, I am very sure that the user name and passwords are the same at both ends and my reading of the logs indicates that the authentication method is the same at both ends, it just won't authenticate.  Is this likely a problem that will be cured with the upgrade to server 2.1.   Currently I have authentication set for custom with APOP, CRAM-MD5, and Clear Text.  There is an automatic setting.  Would setting to automatic and then re-establishing the client end be of any value.
    Thanks in advance or any assistance.
    John

  • Instead of trigger with ADO - once again

    since everyone seems to ignore my last 2 posts, i thoght of tring one more time.
    before i give up the use of instead of updates and redesign the system, which really sux.
    i dont understand why i can get a response from the oracle team..
    do i have to open a tar for you guys to respond?
    im using ole db provider 9.0.1
    with mdac 2.7 on a win 2k system
    db ver: 8.1.7
    anyway, i have a simple view, no lob fields, all number and varchar2
    and it has an instead of update, that for this example ill say it does nothing,
    print a message to the output, for example, cause the bug occurs ether way.
    so when i use insert on SQL plus it works fine
    but when i use ADDNew with ADO it generates: ORA-22816
    ive searched on otn & metalink and all i could find was a similar problem on JDEVELOP (i think)
    the problem was that the add new is translated to INSERT ... RETURNING, and the RETURNING clause is
    not supported by instead of updates or something like that
    this is really important to me and i must find a solution.
    is there a switch, attribute or a property i can set to turn off the returning clause?
    or a fix in the ole db 9.2 provider?

    since everyone seems to ignore my last 2 posts, i thoght of tring one more time.
    before i give up the use of instead of updates and redesign the system, which really sux.
    i dont understand why i can get a response from the oracle team..
    do i have to open a tar for you guys to respond?Please note that the OTN forums are not official methods for receiving technical support from Oracle. Some forums happen to be monitored by folks from Oracle, but the intention of OTN is to provide a forum for engineers to communicate with other engineers. I would strongly suggest opening a TAR with Oracle support if you want to communicate with Oracle support.
    Justin

  • Problem with Java Dates and UPDATE for SQL2000

    I am having problems with the date formats for Java. I am trying to put the current date time into a SQL table, here it the code I am using:
    var Today = new Date()
    var conn = Server.CreateObject( "ADODB.Connection" )
    conn.Open( "Provider=SQLOLEDB;Server=(local);Database=BillTracking;UID=sa;PWD=;")
    var sql = "UPDATE BillAssignments SET DatePosted = " + Today + " WHERE AssignmentID = '" + Request.QueryString("AssignmentID") + "'"
    var rs = conn.execute(sql)
    I keep getting different errors and I have been unable to find a solution yet. I know that I need to change the date format from the Java standard to the one that SQL likes.
    Help....
    Norm...

    Please tell us where the Java part of this comes in. I see that you are using JavaScript to load up data via an ADO connection (presumably on an IIS platform) - but I do not see where you are using Java
    Lee

  • Instead of Trigger with ADO

    im using ole db provider 9.0.1
    with mdac 2.7 on a win 2k system
    db ver: 8.1.7
    anyway, i have a simple view, no lob fields, all number and varchar2
    and it has an instead of update, that for this example ill say it does nothing,
    print a message to the output, for example, cause the bug occurs ether way.
    so when i use insert on SQL plus it works fine
    but when i use ADDNew with ADO it generates: ORA-22816
    ive searched on otn & metalink and all i could find was a similar problem on JDEVELOP (i think)
    the problem was that the add new is translated to INSERT ... RETURNING, and the RETURNING clause is
    not supported by instead of updates or something like that
    this is really important to me and i must find a solution.
    is there a switch, attribute or a property i can set to turn off the returning clause?
    or a fix in the ole db 9.2 provider?

    i am also having this kind of problem. pls help
    i am using OLE DB 10.2.0.1.0
    i tested that if i use ADO and ms ole db provider for oracle it works fine
    but when i use ADO and oracle provider for ole db, i have got the same RETURNING clause is not supported error message.
    can anybody here provide me a solution or work around? tnx

  • (Eng/Esp)  Problem with .SWF in DW/Problema con .SWF en DW.

    Hello,
    Sorry for my English, im learning, but im not yet a expert.
    I have  problem  with my Dreamwaver, when I put a .swf (I've done my web with Flash) and press F12 i cant see my SWF. And the error mensager is the follow:
    Could u help me, plz?
    Thnx.
    Andrés
    Buenas tardes,
    Estoy diseñado mi pagina web. La he hecho en Flash, pero a la hora de exportarla a Dreamwaver y al darle al F12 para verla como seria en el FireFox, me sale este mensaje
    Si le doy aceptar, me aprece el fondo de mi web, pero donde esta la parte de flash se queda totalmente en blanco. He probado otros exploradores y me sale el mismo mensaje. He actualizado el flash a la última versión, etc. Alguien me podría ayudar?.
    Muchas gracias,
    Andrés

    On lines 33 and 42, change this:
    <param name="swfversion" value="20.0.0.0" />
    To this:
    <param name="swfversion" value="8.0.35.0" />
    Nancy O.

  • Problem with current scope forum

     I have searched my computer for trojan downloader and it was found and removed however the search said having a problem with current scope.
    Skin222

    Hello Skin222,
    Your problem is beyond the scope of support. This forum is for feedback and questions related to the current versions of the ADO.NET Entity Framework and LINQ to Entities including object-relational mapping and entity data modeling.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to call a package with ADO?

    I have designed a package which include a procedure. And I have a program coded in ASP.
    How to call this package with ADO. Please give a sample.

    Hi,
    I persume that you are facing this problem when u try to code in VB. If that is the case here comes the code.........
    OraDatabase.Parameters.Add "A_NBR_NEWSID", A_NBR_NEWSID, ORAPARM_INPUT, 2
    OraDatabase.Parameters.Add "A_NBR_TOPICID", A_NBR_TOPICID, ORAPARM_INPUT, 2
    OraDatabase.Parameters.Add "A_NBR_USERID", A_NBR_USERID, ORAPARM_INPUT, 2
    OraDatabase.Parameters.Add "result", 0, ORAPARM_OUTPUT
    OraDatabase.Parameters("result").serverType = 2
    OraDatabase.ExecuteSQL ("declare result Number; Begin :result := PKG_CONTENT_MANAGEMENT.FUN_GET_NEWS_PERM_BY_USERID(:A_NBR_NEWSID, :A_NBR_TOPICID, :A_NBR_USERID); end;")
    OraDatabase.Parameters.Remove "A_NBR_NEWSID"
    OraDatabase.Parameters.Remove "A_NBR_TOPICID"
    OraDatabase.Parameters.Remove "A_NBR_USERID"
    FUN_GET_NEWS_PERM_BY_USERID = OraDatabase.Parameters("result").Value
    OraDatabase.Parameters.Remove "result"
    Hope this clear your doubt..
    Raj

  • Unfamilair with ADO DB connection​s

    Hi I am not familiar with ADO DB connection.
    I am using Labview 7.1, MySQL and LabSQL.
    To get LabSQL and MySQL, you can find http://jeffreytravis.com/lost/labsql.html and http://dev.mysql.com/downloads/mysql/4.1.html.
    In those LabsQL vi functions, there are no vi descriptions for connections.
    I tried finding similar descriptions to compare from ADO websites. I am getting confused.
    Here are LabSQL vi functions:-
    1) ADO Connection Create.vi - means  Create an connection to database?
    2) ADO Connection Open.vi - means Open the connection to database?
    3) ADO Connection Close.vi - means Close the connection  to database?
    4) ADO Connection Destroy.vi - means Destroy the connection to database?
    Are ADO Connection Close and Destroy same?
    And I am not familiar with the sequence of those vi.
    For eg. I read  the procedure from http://www.w3schools.com/ado/ado_intro.asp
    Accessing a Database from an ASP Page
    The common way to access a database from inside an ASP page is to:
    Create an ADO connection to a database
    Open the database connection
    Create an ADO recordset
    Open the recordset
    Extract the data you need from the recordset
    Close the recordset
    Close the connection
    So when I cannot find LabSQL functions for eg Open recordset and close recordset, so what is the equivalent ADO function to "destroy the connection"?
    And here are my attached, and I there's something i do not understand,
    And my question for my attached, typing my show processlist in command prompt,
    When run attached for the first time, "show processlist" command show no host to "test" db.
    when click to open database, "show  processlist" command shows my host  to "test" db.
    When click to close database, "show  processlist" command still shows my host  to "test" db.
    Why is this so? By right, there should be no sign of "test" db. Do i have to use ADO Connection Destroy vi to destroy connection?
    Please advise
    Thanks
    Attachments:
    testdb_connection.vi ‏68 KB

    There are two problems with trying this on LV 7: I used Shared Variables which are not supported on 7 and I am not sure if what I did exists on ADO.Net 1.1. I created a DLL using Visual Studio 2005 and ADO.Net for SQL Server 2005. The DLL code is C#:
    //VitalData.cs
    //Items of data class;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    using System;
    using System.Collections.Generic;
    using System.Text;
    namespace SaveData
    public class VitalData
    public Double Value;
    private Double Last;
    public DateTime Time;
    public String Name;
    public VitalData(String InName, Double InValue, DateTime InTime)
    Name = InName;
    Value = InValue;
    Time = InTime;
    Last = -999999.9;
    public override String ToString()
    String Temp;
    Temp = Name + ";" + Value.ToString() + ";" + Time.ToLongTimeString();
    return Temp;
    public bool SameValue()
    if (this.Value == this.Last)
    return true;
    else
    return false;
    public void Update(DateTime TIn, Double VIn)
    Last = Value;
    Value = VIn;
    Time = TIn;
    //SaveData.cs
    //::::::::::::Functional class for DLL :::::::::::::::::
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Data;
    using System.Data.SqlTypes;
    using System.Data.SqlClient;
    using System.Windows.Forms;
    using System.IO;
    namespace SaveData
    // Declaration.
    public class SaveData
    String connSQL, strSQL, ValuesIn;
    List DataList;
    public SaveData()
    DataList = null;
    connSQL = @"Data Source=PQLSVR2\SQLExpress;" +
    "Initial Catalog = VITAL;Integrated Security = True;";
    DataList = new List();
    public int Add(String Input)
    DateTime InTime;
    int count;
    VitalData DataLine;
    InTime = DateTime.Now;
    String[] Lines;
    String Sensor;
    Double Value;
    ValuesIn = Input;
    Lines = Input.Split('\n');
    foreach (String line in Lines)
    String[] parameters = line.Split(';');
    Sensor = parameters[0];
    Value = System.Convert.ToDouble(parameters[1]);
    if (Find(Sensor) == null)
    DataLine = new VitalData(Sensor, Value, InTime);
    DataList.Add(DataLine);
    else
    DataLine = Find(Sensor);
    DataLine.Update(InTime, Value);
    foreach (VitalData element in DataList)
    int local;
    if(!element.SameValue())
    try
    SqlConnection cn = new SqlConnection(connSQL);
    strSQL = "Insert INTO dbo.Measurements (DateTime, Value, Channel) " +
    "VALUES ('" + element.Time.ToShortDateString() + " " + element.Time.ToLongTimeString() + "','" +
    element.Value.ToString() + "','" + element.Name.ToString() + "')";
    cn.Open();
    try
    SqlDataAdapter da = new SqlDataAdapter(strSQL, connSQL);
    SqlCommand cmd = new SqlCommand(strSQL, cn);
    local = cmd.ExecuteNonQuery();
    cn.Close();
    catch (SqlException ex)
    MessageBox.Show(ex.Message, "SqlDataAdaptor Failure",
    MessageBoxButtons.OK, MessageBoxIcon.Error);
    return 0;
    catch (SqlException ex)
    MessageBox.Show(ex.Message, "SQL NonQuery Error",
    MessageBoxButtons.OK, MessageBoxIcon.Error);
    return 0;
    count = DataList.Count;
    return count;
    private VitalData Find(String name)
    foreach (VitalData d in DataList)
    if(d.Name.CompareTo(name) == 0)
    return d;
    return null;
    The data is formatted to a long string. I used a second DLL on the client side to look up values on the string from the shared string variable to send the resulting data values through the network:
    //StringToVars.cs
    //::::::::::plits and returns data elements encapsulated in long shared string::::::::::::::::::::::::::
    using System;
    using System.Collections.Generic;
    using System.Text;
    namespace StringToVars
    public class StringToVars
    String InString;
    int Count;
    public StringToVars()
    InString = "";
    public void Update(String vars)
    InString = vars;
    public Double GetValue(String var)
    String[] temp;
    Double Value;
    String[] List = InString.Split('\n');
    foreach (String s in List)
    if (s.Contains(var))
    temp = s.Split(';');
    Value = System.Convert.ToDouble(temp[1]);
    return Value;
    return 0.0;
    public int VarsCount()
    String[] temp = InString.Split('\n');
    Count = temp.Length;
    return Count;
    public String All()
    return InString;
    I was able to load the resulting DLL code into LabVIEW 8.21 > 8.6. LabVIEW 7 or 7.1 may have problems with this if you use one of the newer Microsoft compilers as it requires a CLR that compiles for DotNet 2.0 or 3.x. You might be bale to get this to work if DotNET 1.1 is supported and you compile using Visual Studio 2003 (which really isn't a very stable development environment compared to the two versions since).
    Good Luck.

  • I am using Adobe Suite CS4 and have had no problems with it until today. InDesign, Photoshop and Illustrator keep crashing!! I've uninstalled and reinstalled to no avail. I've also cleared the cache. Help!

    I am using Adobe Suite CS4 and have had no problems with it until today. InDesign, Photoshop and Illustrator keep crashing!! I've uninstalled and reinstalled to no avail. I've also cleared the cache. Help!

    Ok, thanks for your help. I believe I pasted all the info from your answer. Since Photoshop and inDesign are crashing as well, will you need that too?
    May  8 16:04:41 iMac com.apple.launchd.peruser.501[126] ([0x0-0x4d04d].com.adobe.illustrator[493]): Job appears to have crashed: Segmentation fault: 11
    May  8 16:04:42 iMac ReportCrash[496]: Saved crash report for Adobe Illustrator[493] version 367 (14.0.0) to /Users//Library/Logs/DiagnosticReports/Adobe Illustrator_2014-05-08-160442_-iMac.crash
    May  8 16:04:42 -iMac ReportCrash[496]: Removing excessive log: file://localhost/Users/xxxxxx/Library/Logs/DiagnosticReports/Adobe%20Illustrato r_2014-05-06-152657_-iMac.crash
    Process:         Adobe Illustrator [273]
    Path:            /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         367 (14.0.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [131]
    Date/Time:       2014-05-06 15:29:44.038 -0700
    OS Version:      Mac OS X 10.7.5 (11G63b)
    Report Version:  9
    Interval Since Last Report:          353 sec
    Crashes Since Last Report:           6
    Per-App Interval Since Last Report:  11182846 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                     
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000ffffff5a
    VM Regions Near 0xffffff5a:
    --> shared memory          00000000ffff0000-00000000ffff2000 [    8K] r-x/r-x SM=SHM 
    Application Specific Information:
    objc[273]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   AdobePDFL                               0x024104cd ASrealloc + 737
    1   AdobePDFL                               0x0236f588 CosDocEnumEOFs + 27326
    2   AdobePDFL                               0x0236d907 CosDocEnumEOFs + 20029
    3   AdobePDFL                               0x0236fd46 CosDocEnumEOFs + 29308
    4   AdobePDFL                               0x0227d782 ASTextIsEmpty + 1146
    5   AdobePDFL                               0x0212779f PDFontPSFlushIncrGlyphList + 65853
    6   AdobePDFL                               0x02127966 PDFontPSFlushIncrGlyphList + 66308
    7   AdobePDFL                               0x02129f93 PDFontPSFlushIncrGlyphList + 76081
    8   AdobePDFL                               0x0212cae6 PDFontPSFlushIncrGlyphList + 87172
    9   AdobePDFL                               0x02111b26 PDFLPrintDoc + 6322
    10  AdobePDFL                               0x021dccac PDSetHostEncoding + 2412
    11  AdobePDFL                               0x021dce02 PDSetHostEncoding + 2754
    12  AdobePDFL                               0x02114eba PDFLInitFriends + 2122
    13  AdobePDFL                               0x021149c8 PDFLInitFriends + 856
    14  com.adobe.illustrator.plugins.PDF Suite          0x16884096 PluginMain + 163654
    15  com.adobe.illustrator.plugins.PDF Suite          0x16883b61 PluginMain + 162321
    16  com.adobe.illustrator.plugins.PDF Suite          0x168840f2 PluginMain + 163746
    17  com.adobe.illustrator.plugins.PDF Suite          0x16862872 PluginMain + 26402
    18  com.adobe.illustrator.plugins.PDF Suite          0x16862c7b PluginMain + 27435
    19  com.adobe.illustrator.plugins.PDF Suite          0x1685c1f3 PluginMain + 163
    20  com.adobe.illustrator                   0x006a93ff 0x1000 + 6980607
    21  com.adobe.illustrator                   0x006a89c6 0x1000 + 6977990
    22  com.adobe.illustrator                   0x00586d75 0x1000 + 5791093
    23  com.adobe.illustrator                   0x00586e2d 0x1000 + 5791277
    24  com.adobe.illustrator                   0x0052f513 0x1000 + 5432595
    25  com.adobe.illustrator                   0x00539777 0x1000 + 5474167
    26  com.adobe.illustrator                   0x0053d599 0x1000 + 5490073
    27  com.adobe.illustrator                   0x00515187 0x1000 + 5325191
    28  com.adobe.illustrator                   0x00b0517a AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 524022
    29  com.adobe.illustrator                   0x00a181df AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 43387
    30  com.adobe.illustrator                   0x0004210a 0x1000 + 266506
    31  com.adobe.illustrator                   0x0053c893 0x1000 + 5486739
    32  com.adobe.illustrator                   0x0053a574 0x1000 + 5477748
    33  com.adobe.illustrator                   0x00b03d77 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 518899
    34  com.adobe.illustrator.plugins.PDF Format          0x10122118 0x1010f000 + 78104
    35  com.adobe.coretech.adm                  0x0dd83d85 0xdd7b000 + 36229
    36  com.adobe.coretech.adm                  0x0dd8c62f 0xdd7b000 + 71215
    37  com.adobe.coretech.adm                  0x0dd8d7fb 0xdd7b000 + 75771
    38  com.adobe.coretech.adm                  0x0ddd5871 0xdd7b000 + 370801
    39  com.adobe.coretech.adm                  0x0dd93c53 0xdd7b000 + 101459
    40  com.adobe.illustrator.plugins.PDF Format          0x101200bd 0x1010f000 + 69821
    41  com.adobe.illustrator.plugins.PDF Format          0x1011a56a 0x1010f000 + 46442
    42  com.adobe.illustrator.plugins.PDF Format          0x101442e7 PluginMain + 2927
    43  com.adobe.illustrator.plugins.PDF Format          0x1014391e PluginMain + 422
    44  com.adobe.illustrator                   0x006a93ff 0x1000 + 6980607
    45  com.adobe.illustrator                   0x006a89c6 0x1000 + 6977990
    46  com.adobe.illustrator                   0x00586d75 0x1000 + 5791093
    47  com.adobe.illustrator                   0x0047021d 0x1000 + 4649501
    48  com.adobe.illustrator                   0x00473190 0x1000 + 4661648
    49  com.adobe.illustrator                   0x0027b1dc 0x1000 + 2597340
    50  com.adobe.illustrator                   0x0027bb3b 0x1000 + 2599739
    51  com.adobe.illustrator                   0x0027bf0d 0x1000 + 2600717
    52  com.adobe.illustrator                   0x000a2ad9 0x1000 + 662233
    53  com.adobe.illustrator                   0x000a24ea 0x1000 + 660714
    54  com.adobe.illustrator                   0x000a263a 0x1000 + 661050
    55  com.apple.AE                            0x91fb8e0b InvokeAEEventHandlerUPP + 29
    56  com.adobe.illustrator.plugins.Scripting Support          0x0e3794e6 0xe359000 + 132326
    57  com.adobe.illustrator.plugins.Scripting Support          0x0e3f4dcb PluginMain + 605
    58  com.apple.AE                            0x91fa3045 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 202
    59  com.apple.AE                            0x91f8cb67 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 43
    60  com.apple.AE                            0x91f8ca54 aeProcessAppleEvent + 253
    61  com.apple.HIToolbox                     0x93410a86 AEProcessAppleEvent + 103
    62  com.apple.HIToolbox                     0x9359ead1 AEProcessEvent + 162
    63  com.apple.HIToolbox                     0x9349752f HIStdAppHandler::HandleEvent(OpaqueEventHandlerCallRef*, TCarbonEvent&) + 181
    64  com.apple.HIToolbox                     0x934984ce TEventHandler::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 58
    65  com.apple.HIToolbox                     0x9358bc0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    66  com.apple.HIToolbox                     0x93407313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    67  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    68  com.apple.HIToolbox                     0x934065a8 SendEventToEventTargetWithOptions + 75
    69  com.apple.HIToolbox                     0x9341c1c6 _ZL29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRef Pv + 3152
    70  com.apple.HIToolbox                     0x934077ce _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 2813
    71  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    72  com.apple.HIToolbox                     0x9341b571 SendEventToEventTarget + 76
    73  com.adobe.illustrator                   0x00080d3e 0x1000 + 523582
    74  com.apple.HIToolbox                     0x9358bc0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    75  com.apple.HIToolbox                     0x93407313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    76  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    77  com.apple.HIToolbox                     0x934065a8 SendEventToEventTargetWithOptions + 75
    78  com.apple.HIToolbox                     0x9341c1c6 _ZL29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRef Pv + 3152
    79  com.apple.HIToolbox                     0x934077ce _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 2813
    80  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    81  com.apple.HIToolbox                     0x9341b571 SendEventToEventTarget + 76
    82  com.apple.HIToolbox                     0x9358ba58 ToolboxEventDispatcher + 82
    83  com.apple.HIToolbox                     0x9358bb87 RunApplicationEventLoop + 236
    84  com.adobe.illustrator                   0x00080f83 0x1000 + 524163
    85  com.adobe.illustrator                   0x000d84ab 0x1000 + 881835
    86  com.adobe.illustrator                   0x000a2cd2 0x1000 + 662738
    87  com.adobe.illustrator                   0x00003672 0x1000 + 9842
    88  com.adobe.illustrator                   0x00003599 0x1000 + 9625
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x95f0a90a kevent + 10
    1   libdispatch.dylib                       0x96fb6e04 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x96fb5853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x95f0a02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x95542ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x955446fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x95f0a02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x95542ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x955446fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x047c9552 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services                  0x047c4995 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 115
    5   com.adobe.amt.services                  0x047c95b0 AMTThread::Worker(void*) + 20
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x95544f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9ad0f3a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9ad0f11d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9ad0ef2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9ad84398 TimerThread + 292
    7   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x95f07c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95f071f6 mach_msg + 70
    2   com.macromedia.Flash Player.authplaylib          0x1390763e ExternalPlayer_Initialize + 1865604
    3   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x95f07d36 mach_wait_until + 10
    1   libsystem_c.dylib                       0x954ee439 nanosleep + 388
    2   com.adobe.illustrator.plugins.Scripting Support          0x0e46489d PluginMain + 458031
    3   com.adobe.illustrator.plugins.Scripting Support          0x0e4648fd PluginMain + 458127
    4   com.adobe.illustrator.plugins.Scripting Support          0x0e468402 PluginMain + 473236
    5   com.adobe.illustrator.plugins.Scripting Support          0x0e464bbf PluginMain + 458833
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xffffff4a  ebx: 0x0236f46a  ecx: 0x0000000f  edx: 0xbfff75ae
      edi: 0xffffff4a  esi: 0x00000642  ebp: 0xbfff7558  esp: 0xbfff7540
       ss: 0x00000023  efl: 0x00010282  eip: 0x024104cd   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xffffff5a
    Logical CPU: 0
    Binary Images:
        0x1000 -   0xe8eff3 +com.adobe.illustrator (367 - 14.0.0) <F586A10F-F480-4783-A20B-C006B6321F47> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x1190000 -  0x11a0fff  com.apple.carbonframeworktemplate (1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
    0x11a7000 -  0x11c2ff9 +AdobePDFSettings (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/Adobe PDFSettings
    0x11dc000 -  0x122cfff +com.adobe.illustrator.aiport (AIPort version 1.0 - 1.0) <F625B836-9616-46B7-B681-F9AC11D0DA71> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x12c5000 -  0x12c6027 +SPBasic (??? - ???) <B1DC5A08-15C4-49F9-9DF1-6A94E0AD3448> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x12ca000 -  0x12d0ff7 +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSp lashKit
    0x12d9000 -  0x13e6fff +AdobeACE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1404000 -  0x191bfef +AdobeAGM (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1a94000 -  0x1ad4fef +AdobeARE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1ade000 -  0x1b02ff6 +AdobeAXE8SharedExpat (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/A dobeAXE8SharedExpat
    0x1b15000 -  0x1b2ffff +AdobeBIB (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1b3a000 -  0x1b5bff7 +AdobeBIBUtils (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIB Utils
    0x1b68000 -  0x1e04fef +AdobeCoolType (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoo lType
    0x1e8f000 -  0x1f5dfff +AdobeExtendScript (3.7.0 - compatibility 3.7.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/Adob eExtendScript
    0x1fd4000 -  0x20bcfdf +AdobePDFPort (??? - ???) <F54A25D1-5E7A-472E-83D1-10D187434C85> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFP ort
    0x2101000 -  0x26f9fdf +AdobePDFL (??? - ???) <8EC2ABBA-52D2-4230-B327-A6827FB2D33A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x283d000 -  0x28defd7 +AdobeScCore (3.7.0 - compatibility 3.7.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCor e
    0x293a000 -  0x29e8fd7 +AdobeSVGExport (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSV GExport
    0x2a1a000 -  0x2cc3fe2 +AdobeSVGRE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x2dad000 -  0x2e0dfc7 +AdobeXMP (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2e1c000 -  0x2ef1fdd +FileInfo (??? - ???) <F0932F89-FC98-4BA9-B4F2-C58D0E71D3C1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x2f22000 -  0x2fa4fd7 +AdobeXMPFiles (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMP Files
    0x2fbb000 -  0x308a23b +libicui18n.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/ 3.6/libicui18n.dylib.36.0
    0x3133000 -  0x3207db7 +libicuuc.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc. dylib.36.0
    0x3268000 -  0x3c1857f +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.d ylib.36.0
    0x3c1b000 -  0x3fe5fef +AdobeMPS (??? - ???) <277E01A3-CAC3-4FA9-A591-4BC0A5BC125A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x4074000 -  0x422aff4 +com.adobe.amtlib (amtlib 2.0.1.10077 - 2.0.1.10077) <CB2EC3BF-6771-4DAB-BF29-6775FB6F9608> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x4261000 -  0x42ee2cb +libicucnv.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicuc nv.dylib.36.0
    0x431b000 -  0x46f501f +com.adobe.linguistic.LinguisticManager (4.0.0 - 7863) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeL inguistic
    0x47a9000 -  0x484afc3 +com.adobe.amt.services (AMTServices 2.0.1.10077 [BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09] - 2 . 0) <31E82904-C3C2-424E-A1AE-A5EFADBB19B8> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservice s
    0x4928000 -  0x4e26fc3 +AdobeOwlCanvas (??? - ???) <DC1EE447-FCDB-43C8-B6D2-A5454291C85D> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOw lCanvas
    0x4f6f000 -  0x4ffffc3 +WRServices (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x5181000 -  0x5185ffc +com.adobe.AdobeCrashReporter (2.5 - 3.0.20080806) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Ado beCrashReporter
    0x518b000 -  0x51a7fd7 +com.adobe.LogTransport (1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransp ort
    0x51b2000 -  0x51e1ff7 +com.adobe.headlights.LogSessionFramework (??? - 2.0.0.06112008) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x5209000 -  0x521affb +LogTransport2 (??? - ???) <835B7B84-5A67-370B-AB39-8E448AA81FA0> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogTransport2.framework/Versions/A/LogTrans port2
    0x5224000 -  0x522afff +com.adobe.pip (??? - 1.0.0.220) <2CA89939-DFA7-4686-8536-8A1F1107CAF1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
    0x5230000 -  0x525bfff  com.apple.GSS (2.2 - 2.0) <1CB56119-09C5-38FD-8FDC-064E3CC5068B> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x5271000 -  0x546bfcf +AdobeOwl (??? - ???) <F209A9B2-9606-4182-93D8-84B349CFBE48> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x54e6000 -  0x5523fff  com.apple.vmutils (4.2.1 - 107) <43B3BFA5-8362-3EBD-B44B-32DCE9885082> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x553d000 -  0x55eaff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x6794000 -  0x67dbfc7 +com.adobe.adobe_caps (adobe_caps 2.0.99.0 - 2.0.99.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x67eb000 -  0x67ebfff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <859B5BCC-B5D9-370F-8B6C-1E2B242D5DCD> /usr/lib/libmx.A.dylib
    0x7fa5000 -  0x7fb2ff7 +com.adobe.asneu.framework (asneu version 1.6.2f01 - 1.6.2) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xbbe9000 -  0xbbfbfff  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <F7D2A96C-D03F-3C0B-83FC-1016BB787B59> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xcdf4000 -  0xce02ffb  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <4378B89F-0BDA-3072-9C67-DE1A371DD816> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xce1d000 -  0xce1effc  ATSHI.dylib (??? - ???) <0B0F21B6-C254-34AE-8128-F3FBC80C68E6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0xce42000 -  0xce42fff +com.adobe.illustrator.plugins.PlugInRes (Localizer version 14.0.0 - 14.0.0) <CFE61490-698E-4FAE-988C-C238AC6CAAF8> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Resources/en_US/PluginRes.aip/Contents/MacOS/PlugInRes
    0xcf1b000 -  0xcf6afe6 +com.adobe.illustrator.plugins.Photoshop Adapter (Photoshop Adapter version 14.0.0 - 14.0.0) <897C80A3-5E5D-4156-8C80-38FE67F5F275> /Applications/Adobe Illustrator CS4/*/Photoshop Adapter
    0xcf91000 -  0xcf92fff +com.adobe.illustrator.plugins.ASLib (ASLib version 14.0.0 - 14.0.0) <F08F7B7D-86A2-462E-AB7B-B706FEE4B955> /Applications/Adobe Illustrator CS4/*/ASLib
    0xd0e4000 -  0xd0ebfff +com.adobe.illustrator.plugins.Action (Action version 14.0.0 - 14.0.0) <C884784D-9646-47C7-917D-2F6B65521B57> /Applications/Adobe Illustrator CS4/*/Action
    0xd0ef000 -  0xd0f8fff +com.adobe.illustrator.plugins.FrameworkServer (Framework Server version 14.0.0 - 14.0.0) <04B2DA5B-B84C-487C-A70E-76163D14D08F> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/FrameworkS erver
    0xd2d3000 -  0xd2ecfcb +com.adobe.illustrator.plugins.AssetMgmt (Asset Management version 14.0.0 - 14.0.0) <27CE4290-30DD-477C-9DD4-D46D6022D8D5> /Applications/Adobe Illustrator CS4/*/AssetMgmt
    0xd2f5000 -  0xd326fe3 +com.adobe.amt.registration (AMTRegistration 2.0.1.10077 [BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09] - 2 . 0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/registration.framework/Versions/A/registrat ion
    0xdd7b000 -  0xde4efef +com.adobe.coretech.adm (3.10x04 - 3.1) <369EAA04-C054-40EB-AC03-92CE99C7260C> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0xe0cf000 -  0xe0d5ff7 +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 14.0.0 - 14.0.0) <0EA7F2D8-904D-4AFC-A177-8569F3E2286A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverter s
    0xe0d9000 -  0xe102fff +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 14.0.0 - 14.0.0) <EF43DD3A-A797-450D-9FF7-4EFD246811A5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRSPencilToo l
    0xe108000 -  0xe117fd3 +com.adobe.illustrator.plugins.Flatten Transparency ( Flatten Transparency version 14.0.0 - 14.0.0) <66929E97-D63A-46F2-9ADC-F8C10995DFC3> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/Flatten Transparency.aip/Contents/MacOS/Flatten Transparency
    0xe11e000 -  0xe146fcb +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 14.0.0 - 14.0.0) <D2E6328E-B072-4F58-A8F4-191C1E7A3111> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConver sionSuite
    0xe156000 -  0xe16bfef +com.adobe.illustrator.plugins.Rasterize (Rasterize version 14.0.0 - 14.0.0) <20A55512-33F0-4669-BE49-F3ED9E2C1CC5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
    0xe16f000 -  0xe1a3fc3 +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 14.0.0 - 14.0.0) <45B1E4C5-0AEC-4C31-BF6E-ECC0888F9386> /Applications/Adobe Illustrator CS4/*/BrushManager
    0xe1ac000 -  0xe25afc8 +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 14.0.0 - 14.0.0) <11C2EC2C-29D3-462D-B3A2-771D85D66917> /Applications/Adobe Illustrator CS4/*/ColorHarmony
    0xe278000 -  0xe28dff0 +com.adobe.illustrator.plugins.ControlPalette (ControlPalette version 14.0.0 - 14.0.0) <65ADF72A-2398-43F7-9B05-52D7D592BA0E> /Applications/Adobe Illustrator CS4/*/ControlPalette
    0xe299000 -  0xe2c4ff0 +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 14.0.0 - 14.0.0) <0B0B227F-AA5B-46FB-A6B6-60AE2BFAD347> /Applications/Adobe Illustrator CS4/*/KinsokuDlg
    0xe2d5000 -  0xe34dfdb +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 14.0.0 - 14.0.0) <FDFCF271-25E0-46B9-812C-EFB4E49B61A8> /Applications/Adobe Illustrator CS4/*/PaintStyle
    0xe359000 -  0xe607fe7 +com.adobe.illustrator.plugins.Scripting Support (Scripting Support version 14.0.0 - 14.0.0) <00ED474E-DA84-421D-A0BA-AC17357B1FED> /Applications/Adobe Illustrator CS4/*/Scripting Support
    0xe8c0000 -  0xe8c3ffb +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0xe9cd000 -  0xea48fde +com.adobe.illustrator.plugins.SwatchLibraries (Swatch Libraries version 14.0.0 - 14.0.0) <CB45F4C6-5333-417D-8997-C124973041FE> /Applications/Adobe Illustrator CS4/*/SwatchLibraries
    0xea59000 -  0xea87068 +com.adobe.illustrator.plugins.SymbolPalette (Symbol Palette version 14.0.0 - 14.0.0) <DD7DBC72-EF5E-4F52-A102-794BF21F2498> /Applications/Adobe Illustrator CS4/*/SymbolPalette
    0xea90000 -  0xea94feb +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 14.0.0 - 14.0.0) <72429655-649D-4EFF-A0AF-DE2BE54FFDC6> /Applications/Adobe Illustrator CS4/*/ToolSelector
    0xea98000 -  0xeab1fef +com.adobe.illustrator.plugins.Workspaces (Workspaces version 14.0.0 - 14.0.0) <E065EBE1-AEF1-47B8-9933-EEB543767C5C> /Applications/Adobe Illustrator CS4/*/Workspaces
    0xeab8000 -  0xeacb04f +com.adobe.illustrator.plugins.Mojikumi ( MojiKumiUI version 14.0.0 - 14.0.0) <E32A6710-064A-4731-8844-E63F5DC4094F> /Applications/Adobe Illustrator CS4/*/Mojikumi
    0xead2000 -  0xead5fff +com.adobe.illustrator.plugins.GeometryS ( Geometry Suite version 14.0.0 - 14.0.0) <B30D9BE4-9735-4704-AD8A-467E7C25B9A9> /Applications/Adobe Illustrator CS4/*/GeometryS
    0xead9000 -  0xeb00fe8 +com.adobe.illustrator.plugins.slicingAttributes (Slicing version 14.0.0 - 14.0.0) <3A3FCCB7-D888-4949-94FB-74EA1892F2DE> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/sliceAttributes.aip/Contents/MacOS/slicingAtt ributes
    0xeb08000 -  0xeb0dfef +com.adobe.illustrator.plugins.ShapeS (Shape Construction Suite version 14.0.0 - 14.0.0) <A8E06D3D-22EB-4391-A488-39435E80F204> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ShapeS.aip/Contents/MacOS/ShapeS
    0xeb11000 -  0xeb3dfff +com.adobe.illustrator.plugins.PathfinderS (Pathfinder Suite version 14.0.0 - 14.0.0) <D0D9CCD1-0AEC-4C46-9AA3-F7F97ACCDEF1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PathFinderS.aip/Contents/MacOS/PathfinderS
    0xeb46000 -  0xeb4dff3 +com.adobe.illustrator.plugins.ExpandS (Expand Suite version 14.0.0 - 14.0.0) <29196393-E41C-43EA-8C0C-6260FD7F61FC> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ExpandS.aip/Contents/MacOS/ExpandS
    0xeb51000 -  0xeb61fff +com.adobe.illustrator.plugins.DocInfo (Document Info version 14.0.0 - 14.0.0) <4314802B-CE2E-4AF5-9460-5809DEFF7360> /Applications/Adobe Illustrator CS4/*/DocInfo
    0xeb68000 -  0xeba0fef +com.adobe.illustrator.plugins.Snap (Snap version 14.0.0 - 14.0.0) <29FC35B5-A5D5-4F0C-B721-49E267315B13> /Applications/Adobe Illustrator CS4/*/Snap
    0xebb0000 -  0xebc0ff2 +com.adobe.illustrator.plugins.DropShadow (Drop Shadow version 14.0.0 - 14.0.0) <50DC2482-540D-4817-8D0E-158E626298DA> /Applications/Adobe Illustrator CS4/*/DropShadow
    0xebc6000 -  0xebcdfc0 +com.adobe.illustrator.plugins.ADMTP (Tool Palette version 14.0.0 - 14.0.0) <7E1766B5-2D51-4E83-B515-6F5149B134B2> /Applications/Adobe Illustrator CS4/*/ADMTP
    0xebd1000 -  0xebe0ff3 +com.adobe.illustrator.plugins.Segment Tools (Segment Tools version 14.0.0 - 14.0.0) <5ADD1377-AC2A-43E7-A418-FA83F4E7DF2F> /Applications/Adobe Illustrator CS4/*/Segment Tools
    0xebe5000 -  0xec02fda +com.adobe.illustrator.plugins.ScatterBrushTool (Adobe Scatter Brush Tool version 14.0.0 - 14.0.0) <8BEBD742-F42F-49C5-A3F0-FA1C5285A7DA> /Applications/Adobe Illustrator CS4/*/ScatterBrushTool
    0xec09000 -  0xec0dfef +com.adobe.illustrator.plugins.GlobalAdjust (Reshape Tool version 14.0.0 - 14.0.0) <D6B5A699-E443-4D3A-87AA-FC7D8E2CB319> /Applications/Adobe Illustrator CS4/*/GlobalAdjust
    0xec11000 -  0xec30fcb +com.adobe.illustrator.plugins.ParticlePaint (Symbolism version 14.0.0 - 14.0.0) <4A4D97AA-0B5C-4311-83FE-288839029DA7> /Applications/Adobe Illustrator CS4/*/ParticlePaint
    0xec39000 -  0xec42fe7 +com.adobe.illustrator.plugins.Magic Wand (Magic Wand version 14.0.0 - 14.0.0) <93E02FBC-89CC-4486-B643-7F7B01E3C149> /Applications/Adobe Illustrator CS4/*/Magic Wand
    0xec46000 -  0xec5dff3 +com.adobe.illustrator.plugins.Liquify (Liquify version 14.0.0 - 14.0.0) <C16C9B41-5869-4A14-A5B7-8AC978B5FDFD> /Applications/Adobe Illustrator CS4/*/Liquify
    0xec61000 -  0xec68feb +com.adobe.illustrator.plugins.Lasso (Lasso version 14.0.0 - 14.0.0) <7C893464-927E-4EFC-B6FB-2F3E10F9A199> /Applications/Adobe Illustrator CS4/*/Lasso
    0xec6d000 -  0xec70fef +com.adobe.illustrator.plugins.KnifeTool (Knife Tool version 14.0.0 - 14.0.0) <79C5F1A2-6CF0-4A1D-9B50-7BE467DD80A6> /Applications/Adobe Illustrator CS4/*/KnifeTool
    0xec74000 -  0xeca8fdf +com.adobe.illustrator.plugins.EraserTool (EraserTool version 14.0.0 - 14.0.0) <1744EECA-69F1-4C93-AA06-B89075F3EEBE> /Applications/Adobe Illustrator CS4/*/EraserTool
    0xecb0000 -  0xecd8fec +com.adobe.illustrator.plugins.CalligBrushTool (Calligraphic Brush Tool version 14.0.0 - 14.0.0) <FA25241B-421C-49D6-BE9D-8BC1430E9828> /Applications/Adobe Illustrator CS4/*/CalligBrushTool
    0xecdf000 -  0xecf2ff7 +com.adobe.illustrator.plugins.BoundingBox (BoundingBox version 14.0.0 - 14.0.0) <D05C0C30-D456-4E98-9BC4-92C2294FB49F> /Applications/Adobe Illustrator CS4/*/BoundingBox
    0xecf6000 -  0xed21fd6 +com.adobe.illustrator.plugins.ArtBrushTool (Art Brush Tool version 14.0.0 - 14.0.0) <89FE2B11-D5DD-4DEA-966C-E1A85FB4CBAC> /Applications/Adobe Illustrator CS4/*/ArtBrushTool
    0xed28000 -  0xed87fcf +com.adobe.illustrator.plugins.PhotoshopImport (Photoshop Import version 14.0.0 - 14.0.0) <861DD58E-6EA7-4715-B877-5C75B596C85A> /Applications/Adobe Illustrator CS4/*/PhotoshopImport
    0xed9e000 -  0xfad0fff +com.adobe.psl (AdobePSL 11.0.0.1724 - 11.0.0.1724) <6BE27A60-E0F9-4483-8E57-2A7A5227D878> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0xfe04000 -  0xfe05ff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xfe0a000 -  0xfe36fff +com.adobe.illustrator.plugins.ExpressView Support (OS Express Views version 14.0.0 - 14.0.0) <4D362918-5276-46B4-9825-5CAE899E9EE5> /Applications/Adobe Illustrator CS4/*/ExpressView Support
    0xfe41000 -  0xfe8aff4 +com.adobe.illustrator.plugins.MPSParser (MPSParser version 14.0.0 - 14.0.0) <67607461-914F-440E-8624-381CC2A0079E> /Applications/Adobe Illustrator CS4/*/MPSParser
    0xfea0000 -  0xfed0fcc +com.adobe.illustrator.plugins.MPSExport (MPSExport version 14.0.0 - 14.0.0) <DD69AB2F-78AB-4225-9DCE-2141648F6E1E> /Applications/Adobe Illustrator CS4/*/MPSExport
    0xfee0000 -  0xfee1fff +com.adobe.illustrator.plugins.MPSCommon (MPSCommon version 14.0.0 - 14.0.0) <4CBB7829-A13E-41B3-9273-2223506DE716> /Applications/Adobe Illustrator CS4/*/MPSCommon
    0xfee5000 -  0xff03ff4 +com.adobe.illustrator.plugins.Scribble (Scribble version 14.0.0 - 14.0.0) <66F69AF3-2A26-4B2A-88E8-64568F71EA80> /Applications/Adobe Illustrator CS4/*/Scribble
    0xff0a000 -  0xff16ff3 +com.adobe.illustrator.plugins.Pathfinder (Pathfinder Plugin version 14.0.0 - 14.0.0) <7288F843-177B-43CE-9876-AB66A84A2F69> /Applications/Adobe Illustrator CS4/*/Pathfinder
    0xff1a000 -  0xff2ffc4 +com.adobe.illustrator.plugins.WelcomeScreen (WelcomeScreenn version 14.0.0 - 14.0.0) <780173AB-6EAA-4EF6-9D79-99CE78F0BF06> /Applications/Adobe Illustrator CS4/*/WelcomeScreen
    0xff35000 -  0xff48fd7 +com.adobe.illustrator.plugins.TransparencyPalette (Transparency Palette version 14.0.0 - 14.0.0) <2FC5A6F7-E157-4BE3-9490-657B1198825D> /Applications/Adobe Illustrator CS4/*/TransparencyPalette
    0xff4c000 -  0xff5dff6 +com.adobe.illustrator.plugins.SeparationPreview (Separation Preview version 14.0.0 - 14.0.0) <F0B42349-86B6-489E-A1ED-62DAB50BB12F> /Applications/Adobe Illustrator CS4/*/SeparationPreview
    0xff64000 -  0xff69fff +com.adobe.illustrator.plugins.PathSuite (PathConstruction Suite version 14.0.0 - 14.0.0) <667209A1-821D-468E-B3F5-67ADCC0A5B59> /Applications/Adobe Illustrator CS4/*/PathSuite
    0xff6d000 -  0xff93fdf +com.adobe.illustrator.plugins.LiveBlends (Live Blends version 14.0.0 - 14.0.0) <5949CA4F-0265-4001-827A-FDF67CE6E1C4> /Applications/Adobe Illustrator CS4/*/LiveBlends
    0xff98000 -  0xffc6fcf +com.adobe.illustrator.plugins.Layers (Layers Palette version 14.0.0 - 14.0.0) <F13985B8-7110-4AC4-A93B-30A650274B81> /Applications/Adobe Illustrator CS4/*/Layers
    0xffce000 -  0xffe4fef +com.adobe.illustrator.plugins.KBSCPlugin (Keyboard Shortcuts version 14.0.0 - 14.0.0) <8BA6912E-AC74-4FCE-97FF-02BF2F81958D> /Applications/Adobe Illustrator CS4/*/KBSCPlugin
    0xffeb000 -  0xffecfff +com.adobe.illustrator.plugins.FlattenS (Flatten Suite version 14.0.0 - 14.0.0) <34B0A010-1099-474C-9B2B-4D923FB10287> /Applications/Adobe Illustrator CS4/*/FlattenS
    0xfff0000 -  0xfff6feb +com.adobe.illustrator.plugins.FileClipboardPref (FileClipboardPref version 14.0.0 - 14.0.0) <A968F7DC-F8B2-46A3-8C78-1D129B37588E> /Applications/Adobe Illustrator CS4/*/FileClipboardPref
    0xfffa000 - 0x10056fd2 +com.adobe.illustrator.plugins.ArtStyle (Art Style version 14.0.0 - 14.0.0) <DAA8C2E9-65A7-40ED-B8D5-FF78F297EDA6> /Applications/Adobe Illustrator CS4/*/ArtStyle
    0x10062000 - 0x10071ff3 +com.adobe.illustrator.plugins.AppBarControlsPlugin (NewPlugin version 14.0.0 - 14.0.0) <C50066DB-5E97-4C95-AECB-BD0A1BBD2769> /Applications/Adobe Illustrator CS4/*/AppBarControlsPlugin
    0x10077000 - 0x100a7ffb +com.adobe.illustrator.plugins.AltGlyphPal (AdobeAltGlyphPalette version 14.0.0 - 14.0.0) <FC1467B2-2A62-408E-A38D-A1F8EC209A52> /Applications/Adobe Illustrator CS4/*/AltGlyphPal
    0x100b8000 - 0x100c9ff6 +com.adobe.illustrator.plugins.Align (AdobeAlignObjects version 14.0.0 - 14.0.0) <1E8046C8-EAE8-445B-83F3-B2AF0F4D3452> /Applications/Adobe Illustrator CS4/*/Align
    0x100ce000 - 0x10105fff +com.adobe.illustrator.plugins.ActionPalette ( Action Palette version 14.0.0 - 14.0.0) <49FF537C-26F4-450A-B7DE-59859F5A6DC0> /Applications/Adobe Illustrator CS4/*/ActionPalette
    0x1010f000 - 0x101a4fc1 +com.adobe.illustrator.plugins.PDF Format (PDF Format version 14.0.0 - 14.0.0) <C88425A7-C3DA-493B-AC3E-48AB988A3CD4> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PDF Format.aip/Contents/MacOS/PDF Format
    0x101c2000 - 0x10211ff3 +FilterPort (??? - ???) <7CF9F9BD-8C11-4F4C-A56F-D02923DA26C4> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/FilterPort
    0x102b0000 - 0x102f3fef +ADMEveParserCarbon (??? - ???) <E2B97059-2ECE-46E3-B0FA-E99EA7035CEC> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ADMEveParserCarbon.bundle/Contents/MacOS/ADME veParserCarbon
    0x1030d000 - 0x10315feb +com.adobe.illustrator.plugins.TextWrapDlg (TextWrapDlg version 14.0.0 - 14.0.0) <98A0EA55-C4D8-4204-9573-61592D2660A1> /Applications/Adobe Illustrator CS4/*/TextWrapDlg
    0x10319000 - 0x10326fff +com.adobe.illustrator.plugins.Advanced Select (Advanced Select version 14.0.0 - 14.0.0) <C0673233-D6ED-4333-B8DC-1EDB6B9436B0> /Applications/Adobe Illustrator CS4/*/Advanced Select
    0x1033b000 - 0x1033ffff +com.adobe.illustrator.plugins.TypeCase (Change Case version 14.0.0 - 14.0.0) <7DF88FF2-4C03-499F-A390-0C4D9C17B27D> /Applications/Adobe Illustrator CS4/*/TypeCase
    0x1344c000 - 0x13aeefef +com.macromedia.Flash Player.authplaylib (10.0.2.31 - 1.0.1d333) <E0851D48-16C9-4BDC-B3A7-7BAC9E7638F5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Resources/AuthPlayLib.bu ndle/Contents/MacOS/AuthPlayLib
    0x13c37000 - 0x13c63ff3  com.apple.audio.CoreAudioKit (1.6.3 - 1.6.3) <7D47B1D3-4410-3524-BC47-FCDF49E48DB5> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x14d0c000 - 0x14d64fff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x15c2e000 - 0x15c8aff2 +AdobeUpdater (??? - ???) <064CFAA4-1CAF-46E3-BEBF-04948641C927> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeUpdater.framework/Versions/A/AdobeUpda ter
    0x15f00000 - 0x16382fe3 +AdobeLM_libFNP.dylib (??? - ???) <02E9AC76-9CC6-4974-AF05-48E737C2CC20> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/AdobeLM_libFNP. dylib
    0x16600000 - 0x16707fcf +com.adobe.versioncue (??? - 4.0.1.095) /Library/Application Support/Adobe/*/VersionCue.framework/VersionCue
    0x16853000 - 0x168aefe7 +com.adobe.illustrator.plugins.PDF Suite (PDF Suite version 14.0.0 - 14.0.0) <586E2428-342D-4C78-89F0-56A0FD10246A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PDF Suite.aip/Contents/MacOS/PDF Suite
    0x40000000 - 0x400ae030 +AdobeJP2K (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe8e000 - 0x8fec0aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x90021ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9007e000 - 0x9014effb  com.apple.ImageIO.framework (3.1.2 - 588) <1AA18570-B5F8-3B1E-9D0A-0EDD866E5131> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90151000 - 0x9016efff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x9016f000 - 0x9019eff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x9019f000 - 0x90200ffb  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <7A14BE52-6789-3CE3-9AE9-B733F4903EB1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90210000 - 0x90210fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90238000 - 0x902a7fff  com.apple.Heimdal (2.2 - 2.0) <8ACC5067-441D-31C2-ACBD-4527C1AD73EF> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x902a8000 - 0x902b1ff3  com.apple.CommonAuth (2.2 - 2.0) <6F207851-084B-3354-A1B2-63065BC584F6> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x90587000 - 0x90c13ff5  com.apple.CoreAUC (6.16.12 - 6.16.12) <9D51400F-B827-3BA7-87F5-954A1CDDAEA9> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90c14000 - 0x90c1afff  libGFXShared.dylib (??? - ???) <9C9834EB-B794-38C8-9B90-31D8CB234F86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x90c1b000 - 0x90c1bfff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90c1c000 - 0x90c39ff3  com.apple.openscripting (1.3.3 - ???) <0579A4CB-FD6F-3D7F-A17B-AC0F2CF11FC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90c3a000 - 0x90c48ff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x90e4d000 - 0x90e51ff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x90ea5000 - 0x90eadfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90ef0000 - 0x90ef3ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <16DCE20A-9790-369A-94C1-B7954B418C77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90ef4000 - 0x90f81ff7  com.apple.CoreText (220.22.0 - ???) <EA7210A7-DECC-3F76-8A66-D4E41859B3C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90f82000 - 0x91a17ff6  com.apple.AppKit (6.7.5 - 1138.51) <B9D3DCA0-9765-354E-9730-75A45A97DDFD> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91a18000 - 0x91a80fff  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <B24814AB-CA77-3B9D-8FAB-58C9B4FD3A16> /usr/lib/libc++.1.dylib
    0x91c89000 - 0x91c94ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <D6E17FD4-ECA0-3EEE-BFC5-F6A42A21AB5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91c95000 - 0x91cbaff9  libJPEG.dylib (??? - ???) <0E0B7B77-582B-3D85-9CCA-ACFBCF196C98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91cbb000 - 0x91d5ffff  com.apple.QD (3.40.1 - ???) <B5650C5E-AB41-3758-84A1-5A97EDCD8EFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91d60000 - 0x91dfcfff  com.apple.ink.framework (10.7.5 - 113) <05CAFB64-D3B8-3973-87EA-CB8BBE580F6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x91f45000 - 0x91f47ff9  com.apple.securityhi (4.0 - 1) <39157216-5E43-392A-AE3F-716726D8C8BF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91f48000 - 0x91f49ff7  libsystem_sandbox.dylib (??? - ???) <036370E2-9D3E-38B8-B3A5-9056C57E780E> /usr/lib/system/libsystem_sandbox.dylib
    0x91f81000 - 0x91f81fff  libOpenScriptingUtil.dylib (??? - ???) <E4C22B65-9493-31D5-9D46-19BD70975587> /usr/lib/libOpenScriptingUtil.dylib
    0x91f82000 - 0x91f83ff7  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <46980EC2-149D-3CF7-B29A-401FB89C275D> /usr/lib/system/libquarantine.dylib
    0x91f84000 - 0x91f88ffd  IOSurface (??? - ???) <EDDBEE65-1EB8-33A7-9972-E361A3508234> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91f89000 - 0x91fbfff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9232f000 - 0x92344ff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <E5FCA336-7E47-343E-A82D-CCCA5BCD5929> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92345000 - 0x923ccfff  com.apple.print.framework.PrintCore (7.1 - 366.3) <EEC03CAB-7F79-3931-87FE-4DF0B767BF47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x923cd000 - 0x9245afe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9245d000 - 0x924c1fff  com.apple.framework.IOKit (2.0 - ???) <94827954-5906-36C4-819B-24CDAFD85C72> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x924c2000 - 0x924e4ff8  com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x924e5000 - 0x9250fff1  com.apple.CoreServicesInternal (113.20 - 113.20) <13FA1378-67CB-3579-BF83-D11E9425799F> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x9256d000 - 0x92765ff7  com.apple.CoreData (104.1 - 358.14) <C1730963-F75D-3338-B65F-D50235538B28> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x92766000 - 0x9276eff3  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <9E6135FF-C2B1-3BC9-A160-B32D71BFA77C> /usr/lib/system/liblaunch.dylib
    0x927a3000 - 0x927b1fff  com.apple.opengl (1.8.1 - 1.8.1) <766AFB12-A2CB-3A55-B662-FC9FFCAE0008> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x927b2000 - 0x927b6fff  libGIF.dylib (??? - ???) <2ADFED97-2228-343D-9A53-207CBFDE7984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x927b7000 - 0x927ccfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x927cd000 - 0x927cdff0  com.apple.ApplicationServices (41 - 41) <C48EF6B2-ABF9-35BD-A07A-A38EC0008294> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x927ce000 - 0x927e1ff8  com.apple.MultitouchSupport.framework (231.4 - 231.4) <083F7787-4C3B-31DA-B5BB-1993D9A9723D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x92b0f000 - 0x92b13ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <56256537-6538-3522-BCB6-2C79DA6AC8CD> /usr/lib/system/libcache.dylib
    0x92e5b000 - 0x92e5dffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92e5e000 - 0x92e68ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92ee8000 - 0x92ee9ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <2F4B35B2-706C-3383-AA86-DABA409FAE45> /usr/lib/system/libunc.dylib
    0x92eea000 - 0x92eeafff  com.apple.vecLib (3.7 - vecLib 3.7) <8CC

  • ODBC compatibility problem with server 7.1.5

    Hi all,
    I am suffering from Windows ODBC driver desasters and hope I am not alone with my problem:
    I am developing a client app with Visual Foxpro 5.0a (maybe not relevant to the problem) on Win NT 4.0 SP 6,
    which accesses a Oracle 7.1.5 Server (on Alpha VMS) through ODBC.
    I used for several years the Version 2.0.x of the Oracle ODBC driver with satisfying results.
    Now I have to extent the app to run on Win 95 (sorry, but thats true) and also Win 2000. I am working in a large company
    network and have to take as environment what is provided by the systems group, which is SQL-Net8 and Oracle drivers
    from the 8.x series (8.1.7x for Win 2000 and some 8.0.x for Win 95).
    My problem: While DML commands are just fine with the 8.x drivers on the 7.1 server, I cannot call any stored
    procedures on the driver. I am using "ODBC" syntax, i.e. send strings like
    "{Call Schema1.Package1.ProcedureA(?Variable1, ?@Variable2)}" to the ODBC driver.
    I get the error message "Table/View does not exist", which is garbage, since the same calls work just fine, when
    using the 2.x driver.
    However, with the 2.x drivers, also the procedures get called ok and IN parameters are passed correctly,
    I cannot receive IN OUT parameters! What I get back is what I passed into the procedure plus one arbitrary character.
    Needless to say, that the 8.x drivers work just perfect against an 8i Server. However, I cannot migrate my productive
    database anytime soon.
    Does anybody have an idea which drivers are able to support calling stored procedures on a 7.1.5 server or can point
    me to resources here, which handle the problem?
    Thanks a lot,
    Peter
    PS: Yes I have seen the previous thread stating that, 7.1x servers are no certified for new drivers. But I simply hope, some
    body recognizes my problem and has a solution. :-)

    Thanks for the tip, might well be that this solves my problem (standards always should, or).
    But how do I bind the variables in a separate step the standard way? I never saw that in any docs -neither Foxpro nor VB which of course now moved to ADO.
    Thanks for an example or a pointer to the literature,
    Peter
    The standard ODBC syntax for executing a stored procedure is
    "{Call Schema1.Package1.ProcedureA(?, ?)}"
    The syntax you describe
    "{Call Schema1.Package1.ProcedureA(?Variable1, ?@Variable2)}"
    isn't familiar to me. I assume it's something Microsoft cooked up for pass-through queries (may be something special for FoxPro) that combines a few steps. You may want to try using the standard syntax and doing the variable binding as a separate step.
    I suppose that there might be a problem with the 7.1.5 database and how it handles IN OUT parameters, but that seems unlikely...
    Justin

  • ODBC Driver problem with GetSchema("ProcedureParameters")

    Hi,
    i'm using Oracle ODBC Driver version 9.2.08 with ADO.net and trying to get
    list of procedure parameters using the standard GetSchema ODBC connection method. I always get an empty datatable (of course i'm sure that on my schema i've some procedures with parameters).
    Using Microsoft Oracle ODBC Driver i don't have this problem (it runs fine)
    Can someone help me ?
    Thanks in advance

    I'm simple use the following VB net code:
    Dim odbccn As System.Data.Odbc.OdbcConnection = New System.Data.Odbc.OdbcConnection("DSN=OraDSN;UID=user;PWD=pwd")
    odbccn.Open()
    Dim DataTable As DataTable = odbccn.GetSchema("ProcedureParameters")
    the DataTable is empty when OraDSN use ORACLE ODBC Driver... it runs when use Oracle Microsoft Driver
    I know how get list of Parameters using oracle catalogues but i need use standard ODBC Call...
    Thanks for your reply

  • A problem with threads

    I am trying to implement some kind of a server listening for requests. The listener part of the app, is a daemon thread that listens for connections and instantiates a handling daemon thread once it gets some. However, my problem is that i must be able to kill the listening thread at the user's will (say via a sto button). I have done this via the Sun's proposed way, by testing a boolean flag in the loop, which is set to false when i wish to kill the thread. The problem with this thing is the following...
    Once the thread starts excecuting, it will test the flag, find it true and enter the loop. At some point it will LOCK on the server socket waiting for connection. Unless some client actually connects, it will keep on listening indefinatelly whithought ever bothering to check for the flag again (no matter how many times you set the damn thing to false).
    My question is this: Is there any real, non-theoretical, applied way to stop thread in java safely?
    Thank you in advance,
    Lefty

    This was one solution from the socket programming forum, have you tried this??
    public Thread MyThread extends Thread{
         boolean active = true;          
         public void run(){
              ss.setSoTimeout(90);               
              while (active){                   
                   try{                       
                        serverSocket = ss.accept();
                   catch (SocketTimeoutException ste){
                   // do nothing                   
         // interrupt thread           
         public void deactivate(){               
              active = false;
              // you gotta sleep for a time longer than the               
              // accept() timeout to make sure that timeout is finished.               
              try{
                   sleep(91);               
              }catch (InterruptedException ie){            
              interrupt();
    }

  • Problem with Threads and a static variable

    I have a problem with the code below. I am yet to make sure that I understand the problem. Correct me if I am wrong please.
    Code functionality:
    A timer calls SetState every second. It sets the state and sets boolean variable "changed" to true. Then notifies a main process thread to check if the state changed to send a message.
    The problem as far I understand is:
    Assume the timer Thread calls SetState twice before the main process Thread runs. As a result, "changed" is set to true twice. However, since the main process is blocked twice during the two calls to SetState, when it runs it would have the two SetState timer threads blocked on its synchronized body. It will pass the first one, send the message and set "changed" to false since it was true. Now, it will pass the second thread, but here is the problem, "changed" is already set to false. As a result, it won't send the message even though it is supposed to.
    Would you please let me know if my understanding is correct? If so, what would you propose to resolve the problem? Should I call wait some other or should I notify in a different way?
    Thanks,
    B.D.
    Code:
    private static volatile boolean bChanged = false;
    private static Thread objMainProcess;
       protected static void Init(){
            objMainProcess = new Thread() {
                public void run() {
                    while( objMainProcess == Thread.currentThread() ) {
                       GetState();
            objMainProcess.setDaemon( true );
            objMainProcess.start();
        public static void initStatusTimer(){
            if(objTimer == null)
                 objTimer = new javax.swing.Timer( 1000, new java.awt.event.ActionListener(){
                    public void actionPerformed( java.awt.event.ActionEvent evt){
                              SetState();
        private static void SetState(){
            if( objMainProcess == null ) return;
            synchronized( objMainProcess ) {
                bChanged = true;
                try{
                    objMainProcess.notify();
                }catch( IllegalMonitorStateException e ) {}
        private static boolean GetState() {
            if( objMainProcess == null ) return false;
            synchronized( objMainProcess ) {
                if( bChanged) {
                    SendMessage();
                    bChanged = false;
                    return true;
                try {
                    objMainProcess.wait();
                }catch( InterruptedException e ) {}
                return false;
        }

    Thanks DrClap for your reply. Everything you said is right. It is not easy to make them alternate since SetState() could be called from different places where the state could be anything else but a status message. Like a GREETING message for example. It is a handshaking message but not a status message.
    Again as you said, There is a reason I can't call sendMessage() inside setState().
    The only way I was able to do it is by having a counter of the number of notifies that have been called. Every time notify() is called a counter is incremented. Now instead of just checking if "changed" flag is true, I also check if notify counter is greater than zero. If both true, I send the message. If "changed" flag is false, I check again if the notify counter is greater than zero, I send the message. This way it works, but it is kind of a patch than a good design fix. I am yet to find a good solution.
    Thanks,
    B.D.

Maybe you are looking for

  • URGENT:LWF Node is missing: Function INUCD adition to INN1?

    Dear Experts, We have applied Support packages : BASIS - SAPKB62062 and SAPKB62063 ABAP - SAPKA62062 and SAPKA62063 HR - SAPKE47045 to SAPKE47074 Now in spro LWF node is missing and system is showing an run time error. I have gone through the SAP not

  • Full Screen problem opening PDF on PC projector

    Using Flash CS3 on Mac - creating both Mac and PC projector files to go on a CD presentation Ok I have come across the following problem. When the CD is inserted the presentation starts automatically (on PC) and gives a list of PDFs which can be open

  • Query on retrieving data back to the program from ALV List

    Hi Group, I have a requirement to send the details of the selected data as an ALV list to the user. Then, the user selects either 1 or 2 or all or none back to the program from the ALV. Thing is that, 1) when the user selects ( Icon ) to choose all t

  • Help with tic tac toe

    hey all, i am having problems creating a tic tac toe program. the program should create a board with NxN spaces, where N is obtained through user input. I created a fully working program that does a 3x3 board, checks for diagonal, vertical, horizonta

  • Install weblogic  12c

    can i install adf 11.1.1.6 on weblogic 12c ? then , upgrade adf 11.1.1.6 up to 11.1.2.3 (JDeveloper) ? and there is any guide to install weblogic 12c and adf 11.1.1.6 ?? can any body tell me , it 's urgent