OLEVAR doesn't work on 10G Forms (Urgent)

Hi all,
I currently use 10g Forms. but every time have a error
occur
FRM-92101 : There was a failure in the Forms Server during startup. This could happen due to invalid configuration. Please look into the web-server log file for details.
Java Exception :
oracle.forms.netConnectionException: Forms .....
at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
at oracle.forms.net.HTTPNStream.flush(Unknown Source)
at java.io.DataOutputStream.flush(Unknown Source)
at oracle.forms.net.StreamMessageWriter.run(Unknown Source)
when execute "var:=TO_VARIANT( strs );" in when-button-press trigger. anybody know that what is the problem occur ?
pls find below coding : -
PROCEDURE EXP_EXCEL IS
TYPE TStrs IS TABLE OF varchar2(1000) INDEX BY BINARY_INTEGER;
MyApp ole2.obj_type;
MyBook ole2.obj_type;
MyWorkbooksCollection ole2.obj_type;
myWorksheets ole2.obj_type;
mySheet ole2.obj_type;
args OLE2.LIST_TYPE;
myRange ole2.obj_type;
val varchar2(32000);
startTime pls_integer;
endTime pls_integer;
-- Here is extra variable for this method
strs TStrs;
var OLEVAR;
firstCell varchar2(100);
lastCell varchar2(100);
id pls_integer;
BEGIN
/* Open Excel and create new document */
MyApp:=OLE2.Create_Obj('Excel.Application');
OLE2.Set_Property( MyApp,'VISIBLE', 1 );
MyWorkbooksCollection:=OLE2.GET_OBJ_PROPERTY( MyApp, 'Workbooks' );
MyBook:=OLE2.Invoke_Obj( MyWorkbooksCollection,'Add' );
myWorksheets:=OLE2.GET_OBJ_PROPERTY( MyBook,'Worksheets');
/* Get the WorkSheet to work */
args := OLE2.CREATE_ARGLIST; -- create argument list
OLE2.ADD_ARG( args, 1 ); -- add worksheet INDEX
MySheet := OLE2.GET_OBJ_PROPERTY( myWorksheets, 'Item', args);
OLE2.DESTROY_ARGLIST( args);
-- startTime:=WIN32.GetTickCount;
/* Add the information */
FOR myRowNum IN 1..8 LOOP
strs.delete;
-- Prepare the information for the row
FOR myColumnNum IN 1..38 LOOP
val:='t'||myRowNum||'_'||myColumnNum;
strs(myColumnNum):=val;
END LOOP;
/* Get the address of the first and the last cells */
args := OLE2.CREATE_ARGLIST; -- create argument list
OLE2.ADD_ARG( args, myRowNum );
OLE2.ADD_ARG( args, 1 );
myRange:=OLE2.GET_OBJ_PROPERTY( mySheet, 'Cells', args );
OLE2.DESTROY_ARGLIST( args);
firstCell:=OLE2.GET_CHAR_PROPERTY( myRange, 'Address' );
OLE2.RELEASE_OBJ( myRange );
args := OLE2.CREATE_ARGLIST; -- create argument list
OLE2.ADD_ARG( args, myRowNum );
OLE2.ADD_ARG( args, 38 );
myRange:=OLE2.GET_OBJ_PROPERTY( mySheet, 'Cells', args );
OLE2.DESTROY_ARGLIST( args);
lastCell:=OLE2.GET_CHAR_PROPERTY( myRange, 'Address' );
OLE2.RELEASE_OBJ( myRange );
/* Get the range */
args := OLE2.CREATE_ARGLIST; -- create argument list
OLE2.ADD_ARG( args, firstCell );
OLE2.ADD_ARG( args, lastCell );
myRange:=OLE2.GET_OBJ_PROPERTY( mySheet, 'Range', args );
OLE2.DESTROY_ARGLIST( args);
/* Set the cell value for range */
var:=TO_VARIANT( strs );
id:=GET_OLE_MEMBERID( myRange, 'Value' );
SET_OLE( myRange, id, var );
DESTROY_VARIANT( var );
OLE2.RELEASE_OBJ( myRange );
END LOOP;
-- endTime:=WIN32.GetTickCount;
-- :BLOCK1.FAST2_TIME:=TO_CHAR( (endTime-startTime) );
OLE2.RELEASE_OBJ(mySheet);
OLE2.RELEASE_OBJ(myWorksheets);
OLE2.RELEASE_OBJ(MyBook);
OLE2.RELEASE_OBJ(MyWorkbooksCollection);
-- OLE2.INVOKE (MyApp,'Quit');
OLE2.RELEASE_OBJ(MyApp);
END;
best regards
boris

Hi all,
Any expert can help me ?
best regards
boris

Similar Messages

  • Cursor style doesn't work on web forms

    Hi All,
    I have a FORM (6i) from which I run the report by clicking a button .
    I used to set_application_property to set cursor style to BUSY untill I get report output . It works in client/server but doesn't work in Web .
    Can I set this in any other way or is there any way we can show a progress bar in web FORMS without using ActiveX ? .
    Thanks in Advance,
    Sampath

    Hi Duncan,
    Thank you for your update . I didn't get "try a call to synchronize "
    in your note did you want me to run the report in Synchronous mode ?
    Thanks,
    Sampath
    Cursor Style does work on the Web (at least in 6i, there was an old bug in 4.5) - you shouldn't have to but try a call to synchronize after the set_application_property call.

  • CFselect onchange doesn't work on flash Form

    Hello :
    I have looked for more than a week to find out answer  but couldn't fine anything.
    I have cform with tye="Flash" and cfselect with query to populate the values.
    I want use onchange="" after I select any value on cfselect to submit the pages and select next cfselect. But doesn't work.
    Some help me
    When I used onchange="submitform();" the form doesn't display.
    I used geturl() and page reload but doesn't submit the page.
    I use this code that i found on Adobe web page and still doesn't work.
    <cfsavecontent variable="
    showSelectedCheckbox">
    var checkboxCount = 3;
    for(var i = 1; i <= checkboxCount; i++)
         var thisItem = 'check' + i;
         if(i == itemSelect.value)
              this[thisName].enabled = true;
         else
              this[thisName].enabled = false;
    </cfsavecontent>
    <cfform format="flash" width="300" height="500">
         <cfinput name="check1" type="checkbox"
              label="Feed?" enabled="true" />
         <cfinput name="check2" type="checkbox"
              label="Mine?" enabled="false"/>
         <cfinput name="check3" type="checkbox"
              label="Eat?" enabled="false"/>
         <cfselect name="itemSelect" label="Select Item"
              onchange="#showSelectedCheckbox#">
              <option value="1">Animal</option>
              <option value="2">Mineral</option>
              <option value="3">Vegetable</option>
         </cfselect>
    </cfform>
    I read about cffromitem or cfformgroup but i don't know how used it .
    Somebody Can help me to result this problem.

    I did everything written ''it solved'' but nothing solved. I think I'll begin to use chrome :(

  • Submit button doesn't work after moving form to another parent container

    I'm re-arranging the page using jquery. When I moved a div or table containing a form to another div, the submit button doesn't work anymore. Using the emulation mode under the Inspect Element feature of IE, the same code works for IE9 but not under IE10
    and up.
    Any ideas?
     

    I will steal the answer that George gave to a similar question, because it turns out it is applicable here as well:
    George Johnson  on Feb 23, 2012 11:17 AM 
    When you distribute a form, it replaces the email address that you've set up in a submit button with the email address you have specified in "Edit > Preferences > Identity > Email Address". So before you initiate the Distribute Form process, change the email address there to the one you want to use.
    It is a ridiculous solution, because it means I have to make the identity of my personal copy of Acrobat the email address of someone else or some other department when I make the form, but whatever -- at least the form sends now.

  • Table delete button doesn't work with Virtual Forms

    I applied all of Winston Prakash's tips to my project table (http://blogs.sun.com/winston/category/Creator), but my table is not the only component in the page, so I had to use Virtual forms.
    When I add the "Delete" button, i have to put it on a Virtual Form. I followed the steps on the multi selection table and the "Adding a button panel to the table component header" post, but when I select a row, the JavaScript works well (the row changes to yellow)... but the action code gets a :
    getTableRowGroup1().getSelectedRowsCount()==0
    and getTableRowGroup1().getSelectedRowKeys().length==0.
    I tried almost everything with the forms... I don't know what I missed...

    It works for me. Is it the Delete button in the Toolbar that doesn't work, or the Delete key in the keyboard, or what? Doesn't any other way of deleting a message work either (e.g. Edit > Delete)?

  • Page level process doesn't works for tabular form.....

    I am developing an application on inventory of an chemical factory.......
    I have an master-detail form where detail table is in tabular form.......
    I have an LOCATION1 AND QUANTITY1 COLUMN in detail table..........
    I have location say...LT01A02 AND limit of each location to hold an quantity is .....say 1000.
    I wrote an process for these but it doesn't work.......
    declare
    x NUMBER(6);
    z number(6);
    begin
    selecT NVL(SUM(QUANTITY1),0) INTO x from RM_LOCATION1 where LOCATION1 = :P3_LOCATION1;
    z := x;
    if :P3_LOCATION1 LIKE'%1)' or :P3_LOCATION1 LIKE'%2)' then
    if z > 1200 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 1ST OR 2ND PALLETE ,WHICH CAN HAVE MAXIMUM 1200KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    elsif :P3_LOCATION1 LIKE'%3)' or :P3_LOCATION1 LIKE'%4)' then
    if z > 800 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 3RD OR 4TH PALLETE ,WHICH CAN HAVE MAXIMUM 800KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    elsif :P3_LOCATION1 LIKE'%5)' or :P3_LOCATION1 LIKE'%6)' then
    if z > 750 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 5TH OR 6TH PALLETE ,WHICH CAN HAVE MAXIMUM 750KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    elsif :P3_LOCATION1 LIKE'%7)' or :P3_LOCATION1 LIKE'%8)' OR :P3_LOCATION1 LIKE'%9)' or :P3_LOCATION1 LIKE'%10)' OR :P3_LOCATION1 LIKE'%11)' or :P3_LOCATION1 LIKE'%12)' then
    if z > 600 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 7TH OR 8TH OR HIGHER PALLETE ,WHICH CAN HAVE MAXIMUM 600KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    end if;
    end;
    I HAVE SEEN THAT APEX DOESN'T PICKS VALUE CALLED... _:P3_LOCATION1_*
    NOW WHAT TO DO ,CAN ANY ONE HELP ME....HOW TO RUN THESE PROCESS......

    Hi User XY,
    tabular forms do not have Page Items. The values you entered in the tabular form are stored in arrays like APEX_APPLICATION.g_f01 to g_f50.
    Here are some links you might find helpful: http://www.talkapex.com/2008/07/manually-creating-tabular-form.html
    http://download.oracle.com/docs/cd/E23903_01/doc/doc.41/e21676/apex_app.htm#CHDICJDA
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at and http://www.wirsindapex.at

  • UTL_FOPEN is not working in 10g forms.

    Hi...
    I am using following code to open a file in write mode in forms 10g.
    mfile_id := SYS.UTL_FILE.FOPEN('PERFDATA','text.txt','w');
    ( PERFDTA is a directory object.)
    When i run form this gives the error, ORA-04067.
    But same code works in pl/sql.
    Can any one help me regarding this.
    Thanks in advance,
    Kumar

    uhm...why using utl_file?!? Is there any special circumstance why u have to use this? This package is for use in stored procedures only...You don't even use dbms_sql instead of exec_sql in forms either, huh?
    * Files which are on the database server and should be read by pl/sql packages => utl_file
    * Files which are on the Middle Tier and should be read by Forms => text_io (syntax is similar to utl_file)
    * Files which are on the client => webutil...
    if you want to read files which are on the database server in forms, you can just put the logical part into a pl/sql package on the database and use this...???
    regards
    Christian

  • Fbean doesn't work anymore after forms patch 10.1.2.2.0

    Hi everybody!
    I was working with Forms 10.1.2.0.2, Oracle AS 10g release 2 (10.1.2.0.2) and I
    was using Internet Explorer 6.
    There was a limitation with IE 6, so I choosed to migrate to Internet Explorer 7.
    Now I have Internet Explorer 7, Oracle AS 10.1.2.2.0, Forms 10.1.2.2.0.
    I recompiled all the frames and libraries.
    All the frames containing a java bean reached the FRM-92101 error. I had to destroy and
    recreate each javabean.
    Now the frames reach the same error when calling Fbean package.
    Do I have to recompile this package or something like that?
    How can I do?
    Has anybody got an idea?
    Thanks for your help.
    Christine

    Hi Ramesh,
    I applied latest patch 6673231 (MLR#11, 11-FEB-2008) but the issue persists. On metalink I found SR 18299248.6 and Note:469848.1 on this exact problem.
    However the patch has been removed from the temporary ftp location given in the SR, and its not in the latest merge patch so I can't get my hands on it.
    Could you please get me this patch, or do you recommend me to open a new SR just to get to download this patch? Many thanks!
    with kind regards,
    Gerben

  • Delete button doesn't work in tabular form after upgrade from APEX3.2 to 4

    I just upgraded the APEX from 3.2 to 4.0. However, my application is not working anymore.
    First of all, my delete button in tabular form is not working. When I select a row and click the delete button, the row is not deleted, however the message showed 1 row is deleted.
    Could you anybody tell me how can I debug this problem?
    Thanks a lot !

    I had the same problem. I first tried the solution above, but that didn't work. I also had a derived column for a custom popup and some display only columns. I removed the derived column and took out the display columns from my query. I then made sure my column order matched the source query. I applied changes and the delete button worked. FYI. I found out by some testing that it was actually trying to delete from the table, but with the wrong id. My first editable field was qty so if the qty was equal to 2 it then tried to delete from the table where pk=2(I had to restore that record). I believe it is related to the bug above. Backup your app first. I always do before I mess with the tabular forms.
    Jeff

  • Submit Form button doesn't work in interactive form opened in Reader created in InDesign6

    One of the features I was really looking forward to  in CS6 was creating fillable forms with ONE application. I created a form following the step by step instructions in classroom in  a book for CS6.  When I opened the exported form in Reader X, I get a "This operation is not permitted" error. I opened the completed "end" document in the lesson to make sure  I didn't commit an error, and I got the same message when exporting. I have looked for places in menus to modify security restrictions and I can't find any. I installed the updates and that didn't solve the issue.
    I saw one solution posted which is to open the document in Acrobat, then do a "save as" option.   Is there anything we can do that doesn't involve buying additional software? If this is not the case, then Adobe seriously needs to change its training and advertising about this functionality.

    While I'm at it, here's a quote from Adobe's website, describing the Forms functions in InDesign CS6:
    Using InDesign you can create simple forms within InDesign, without needing to touch up the PDF document in Acrobat after publishing. You can add simple form elements within the document pages. Common field types such as text fields, radio buttons, check boxes, or signatures are supported. You can also add actions to submit the form by email or to print it.
    No...no, I can't.

  • JavaBean not working with Oracle Forms (URGENT)

    I have written a Javabean program which I invoke from Oracle Forms. The program is designed to pass a parameter from the form to the bean and get a parameter back to the form from the Javabean. The bean is called on the when-button-pressed event of a form button. The problem is, the form doesnt seem to invoke the bean at all. There seems to be no communcation between the form and the bean at runtime on-click of the form button other that all the messages in the form procedure being displayed.
    The event code for the button is,
    Declare
    setNewMsg varchar2(2000) := 'Hello World';
    getData varchar2(2000);
    BeanHdl Item;
    Begin
    BeanHdl := find_item('Block3.MYBEAN');
    If NOT ID_NULL(BeanHdl) Then
              Message('Before Set');
              SET_CUSTOM_PROPERTY(BeanHdl,1,'setMessage',setNewMsg);
              Message('Before Get');
              getData := GET_CUSTOM_PROPERTY(BeanHdl,1,'getMessage');
              SYNCHRONIZE;
              Message(getData);
              Message('After Get');
              Message(' ');
    Else
              Message('The ID is null');
              Message(' ');
    End If;
    END;
    The javabean code is,
    package oracle.forms.beans;
    import java.awt.*;
    import java.io.*;
    import java.beans.*;
    import oracle.forms.ui.*;
    import oracle.forms.properties.*;
    import oracle.forms.handler.*;
    import oracle.ewt.lwAWT.*;
    public class SimpleTestBean extends VBean { 
    public static final ID SETMESSAGE = ID.registerProperty("setMessage");
    public static final ID GETMESSAGE = ID.registerProperty("getMessage");
    private String msg = "";
    public String newMessage() {
         return msg;
    public Object getProperty(ID id) { 
         try { 
              if (id == GETMESSAGE) { 
                   return newMessage();
    return super.getProperty(id);
    catch (Exception e) { 
         e.printStackTrace();
    return null;
    public boolean setProperty(ID id, Object value) { 
         try { 
              if (id == SETMESSAGE) { 
              msg = (String) value;
    return super.setProperty(id, value);
    catch (Exception e) { 
         e.printStackTrace();
    return false;
    Thanks

    Hi,
         I have written a Javabean program which I invoke from Oracle Forms. The program is designed to pass a parameter from Oracle Form(Ver 6i) to the java bean and get a parameter back to the form. The Javabean is called on "When-Button-Pressed" event of a Form button. The problem is, Form doesn't seem to invoke the bean at all. There seems to be no communication between the Oracle Form and the Javabean at runtime.
         On-click of the Form button though all test messages in the Form trigger are being displayed (Even message before and after the Set_Custom_Property & Get_Custome_Property). The only issue is the Form variable doesn't show the returned value from the bean. So the big question is - Whether the bean is invoked at all or not.
         If YES then how to check it and if NO then how to communicate with the bean from Oracle Form. I am attaching the code of Javabean and trigger code.
    Thanks & Regards
    NOTE : All the ClassPath for the JavaBean has been set properly and the Form is also recognizing the Implementation Class for the Javabean.
         The Trigger Code is,
         --- This code is written on When-Button-Pressed trigger of Form button.
         --- The form also contains the bean area "MYBEAN", which i have referred in the code.
         Declare
              setNewMsg varchar2(2000) := 'Hello World';
              getData varchar2(2000);
              BeanHdl Item;
         Begin
         BeanHdl := find_item('Block3.MYBEAN');
         If NOT ID_NULL(BeanHdl) Then
              Message('Before Set');
              SET_CUSTOM_PROPERTY(BeanHdl,1,'setMessage',setNewMsg);
              Message('Before Get');
              getData := GET_CUSTOM_PROPERTY(BeanHdl,1,'getMessage');
              SYNCHRONIZE;
              Message(getData);
              Message('After Get');
              Message(' ');
         Else
              Message('The ID is null');
              Message(' ');
         End If;
         END;
    The Bean Code is,
         package oracle.forms.beans;
         import java.awt.*;
         import java.io.*;
         import java.beans.*;
         import oracle.forms.ui.*;
         import oracle.forms.properties.*;
         import oracle.forms.handler.*;
         import oracle.ewt.lwAWT.*;
         public class SimpleTestBean extends VBean { 
         public static final ID SETMESSAGE = ID.registerProperty("setMessage");
         public static final ID GETMESSAGE = ID.registerProperty("getMessage");
         private String msg = "";
         public String newMessage() {
              return msg;
         public Object getProperty(ID id) { 
              try { 
                   if (id == GETMESSAGE) { 
                        return newMessage();
    return super.getProperty(id);
         catch (Exception e) { 
              e.printStackTrace();
              return null;
         public boolean setProperty(ID id, Object value) { 
              try { 
              if (id == SETMESSAGE) { 
              msg = (String) value;
    return super.setProperty(id, value);
         catch (Exception e) { 
              e.printStackTrace();
              return false;
    ------------------------------------------------------------------------------------------

  • Connection Manager doesn't work for 10G R2 in Win Server 2k3 Datacenter 64

    Hi there,
    I installed the CMAN for 10G 10.2.0.3 64bit in Windows Server 2003 Datacenter x64. I can see the services installed. But I can't start the service. The error message is "(LOG_RECORD=(TIMESTAMP=15-MAR-2007 18:46:47)(EVENT=CMAN.ORA not present))", although the CMAN.ORA is in Network directory. Any hint?

    No. But I don't think it's needed anywhere, right?

  • Session Killing - Automatically in 10g Forms

    Dear All,
    We have used when-timer expired-trigger in 6i forms and killed sessions which are idle for more than 30 mins. But the same form does not work with 10g forms.
    Is there any limitation in 10g forms with when-timer-expired trigger.
    How do we enable this. Please help us in fixing this.
    Thanks
    Guru

    I tried with "separateframe=true" in formsweb.cfg and it works fine for me.
    What is not working when you set "separateframe=true"?
    So far my experience with timeoutPJC is it works great with single form, form gets closed when the maximum Inactivity Period is exceeded but it is an issue when we try to implement it in multi-form application. My scenario is like this
    - I have main form which works like a MENU with Hierarchial tree structure,
    each node calls a different form within the application. Menu appears on the
    left while individual forms appearing towards right upon invokation.
    - I am trying to implement the timeoutPJC(Oracle Forms 10gR2 Demos) on this
    form so that when the Maximum Inactivity period exceeds then the whole
    application gets closed. It works GREAT when implemented on a single form
    but in a multiple form application it doesn't seem to work.
    - Also I have requirement to display a WARNING message 2 minutes prior to
    timeout so that user will be notified before the application gets closed. I
    tried to display forms ALERT but until the user acknowledges the alert application
    will not close. As an alternative to the forms alert I tried displaying an
    html document using WEBUTIL it is working ok but ideally I would like to see an Alert and close automatically just like AVG alert which shows timer after it has successfully updated and gets closed once the timeout occurs, anyone has ideas how to build such an alert?.
    - From the main form (MENU) I use OPEN_FORM built-in() to open 1st level of
    forms in the application. From this form I make use of CALL_FORM() to call
    various other forms.
    - If the focus is in the call form and if the form is in NORMAL mode
    everything works great. But if the form is either in ENTER-QUERY mode or LOV
    is opened and timeout occurs nothing happens until I close the called form
    manually then all the forms get closed. How to overcome this situation?
    - I can't understand why this doesn't work if the PJC is associated with the
    JAVA applet?
    **Is there a way we can close all the forms when timeout occurs without implementing timeoutPJC bean on all 600 odd forms in our application given the constraints I have defined above?
    Thanks in Advance,
    Venu

  • Deploy 10g forms and reports in Oracle 11g

    Hi, I'm working in 10g forms and reports development. However, in my company want to migrate to Oracle 11g.
    My doubt is: May I deploy 10g forms and reports in Oracle 11g installation (Weblogis server + Oracle Fusion Middleware)?
    Thanks.

    I downloaded developer suite.does this developer suite includes 10g database also.becoz there are two disks for the developer suite whereas there was only one disk for oracle 10g datbase that i downloaded earlier and installed.if this developer suite includes database,reports and forms then do i need to uninstall the previous data base 10g that i installed.please help me regarding this.
    thanking you all

  • Premiere CS4 doesn't work on Windows 7

    I have a delicious new Windows 7 edit suite I built for nearly 3 grand, and Adobe Production Premium CS4.
    Premiere doesn't work properly.
    I urgently need to edit a TV documentary. I don't have time to mess around, that's why I paid for the software rather than pirate it or get something like Vegas or Pinnacle.
    I try and load my Premiere project and the thumbnails for my clips are grey and the program freezes when I try to view them.
    Importing the project into a new project does nothing.
    I just lose response as soon as I try to play some of the clips (about half of them)
    All of the clips are on a local, high speed hard drive.
    I have downloaded all Window's latest updates.. Same with Adobe..
    This software is fairly disgusting. I've been struggling with Adobe Premiere for many years, especially on larger projects that aren't SD DVD-AVI format.

    Hi Guys
    I tried doing the benchmark thing but failed-
    followed the instructions on the webpage, but found afterwards that they didn't match the instructions in the RTF file..
    Couldn't get the script to work- runtime error.
    However, project launched in around 11 seconds, rendered in I think less than a minute, and exported both formats in about 36 seconds.
    Is that useful?
    I am struggling to find any more time to work with this benchmarking utility.. thanks for bringing my attention to it though.
    HDD setup is
    System SSD
    3 x Spinpoint F3 (not in RAID as I'm struggling setting it up without wiping Windows from the SSD...)
    Asus P6TD
    Graphics card is the weakest link here - 8500GT, until I can afford to upgrade.. Think it has latest drivers though.
    X-Fi Xtreme Gamer soundcard (very recently installed)
    I do indeed have a Logitech mouse, it's using SetPoint, latest version with UberOptions.
    It seems like this project is nothing less than corrupted. But nothing is helped by me importing it into a fresh project... my steps:
    1. Load Prem CS4 (latest update)
    2. Load Promo.prproj
    3. When loaded, it takes an additional ~15 seconds of busy disk activity, loading thumbnails in the timeline etc, which it normally never does on this machine. Finally, offline symbols change to thumbnails in the project/bin pane
    4. If I scroll down in the project window, the lower clips have no thumbnails and suddenly everything's fallen apart; the monitor is black, the source monitor is frozen... Sometimes Prem says not responding..

Maybe you are looking for

  • Unknown error message when trying to update or download Apps?

    Hello!  I have had no problems till now, and have been happily downloading and updating for 9 months.  Yesterday I received an unknown error message when I tried to update an App on my IPad 2, and have since been unable to update or download. Have tr

  • Crash 0::42 when Exporting Audio with Quicktime:

    Hello Folks, We're having an issue with exporting .mov files from After Effects.  When a user tries rendering a project through Make Movie > Ouput Module > Quicktime Movie, AE crashes with the error code 0::42 if the user simply clicks the 'Format Op

  • Odd Problem with iTunes store-buying an album

    I'm trying to buy the Deluxe edition of Straight Outta Lynwood, but when I click on "Buy Album," it says I already bought it, and says to click "Ok" so I can download it. However, it doesn't download. I clicked on "Check for Purchases" in the menu, a

  • Remittance advie to vendors

    Hi Sap Experts,   I need to configure  ACH Payment method for vendors and after the automatic payment run the system need  to send remittance advice through email to vendors. I would be very thankful if any one can help me in providing the details st

  • Can we install OC4J R3 on top of 9iAS R2 Enterprise Edition

    Can we install the OC4J R3 on top of 9iAS R2 Enterprise Edition? We were able to install the OC4J R3 on top 9iAS R1 EE, but not on 9iAS R2 EE, any clues on this? Thank you H.M.Mallik