Help with Invalid Parameter Binding issue

let me prefix this with the fact that I'm about as ignorant as can be when it comes to oracle so speak slowly and hopefully I'll catch the low hanging fruit.
I've inherited a project that someone else wrote and I'm trying to make the code base work, but I am getting 2 error messages and don't really know where to start to fix it.
My project is using ActiveReports (yea I hate it too) to call a function into a 10g database. It is returning an error saying Invalid Identifier. When I try to run the function in visual studio I get an invalid parameter binding error message and it says parameter name "" (empty quotes, so who knows).
here's what I have:
the type definition:
TYPE type_A AS OBJECT (date_a VARCHAR2(25), start_date VARCHAR2(25), end_date VARCHAR2(25), items_total INT, items_with_x INT, items_without_x INT, items_with_x_percent DECIMAL(7,6), items_without_x_percent DECIMAL(7,6))
the type table:
TYPE type_A_table AS TABLE OF type_A
the function that is erroring:
<em>FUNCTION func_A (start_date_str IN VARCHAR2, end_date_str IN VARCHAR2) RETURN type_A_table PIPELINED
IS
PRAGMA AUTONOMOUS_TRANSACTION;
    start_date_filter TIMESTAMP := TO_DATE(start_date_str,'MM/dd/yyyy HH:MI:ss AM');
    end_date_filter TIMESTAMP := TO_DATE(end_date_str,'MM/dd/yyyy HH:MI:ss AM');
    items_total INT;
    items_with_x INT;
    items_without_x INT;
    items_with_x_percent DECIMAL(7,6);
    items_without_x_percent DECIMAL(7,6);
    temp type_A;
BEGIN
    SELECT COUNT(*) INTO items_total FROM atable WHERE (create_date BETWEEN start_date_filter AND end_date_filter);
    SELECT COUNT(*) INTO items_with_x FROM atable WHERE conditionx=1 AND (create_date BETWEEN start_date_filter AND end_date_filter);
    SELECT COUNT(*) INTO items_without_x FROM atable WHERE conditionx=0 AND (create_date BETWEEN start_date_filter AND end_date_filter);
    items_with_x_percent := 0.00;
    items_without_x_percent := 0.00;
    IF items_total > 0 THEN
        items_with_x_percent := (items_with_x*1.00)/(items_total*1.00);
        items_without_x_percent := (items_without_x*1.00)/(items_total*1.00);
    END IF;
    temp := type_A(
        TO_CHAR(CURRENT_DATE,'MM/dd/yyyy HH:MI:ss AM'),
        start_date_str,
        end_date_str,
        items_total,
        items_with_x,
        items_without_x,
        items_with_x_percent,
        items_without_x_percent
    PIPE ROW(temp);
    RETURN;
END;</em>
I've changed some of the details here from the original so there may be some syntax errors but hopefully you get the gist of the situation.
any help would be appreciated.
Thanks

activereports is a report generator for .net
as for why it's written the way it is, I have no idea. Like I said, I didn't write it, I'm only trying to get it to work. There is far too much of it (and I'm far under-skilled) to go back and re-write everything the way it should be.
this function is pretty simple, it takes a start & end date as a string as parameters to the function. it converts those to timestamps and query's an existing table with data for the number of times condition X is true or false with in that date range. This is what the report being generated reports on.
This one was short and simple which is why I posted it. Others are far more complex and do loop, but for the sake of simplicity I posted this one. I get the same error with all the rest and I figure if I can get one working, the rest probably suffer from the same issue so fixing the rest should be fairly straight forward.
as for priv's the user is granted all priv's (that are available when you create a new user in 10g XE's web admin interface), and it won't let me grant/remove priv's from the visual studio addin for myself.

Similar Messages

  • [Oracle JDBC Driver]Invalid parameter binding(s).

    Hi there
    I am using the OracleCachedRowSet, and it works fine until I tries to update a resultset with a null value. When I call rs.acceptChanges(connection); it results in the following exception.
    Please help if anyone has found a workaround to this problem.
    java.sql.SQLException: [BEA][Oracle JDBC Driver]Invalid parameter binding(s).
    at weblogic.jdbc.base.BaseExceptions.createException(Unknown Source)
    at weblogic.jdbc.base.BaseExceptions.getException(Unknown Source)
    at weblogic.jdbc.base.BaseParameters.getParameter(Unknown Source)
    at weblogic.jdbc.base.BasePreparedStatement.setObjectInternal(Unknown Source)
    at weblogic.jdbc.base.BasePreparedStatement.setObject(Unknown Source)
    at weblogic.jdbc.wrapper.PreparedStatement.setObject(PreparedStatement.java:268)
    at oracle.jdbc.rowset.OracleCachedRowSetWriter.updateRow(OracleCachedRowSetWriter.java:429)
    at oracle.jdbc.rowset.OracleCachedRowSetWriter.writeData(OracleCachedRowSetWriter.java:534)
    at oracle.jdbc.rowset.OracleCachedRowSet.acceptChanges(OracleCachedRowSet.java:2926)
    at eurostat.Items.updateRS(Items.java:192)
    at eurostat.DBConnectionBean.updateRS(DBConnectionBean.java:94)
    at jsp_servlet.__mainpage._jspService(MainPage.jsp:248)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.wlw.netui.pageflow.PageFlowJspFilter.doFilter(PageFlowJspFilter.java:246)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6724)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)

    Hi Avi
    Thanks for the suggestion, but I don't thint that is the problem. In other forums I have found people describing the same problem(both with Oracle and Sun's implementation of CachedRowSet). See this link for an example http://bugs.mysql.com/bug.php?id=9831. So I figured that those other people needed to have a solution to the problem, but I can't find it.
    /Thomas

  • Hoping for some help with a very frustrating issue!   I have been syncing my iPhone 5s and Outlook 2007 calendar and contacts with iCloud on my PC running Vista. All was well until the events I entered on the phone were showing up in Outlook, but not

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

  • PL/SQL:- Invalid Parameter binding

    While calling a pl/sql function returning table type is shows error:
    Invalid parameter binding
    Parameter name: ""

    The problem is coming from .NET and most probably for NULL values.
    SQL> set serverout on
    SQL> create TYPE TEMP_TABLE AS OBJECT (
      2  COLUMN1 VARCHAR2(128),
      3  COLUMN2 VARCHAR2(32),
      4  COLUMN3 VARCHAR2(128));
      5  /
    Type created.
    SQL> create TYPE TEMP_TABLE_REC AS TABLE OF TEMP_TABLE;
      2  /
    Type created.
    SQL> create function SP_TEMP RETURN TEMP_TABLE_REC AS
      2 
      3  v_process_inputs TEMP_TABLE_REC :=TEMP_TABLE_REC();
      4 
      5  CURSOR CUR_EQUIP IS
      6  SELECT 'b' FROM dual
      7  UNION
      8  SELECT 'f' FROM dual;
      9 
    10  REC_EQUIP CUR_EQUIP%ROWTYPE;
    11 
    12  BEGIN
    13 
    14  OPEN CUR_EQUIP;
    15  LOOP
    16  FETCH CUR_EQUIP INTO REC_EQUIP;
    17  EXIT WHEN CUR_EQUIP%NOTFOUND;
    18  v_process_inputs.EXTEND;
    19 
    20  v_process_inputs(1):=TEMP_TABLE('a','b','c');
    21 
    22  END LOOP;
    23  CLOSE CUR_EQUIP;
    24 
    25  RETURN v_process_inputs;
    26  END SP_TEMP;
    27  /
    Function created.
    SQL> declare
      2     result temp_table_rec;
      3  begin
      4    -- Call the function
      5    result := sp_temp;
      6    FOR i in 1..RESULT.COUNT LOOP
      7     dbms_output.put_line(RESULT(i).COLUMN1||'--'||RESULT(i).COLUMN2||'--'||RESULT(i).COLUMN3);
      8    END LOOP;
      9  end;
    10  /
    a--b--c
    PL/SQL procedure successfully completed.Note the last null values ----.

  • Report erroring out with 'Invalid parameter requested' in Siebel.

    Hello -
    I have 9 parameters on a template, excluding the two delivered out-of-the-box by siebel to enter the Language and Locale. Recently, if i enter a language value of 'ESP' ( or any other language value), it errors out with 'Invalid parameters requested' error. On reviewing the OC4j log file, i noticed that the language parameter ('ESP') is actually being applied to another parameter in my template that accespts only 'Yes/No' boolean values. This occurs randomly, there is no particular pattern to this.
    Log snippet:
    [020711_233324269][][STATEMENT] WARNING: Old RTF version detected, nested table disabled
    [020711_233324297][][STATEMENT] expression: rpad(trim(EndDate),10)
    [020711_233324315][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324319][oracle.apps.xdo.template.rtf.field.RTFFieldResult][STATEMENT] stylename=Normal
    [020711_233324322][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324325][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324329][oracle.apps.xdo.template.rtf.field.RTFFieldResult][STATEMENT] stylename=Normal
    [020711_233324332][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324335][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324338][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324341][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324344][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324348][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Body Text 2
    [020711_233324351][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Body Text 2
    [020711_233324354][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica-Oblique
    [020711_233324357][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Body Text 2
    [020711_233324360][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Body Text 2
    [020711_233324364][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324367][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324370][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324373][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324376][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324379][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324382][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324385][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [020711_233324433][oracle.apps.xdo.template.rtf.RTF2XSLParser][STATEMENT] Time spent: 6917
    [020711_233324437][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica closed.
    [020711_233324440][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica-Bold closed.
    [020711_233324442][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Times-Roman closed.
    [020711_233324445][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Courier closed.
    [020711_233324447][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica-Oblique closed.
    [020711_233324454][][STATEMENT] Setting data definition:ShowDiscount type:oracle.apps.xdo.servlet.data.bind.ReportParameterBoundValue
    [020711_233324457][][STATEMENT] Setting data definition:ShowOperatingLeaseProposal type:oracle.apps.xdo.servlet.data.bind.ReportParameterBoundValue
    [020711_233324459][][STATEMENT] Setting data definition:ShowHeaderFooter type:oracle.apps.xdo.servlet.data.bind.ReportParameterBoundValue
    [020711_233324462][][STATEMENT] Setting data definition:ShowProductLongDescription type:oracle.apps.xdo.servlet.data.bind.ReportParameterBoundValue
    [020711_233324465][][STATEMENT] Setting data definition:ShowListPrice type:oracle.apps.xdo.servlet.data.bind.ReportParameterBoundValue
    [020711_233324468][][STATEMENT] Setting data definition:ShowProductDescriptionPage type:oracle.apps.xdo.servlet.data.bind.ReportParameterBoundValue
    [020711_233324471][][STATEMENT] Setting data definition:ShowOneGEpage type:oracle.apps.xdo.servlet.data.bind.ReportParameterBoundValue
    [020711_233324473][][STATEMENT] Setting data definition:AltBudgetQuote type:oracle.apps.xdo.servlet.data.bind.ReportParameterBoundValue
    [020711_233324476][][STATEMENT] Setting data definition:RSorBP type:oracle.apps.xdo.servlet.data.bind.ReportParameterBoundValue
    [020711_233324479][][STATEMENT] Set ReportRequest's parameters key[0], ShowDiscount
    [020711_233324481][][STATEMENT] Set ReportRequest's parameters value[0], [Ljava.lang.String;@18bf083
    [020711_233324484][][STATEMENT] Set ReportRequest's parameters key[1], ShowProductLongDescription
    [020711_233324486][][STATEMENT] Set ReportRequest's parameters value[1], [Ljava.lang.String;@5b3488
    [020711_233324489][][STATEMENT] Set ReportRequest's parameters key[2], ShowProductDescriptionPage
    [020711_233324491][][STATEMENT] Set ReportRequest's parameters value[2], [Ljava.lang.String;@1d60031
    [020711_233324494][][STATEMENT] Set ReportRequest's parameters key[3], ShowOperatingLeaseProposal
    [020711_233324497][][STATEMENT] Set ReportRequest's parameters value[3], [Ljava.lang.String;@a6a14b
    [020711_233324499][][STATEMENT] Set ReportRequest's parameters key[4], AltBudgetQuote
    [020711_233324502][][STATEMENT] Set ReportRequest's parameters value[4], [Ljava.lang.String;@1a75098
    [020711_233324504][][STATEMENT] Set ReportRequest's parameters key[5], ShowOneGEpage
    [020711_233324507][][STATEMENT] Set ReportRequest's parameters value[5], [Ljava.lang.String;@19c449f
    [020711_233324509][][STATEMENT] Set ReportRequest's parameters key[6], ShowHeaderFooter
    [020711_233324512][][STATEMENT] Set ReportRequest's parameters value[6], [Ljava.lang.String;@5d53c3
    [020711_233324515][][STATEMENT] Set ReportRequest's parameters key[7], RSorBP
    [020711_233324519][][STATEMENT] Set ReportRequest's parameters value[7], [Ljava.lang.String;@1262d8c
    [020711_233324522][][STATEMENT] Set ReportRequest's parameters key[8], ShowListPrice
    [020711_233324524][][STATEMENT] Set ReportRequest's parameters value[8], [Ljava.lang.String;@17864c4
    [020711_233324527][][STATEMENT] Default Report OutputFormat = html
    [020711_233324531][][STATEMENT] Illegal parameter value: AltBudgetQuote=ESP
    [020711_233324536][java.lang.String][EXCEPTION] oracle.apps.xdo.servlet.data.DataException: Invalid parameters requested.
         at oracle.apps.xdo.servlet.ReportException.fillInStackTrace(ReportException.java:124)
         at oracle.apps.xdo.servlet.data.DataException.fillInStackTrace(DataException.java:127)
         at java.lang.Throwable.<init>(Throwable.java:196)
         at java.lang.Exception.<init>(Exception.java:41)
         at oracle.apps.xdo.servlet.ReportException.<init>(ReportException.java:36)
    Any help to resolve this is highly appreciated

    Any solution to this yet user2078933 ? What is the solution to this problem?
    [STATEMENT] Illegal parameter value: <everything-perfect-here>
    This is a transient issue with no apparant pattern. I can't believe that none of you have got any solution to this in so many years.
    Somebody respond please, it's been years!

  • Parameter Binding Issue

    I have an advanced function that that looks something like this:
    function Audit-System
    [CmdletBinding()]
    param(
    [Parameter(Position=0,Mandatory=$True,ValueFromPipeline=$True,ValueFromPipelinebyPropertyName=$True)]
    [Alias("Name")]
    [string[]]$ComputerName
    Process
    foreach($computer in $ComputerName)
    ## Do stuff for every computer
    Write-Verbose $computer
    The followimg work ok:
    "computer1","computer2" | Audit-System
    Audit-System "computer1","computer2"
    Audit-System "computer1"
    The following doesn't work:
    Get-ADComputer -Filter * SearchBase "CN=Computers,DC=contoso,DC=com" | Audit-System -Verbose
    I would have thought that because the [Microsoft.ActiveDirectory.Management.ADComputer] has a 'Name' property parameter binding would have matched it up with my $ComputerName parameter. Why doesn't this work?

    What version of PowerShell are you running? I have this working running PowerShell V4 and also having installed  KB2928680 which
    fixed a known issue with PowerShell V4 and the use of -Properties * with Get-ADUser and Get-ADComputer.
    Interesting. I still need to pipe through select on a fully patched Win8.1 and Win7 (with V4 installed).
    Don't retire TechNet! -
    (Don't give up yet - 12,700+ strong and growing)
    Disregard this. After more testing (this time using the function), I run into the same issue. Appears that this particular issue is still occurring. I know there is a connect issue submitted for this, but wasn't able to locate it (at the time of this post).
    Boe Prox
    Blog |
    Twitter
    PoshWSUS |
    PoshPAIG | PoshChat |
    PoshEventUI
    PowerShell Deep Dives Book

  • Need some URGENT help with 3 DVD mastering issues PLEASE! :

    Hi there,
    Firstly, I am running DVD SP 3.0.2 on Mac OS 10.4.7 on a G5 Dual 2 GHz 3Gb Ram plenty of HD space...
    I am creating a DVD with: An intro sequence, a main menu, 4 sub menus, and 4 sections with around 12 chapters each.
    I am having some big problems, and a pretty stuck. I will lest them separately below, numbered. If you are able to help, please refer clearly to which number you are helping with. Any help is MUCH appreciated! Many thanks!!
    1. Each of the 5 menus (1 main, 4 sub) have a background video, and a separate audio track. I added the background videos by simply dragging them to the assests panel, then from there onto the menu editor window. They are created in FCP and are properly encoded. However, when I click the motion button, or use the simulator, the videos do not show up. The music plays, but all i see is plain black.
    What is going on?!?!?!
    2. I am really struggling with rollover buttons. I have custom created buttons, and I wand them to have a soft red glow around them when hovered over. HOW ON EARTH DO I ACTUALLY DO THIS??
    The buttons are in photoshop so can be exported with/without background/glow in any format.
    3. Is it possible, once I have got the above rollover working, to have an image to the right hand side of my buttons which changes with the the button rollover. i.e. hover over button 1, see image 1. hover over button 2, image changes to image 2.
    PLEASE PLEASE give any help you can, I have a deadline coming up and am quite stumped. Thanks again!!

    I am still having problems regarding issue Number 1. PLEASE ANYONE HELP?!
    Sorry, I'm not sure about the motion menus. I avoid those whenever possible. But you might click on the menu in the storyline tab (whatever it's called -- the hierarchical view with the disc, tracks, slideshows, etc.) and look at the properties and see if there's anything you have to enable specifically for motion. And be sure the motion button is on on the main display/preview area, but it sounds like you already know how that works.
    For your information, here is a screen grab of the menu I am trying to create:
    http://www.redhavoc.co.uk/stuff/menu.jpg
    I think it is obvious that when a button is hovered over, I want it to glow red, and the image to the right will change to match the respective button.
    IS THIS GOING TO BE POSSIBLE????
    Yes.
    First, your menus have to be layered menus. Unfortunately, there's no way to convert non-layered menus to layered menus, so if you already have non-layered, you'll have to just delete them and create new layered menus. The button (and menu item) to create a layered menu should be right by the normal new-menu item.
    Next, the graphical work is all in Photoshop.
    Side tip: You may already know this, but I found it's best to use 640x480 for the Photoshop document. When I do text and leave it as a text object in the Photoshop file, it resizes poorly in DVDSP. So this ends up being another 720x480 vs. 640x480 square/rectangular pixel conversion thing. DVDSP plays in the 640x480 world, at least as far as the designer can see. So I keep my images at 640x480, and it doesn't have to resize, and everything looks right.
    Moving on... Set up your basic background, the part that won't change (or will have other things covering it, like for your square image).
    Then put in all the buttons and images you'll be using, each part in a separate layer. This could have fifteen buttons (you have five buttons, and there can be three versions for each -- inactive, selected, and activated versions) and five or six square images (you said one for each button, and you might want a blank default if, say, you want to add a "back" button on the menu and want some blank or default image for the square when they're on the "back" button).
    Sometimes people don't bother with a separate "active" button state, but you usually want some visual feedback that they clicked the button. Also, I usually just build the default (unselected) button into the background; that's less hassle later on, and it will just draw the selected or activated buttons over that when the user is on that button.
    Line up all your buttons and images. All the square images lined up perfectly on top of each other, all the buttons in the right places (so you'll have three buttons stacked on top of each other in each spot). Give each layer a short but quickly recognizable name, and line them up in a consistent order. (button1-default, button1-selected, button1-active, button1-squarepicture, then button2-default, ... etc.) Photoshop and DVDSP don't care, but it makes it easier for you later.
    Note that earlier versions of DVDSP won't show Photoshop layer effects. (They handle layers, just not the effects, like inner glow, outer bezel, etc.) I don't remember when they changed this, but I think it was version 4.something. So if you're using that method to make your buttons glow, you may have to flatten each selected or active button layer, and you may even need to create a dummy blank layer underneath it first to give it something to flatten onto.
    Save the file as a standard Photoshop file (.psd). Drag the file onto your DVDSP layered menu and set it as the background.
    Now, in DVDSP, create all your buttons. Just drag boxes over/around the button pictures you have. Feel free to make them extra-big; users won't see the actual area you've selected, and bigger areas makes it easier for people to hit them if they're using a mouse on a computer to watch the DVD. You can point the buttons to their targets now if you want, and set the end jumps on the tracks if you want. (I tend to set the end jumps on the tracks so they automatically select the button for the next track.)
    Now's the fun part, since it will actually hook everything up and should be easy if your naming layer order were consistent. Click on the layered menu (in that hierarchical view) and look at the properties window. (Sorry I can't remember the technical names for all these windows; I'm doing this all from memory. So feel free to ask more questions if you can't find what I'm talking about.) One of the properties tabs should have a grid of checkboxes with a list of your layers. Make sure the background is checked for all of the states. Then check the layers you want to show for each button state, as well as the corresponding square image to show for each.
    Again, I'm doing this from memory, and I can't remember exactly how things are listed in that grid. But I remember it keeps your layers in the same order you put them in the Photoshop file and shows you those names, so it should make it easy to go down the list and check the right boxes.
    And another side tip: You can update the Photoshop file, but once you've put it in DVDSP, if you change the layer order, it will screw up the check boxes you checked. It always shows you the layer names correctly, but it keeps the checkboxes in DVDSP simply assigned to the layer number, so the fifth layer will keep the same checkboxes even if you juggle them so some other layer is now the fifth layer. So if you do juggle the layers in Photoshop, go back and fix the checkbox list in DVDSP.
    I put a sample Photoshop file based on yours in
    http://dan.black.org/layered-menu-sample.psd
    It's quick and dirty, but shows the layer layout, and you should be able to drop it on DVDSP to play with. (I also won't leave it there forever, maybe a few weeks, so anybody reading this in a month or more probably will get a 404 for that url.)
    Again, doing this from memory, so feel free to ask if anything doesn't work or doesn't make sense.
    G4/dual867   Mac OS X (10.4.5)   2GB/0.8TB

  • Can any help with my Xcode download issue?

    Hi all,
    Can anyone help with my Xcode issue? I downloaded it the other day but it is currently stuck saying waiting. I found this advice online http://scheyeniam.blogspot.co.uk/2011/08/how-to-revive-mac-app-store-when-its.ht ml and it seemed simple enough. However it tells me to go into activity monitor and quite 'storeagent'. The issue is that there is no process called storeagent. I have tried quitting other processes but it doesn't seem to be working.
    Does anyone know of a solution to stop the download saying 'waiting' and to get it started?
    Thanks

    Most likely it is downloading, although the App Store doesn't show the download progress. I had the same problem yesterday when I did the upgrade. It eventually finished, and it's quite a large download, so it might take hours, depending on your internet connection.
    If you open the Launchpad, and locate the XCode application icon, it should show a download/install progress, if you want to verify that it's actually doing something. Otherwise, just leave the App Store running, and it should eventually finish.

  • Can anyone help with the java applet issue

    Hello everyone,
    This is my first thread in this forum,
    I need a little help with the form developer...
    I have oracle 9i db , 9i form developer
    I don't want to run the form i created as a java applet
    HOW IS THAT DONE i.e NOT IN THE INTERNET EXPLORER?????????
    ***IF ITS POSSIBLE

    Hello,
    I don't want to run the form i created as a java applet
    No chance, because the Web Forms client is an applet and cannot be anything else.
    Francois

  • Crystal report Parameter binding issue with Liveoffice

    Hello,
    I have created a Crystal report on top of BW query. In crystal report when parameter is set to null the report gets all data from BW query.
    On inserting the same Crystal report to Live office document on binding the parameter i get the data for selected value for parameter but i am not able to set the parameter to null to get all the data from BW queries.
    Please help!
    Regards,
    Rahul Doshi

    Hi,
    I was able to solve the issue with the below code. I have added a parameter value as <Not Specifed> in paramter.
    if {?parameter1}='<Not Specified>' Then like '*' else
    ={?Parameter1} and
    if {?Parameter2}='<Not Specified>' Then like '*' else
    ={?Parameter2} and
    if {?Parameter3}='<Not Specified>' Then like '*' else
    ={?Parameter3} and
    if {?Parameter4}='<Not Specified>' Then like '*' else
    ={?Parameter4}
    This code works perfectly fine in crystal report. But when i bind the parameter with excel in Live office it gives me below error.
    Parameter has no value.
    Details: errorKind
    Error in File {7D9B961E-ADB9-4292-9DDE-A8D11B94D78E}.rpt:
    Error in formula  Record Selection:
    'if {?Sales Office}='<Not Specified>' Then {0SD_C03_ZQRY_0SD_C03_0011_BOBJ.D[0SALES_OFF]K} like '*' else
    Parameter has no value.
    Details: errorKind (LO 26603)  (6603)
    Please help.
    Regards,
    Rahul Doshi

  • Help with simple addition formcalc issue

    I know just enough to be dangerous. I'm trying to get a row in a table to add up and appear in a separate subtotal box. The error I get is "accessor amount [*] unknown." I am working from the invoice template, but I had to refigure the box after some issues. I am using the formula that appeared in the previous subtotal box, but I know I'm not referencing the table row properly.
    Each amount box has been given a name (amount1, amount 2, etc) in the binding box and the subtotal box formula I used (throught formcalc) is form1.#subform[0].Subtotal::calculate - (FormCalc, client)
    Sum(Table1.Row1-15.amount[*])
    and
    Sum(amount1, amount2, amount3, amount4...) (listing all the amount names up to 15)
    I also tried Sum(amount[*]) as the previous template did and it wouldn't work. The Subtotal box grouping is straight from the Invoice Template, not created from the table. I know I am missing something pretty basic with heirarchy, but I don't know enough about scripting to figure this out. Any help (and explanation of what I did wrong) would be greatly appreciated. Thanks!

    The accessor [*] is only used for objects with the same name, that occur once or more.
    If you have 5 fields "Amount" in one row named "Row1" then the reference syntax is
    Table1.Row1.Amout[0], Table1.Row1.Amout[1] ... Table1.Row1.Amout[4].
    To summarize those fields you use: Sum(Table1.Row1.Amout[*])
    If you have 5 rows named "Row1" and each row has one field "Amount" then the reference syntax is:
    Table1.Row1[0].Amout, Table1.Row1[1].Amout ... Table1.Row1[4].Amout
    To summarize those fields you use: Sum(Table1.Row1[*].Amout)
    Both examples only work if the object that is repeated has always the same name!

  • I can't see my photos opened with CS6 - Help with Nvidia GeForce GT issues?

    I just bought a new Toshiba Satellite P855-335 laptop running Windows 8 with a Nvidia GeForce GT 640M video card, but I am only able to open my photos when I disable the Graphics Processor from within CS6 Preferences.  When the check is active, I see a black screen and the photo is shown only in the Navigator. Is really anoying to have a useles yet powerful video card for my photo editing. My guess is that I am still able to work with my photos because the integrated intel HDGraphics400 video card jumps in when I disable the GPU within photoshop.  
    What I have done so far:
    1.- Updated to the latest driver for my set up.  I went to Toshiba website and latest driver was already active. Version 305.46 dated July 2012
    2.- I called Nvidia and tried unsuccesfully to install a newer driver (310.90) because is not compatible with my card, they also suggested to install an older driver 304.709 but the operating system just did not want to update to an older driver
    3.- I went to Photoshop help and followed instructions and none seemed to work: 
    3.1. made sure I had latest version of Photoshop CS6 Extended version 13.0.1 x64
    3.2.- Set GPU settings to basic
    3.3. Reset preferences (Crt+shift+alt) while starting photoshop
    3.4. Checked Cache levels to 4
    Maybe the biggest and unacceptable issue is that the reported NIvidia cards tested with Photosho CS6 doesnt include the 600 Series. It is quite annoying because all the other series are reported: nVidia GeForce 8000, 9000, 100, 200, 300, 400, 500 series
    any ideas to help?
    My system info reported within photoshop is the following:
    Adobe Photoshop Version: 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00) x64
    Operating System: Windows NT
    Version: 6.2
    System architecture: Intel CPU Family:6, Model:10, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2395 MHz
    Built-in memory: 12177 MB
    Free memory: 8285 MB
    Memory available to Photoshop: 10864 MB
    Memory used by Photoshop: 70 %
    Image tile size: 128K
    Image cache levels: 4
    The GPU Sniffer crashed on 23/01/2013 at 23:00:04
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GT 640M/PCIe/SSE2
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1200, right: 1920
    Video Card Number: 2
    Video Card: Intel(R) HD Graphics 4000
    OpenCL Version:
    Driver Version: 9.17.10.2828
    Driver Date: 20120731000000.000000-000
    Video Card Driver: igdumd64.dll,igd10umd64.dll,igd10umd64.dll,igdumd32,igd10umd32,igd10umd32
    Video Mode:
    Video Card Caption: Intel(R) HD Graphics 4000
    Video Card Memory: 2048 MB
    Video Rect Texture Size: 16384
    Video Card Number: 1
    Video Card: NVIDIA GeForce GT 640M
    OpenCL Version:
    Driver Version: 9.18.13.546
    Driver Date: 20120731000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode:
    Video Card Caption: NVIDIA GeForce GT 640M
    Video Card Memory: 2048 MB
    Video Rect Texture Size: 16384
    Serial number: 92628897399600750964
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\ROMME_~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 922.1G, 536.1G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/06/26-12:17:19   4.0.95   66.510504
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.3
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Clouds 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Collada 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Maximum 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mean 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Measurement Core 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Median 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mezzotint 13.0
       Minimum 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       MMXCore Routines 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Picture Package Filter 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Pinch 13.0
       Pixar 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Range 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0.1
       Shear 13.0
       Skewness 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Sumi-e 13.0
       Summation 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Variations 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       WIA Support 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    Unfortunately, it seems that Toahiba has not improved their driver releases. As they repackage the nVidia drivers, a straight nVidia driver will seldom install properly. I had a Toshiba Satellite (biggest, baddest in its day), and it never got a video driver update. No nVidia drivers would install. I found this Web site, and for the five years that I used that laptop, it rewrapped every new nVidia driver, to install on the Toshiba: http://www.laptopvideo2go.com/drivers.
    Predicated on a similar Toshiba thread, I checked for that old Satellite, and Toshiba had not issued a new one, four years later - so their one driver was about 9 years old at that point.
    Good luck,
    Hunt

  • Can anyone help with my broad band issue please?

    Hi all, I'm leaving this message here in desperation as I really don't know what else to do apart from cancel my contract with BT.
    I had broadband and a phone line installed on the 26th of May and though the phone line went live straight away, the broadband has not worked. An engineer visited, advised the issue was at the echange and late called my partner to see if the blue light on the hub had come on. She confirmed it had and the engineer than closed the call.
    I arrived home that evening to try and use the broadband and connected but the speed was abysmal.
    I then ran a speed test which informed me my download speed was 0.38mbps. Obviously this speed is not worth paying for.
    I called again to report the poor speed and was told an engineer would visit this morning between 8 and 1. My partner booked this time off from work but the engineer did not turn up. I spoke to the online service to report this and they said they could not see an appointment had been booked. I remembered to print off my previous online conversation with them and even quoted the reference number for the booking. They then said there was a technical issue at their end.
    They have rebooked for next Monday and unless they resolve it there and then I can't see any other option but to cancel the whole thing.
    I am so frustrated at the last of customer service and the fact I have to talk online to someone who is very apologetic but not able to help. I can't believe I can have a service installed on the 26th of last month and it still is not working!
    And the fact that my partner has twice booked half days for the engineer appointments is just bad luck?
    If anyone has any help or knows anyway to expedite the issue or speak to anyone with enough authority to log a complaint I'd be most grateful. Thank you

    from the speed can I assume that it was adsl (copper) and not fibre connection?
    which hub do you have?
    can you enter your phone number and post results remember to delete number  https://www.btwholesale.com/includes/adsl/main.html
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Help with Test Server & Binding Recordset ASP-SQL

    Using CS 3.3/DW. Behavior is the same on two different
    machines. One is Vista Home Premium SP1 IIS 7 with 6 compatability,
    other is XP SP 3 IIS 5.1, both have IE 7 and full SQL 2005 with
    SP's.
    Haven't gotten very far away from static page yet, because I
    can't test. Have scoured forums and even talked to Adobe who
    recreated the problem then told me that they hadn't done sufficient
    testing to SQL 2005 prior to release, were supposed to call me
    back, did once, supposed to call back again and haven't (3 days).
    So I'm turning to the community for help, please.
    Set up test server in folder 'TServer' under
    C:\inetpub\wwwroot. Built a 'Hello World' ASP/VB Script page with
    no data attached, tests fine, puts in the appropriate folder and
    says "Hello World" in browser like a good little box should! Have
    built many DSN's, they tested during the building fine, I've tried
    various versions of ODBC and OLE DB, including but not limited to
    Native SQL Client, which is my preference and have been quite
    successful setting up the DSN's...they add to the ASP page/Site
    (it's greyed out unless you have an open ASP page) fine. Test at
    that point works fine. As soon as I bind a Recordset (whether I
    have dropped data on the page or not...same 'Hello World' page with
    Recordset info near the top of the code) and test, I error out.
    Any thoughts? I'm sure you'll need more info...I've tried to
    put as much as I can for starters. Thanks in advance.
    Peter

    When you say that you error out, what error are you getting?
    Ken Ford
    Adobe Community Expert - Dreamweaver/ColdFusion
    Fordwebs, LLC
    http://www.fordwebs.com
    "Peter AZ" <[email protected]> wrote in
    message news:g5qb7n$n30$[email protected]..
    > Using CS 3.3/DW. Behavior is the same on two different
    machines. One is Vista
    > Home Premium SP1 IIS 7 with 6 compatability, other is XP
    SP 3 IIS 5.1, both
    > have IE 7 and full SQL 2005 with SP's.
    >
    > Haven't gotten very far away from static page yet,
    because I can't test. Have
    > scoured forums and even talked to Adobe who recreated
    the problem then told me
    > that they hadn't done sufficient testing to SQL 2005
    prior to release, were
    > supposed to call me back, did once, supposed to call
    back again and haven't (3
    > days). So I'm turning to the community for help, please.
    >
    > Set up test server in folder 'TServer' under
    C:\inetpub\wwwroot. Built a
    > 'Hello World' ASP/VB Script page with no data attached,
    tests fine, puts in the
    > appropriate folder and says "Hello World" in browser
    like a good little box
    > should! Have built many DSN's, they tested during the
    building fine, I've tried
    > various versions of ODBC and OLE DB, including but not
    limited to Native SQL
    > Client, which is my preference and have been quite
    successful setting up the
    > DSN's...they add to the ASP page/Site (it's greyed out
    unless you have an open
    > ASP page) fine. Test at that point works fine. As soon
    as I bind a Recordset
    > (whether I have dropped data on the page or not...same
    'Hello World' page with
    > Recordset info near the top of the code) and test, I
    error out.
    >
    > Any thoughts? I'm sure you'll need more info...I've
    tried to put as much as I
    > can for starters. Thanks in advance.
    >
    > Peter
    >
    >

  • Please help with on going KP issue.

    Hello to everyone and thanks in advance for any assistance and advice.
    I bought my 2011 i5 IMAC last year. After about 6 months it wouldn't work, apple said the RAM had gone bad and over nighted me 2 new sticks. Problem solved. Till about 3 weeks ago (6 mo after apple sent the new memory). Same thing happened, this time i just ordered some from Amazon (corsair) and the problem was solved. Till Monday. Not sure whats going on now. Same thing only this time new memory didn't help.
    I've disconnected all external sources, flashed the PRAM, and I guess did a recovery install because now it says installing OS X. Luckily everything is backed up on an external through time machine.
    Below are some of the logs
    Tue Sep 11 16:41:06 2012
    Machine-check capabilities (cpu 0) 0x0000000000000c09:
    family: 6 model: 42 stepping: 7 microcode: 26
    Intel(R) Core(TM) i5-2400S CPU @ 2.50GHz
    9 error-reporting banks
    threshold-based error status present
    extended corrected memory error handling present
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x0000000000000000 invalid
    IA32_MC1_STATUS(0x405): 0x0980000000000000 invalid
    IA32_MC2_STATUS(0x409): 0x0000000000000000 invalid
    IA32_MC3_STATUS(0x40d): 0x0000000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000000 invalid
    IA32_MC5_STATUS(0x415): 0x0020000000000000 invalid
    IA32_MC6_STATUS(0x419): 0xbe2000000001117a valid
    MCA error code: 0x117a
    Model specific error code: 0x0001
    Other information: 0x00000000
    Threshold-based status: Undefined
    Status bits:
    Processor context corrupt
    ADDR register valid
    MISC register valid
    Error enabled
    Uncorrected error
    IA32_MC6_ADDR(0x41a): 0x0000000112bd3300
    IA32_MC6_MISC(0x41b): 0x000004936e028086
    IA32_MC7_STATUS(0x41d): 0x0020000000000000 invalid
    Package 0 logged:
    IA32_MC8_STATUS(0x421): 0x0020000000000000 invalid
    panic(cpu 1 caller 0xffffff80002c4d65): "Machine Check at 0xffffff7f81c4d436, registersn" "CR0: 0x000000008001003b, CR2: 0x00000007faef68e8, CR3: 0x000000001df7e058, CR4: 0x00000000000606e0\n" "RAX: 0x0000000000000020, RBX: 0x0000000000000000, RCX: 0x0000000000000001, RDX: 0x0000000000000000\n" "RSP: 0xffffff80efe63850, RBP: 0xffffff80efe63880, RSI: 0x0000000000000006, RDI: 0xffffff801213e800\n" "R8: 0xffffff8011d8c800, R9: 0x0000000000000000, R10: 0x800000001df7e058, R11: 0xffffff80002da800\n" "R12: 0x00000000000007b0, R13: 0xffffff8011e56340, R14: 0xffffff8011d8c800, R15: 0x0000000000000006\n" "RFL: 0x0000000000000046, RIP: 0xffffff7f81c4d436, CS: 0x0000000000000008, SS: 0x0000000000000010\n" "Error code: 0x0000000000000000\n"@/SourceCache/xnu/xnu-1699.26.8/osfmk/i386/trap_native.c:2 78
    Backtrace (CPU 1), Frame : Return Address
    0xffffff80e86e0ec0 : 0xffffff8000220792
    0xffffff80e86e0f40 : 0xffffff80002c4d65
    0xffffff80e86e10a0 : 0xffffff80002daa9f
    0xffffff80efe63880 : 0xffffff7f81c3c2a5
    0xffffff80efe63950 : 0xffffff7f81c3dd9c
    0xffffff80efe63a00 : 0xffffff80002c63b2
    0xffffff80efe63a20 : 0xffffff800022d375
    0xffffff80efe63a60 : 0xffffff800022e060
    0xffffff80efe63ac0 : 0xffffff800022f413
    0xffffff80efe63b20 : 0xffffff800021e612
    0xffffff80efe63b40 : 0xffffff800032af02
    0xffffff80efe63ba0 : 0xffffff80005a9a27
    0xffffff80efe63c30 : 0xffffff8000265695
    0xffffff80efe63c80 : 0xffffff8000265213
    0xffffff80efe63cc0 : 0xffffff800026a64f
    0xffffff80efe63dc0 : 0xffffff800026cdd4
    0xffffff80efe63f40 : 0xffffff80002c3fbb
    0xffffff80efe63fb0 : 0xffffff80002d9ff1
    Kernel Extensions in backtrace:
    com.apple.driver.AppleIntelCPUPowerManagement(193. 0)[654D2ABC-8783-3A8C-ADAC-5B56A63ECDF4]@0xffffff7f81c3a000->0xffffff7f81c61fff
    BSD process name corresponding to current thread: mdworker
    Mac OS version:
    11E53
    Kernel version:
    Darwin Kernel Version 11.4.0: Mon Apr 9 19:32:15 PDT 2012; root:xnu-1699.26.8~1/RELEASE_X86_64
    Kernel UUID: A8ED611D-FB0F-3729-8392-E7A32C5E7D74
    System model name: iMac12,1 (Mac-942B5BF58194151B)
    System uptime in nanoseconds: 85128423582
    last loaded kext at 61311213464: com.apple.driver.AppleBluetoothHIDKeyboard     160.7 (addr 0xffffff7f81c80000, size 20480)
    loaded kexts:
    com.apple.filesystems.msdosfs     1.7.1
    com.apple.driver.AppleHWSensor     1.9.5d0
    com.apple.driver.AppleBluetoothMultitouch     70.12
    com.apple.filesyst
    Tue Sep 11 16:56:07 2012
    Machine-check capabilities (cpu 2) 0x0000000000000c09:
    family: 6 model: 42 stepping: 7 microcode: 26
    Intel(R) Core(TM) i5-2400S CPU @ 2.50GHz
    9 error-reporting banks
    threshold-based error status present
    extended corrected memory error handling present
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x0000000000000000 invalid
    IA32_MC1_STATUS(0x405): 0x0980000000000000 invalid
    IA32_MC2_STATUS(0x409): 0x0000000000000000 invalid
    IA32_MC3_STATUS(0x40d): 0x0000000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000000 invalid
    IA32_MC5_STATUS(0x415): 0x0020000000000000 invalid
    IA32_MC6_STATUS(0x419): 0xbe2000000001117a valid
    MCA error code: 0x117a
    Model specific error code: 0x0001
    Other information: 0x00000000
    Threshold-based status: Undefined
    Status bits:
    Processor context corrupt
    ADDR register valid
    MISC register valid
    Error enabled
    Uncorrected error
    IA32_MC6_ADDR(0x41a): 0x00000000749b3100
    IA32_MC6_MISC(0x41b): 0x000004536e028086
    IA32_MC7_STATUS(0x41d): 0x0020000000000000 invalid
    Package 0 logged:
    IA32_MC8_STATUS(0x421): 0x0020000000000000 invalid
    panic(cpu 0 caller 0xffffff80002c4d65): "Machine Check at 0xffffff7f81c4d436, registersn" "CR0: 0x0000000080010033, CR2: 0x000000000742b000, CR3: 0x0000000017b2f056, CR4: 0x00000000000606e0\n" "RAX: 0x0000000000000001, RBX: 0x0000000000000000, RCX: 0x0000000000000001, RDX: 0x0000000000000000\n" "RSP: 0xffffff810d9ebbc0, RBP: 0xffffff810d9ebbf0, RSI: 0x0000000000000006, RDI: 0xffffff801213d400\n" "R8: 0xffffff8011d8b800, R9: 0xffffff801435c9c0, R10: 0xffffff810d9ebed8, R11: 0x0000000000000001\n" "R12: 0x0000000000000148, R13: 0xffffff8011e552c0, R14: 0xffffff8011d8b800, R15: 0x0000000000000001\n" "RFL: 0x0000000000000046, RIP: 0xffffff7f81c4d436, CS: 0x0000000000000008, SS: 0x0000000000000010\n" "Error code: 0x0000000000000000\n"@/SourceCache/xnu/xnu-1699.26.8/osfmk/i386/trap_native.c:2 78
    Backtrace (CPU 0), Frame : Return Address
    0xffffff800081bd20 : 0xffffff8000220792
    0xffffff800081bda0 : 0xffffff80002c4d65
    0xffffff800081bf00 : 0xffffff80002daa9f
    0xffffff810d9ebbf0 : 0xffffff7f81c3c2a5
    0xffffff810d9ebcc0 : 0xffffff7f81c3dd9c
    0xffffff810d9ebd70 : 0xffffff80002c63b2
    0xffffff810d9ebd90 : 0xffffff800022d375
    0xffffff810d9ebdd0 : 0xffffff800022e060
    0xffffff810d9ebe30 : 0xffffff800022f413
    0xffffff810d9ebe90 : 0xffffff800021587f
    0xffffff810d9ebeb0 : 0xffffff800021bcda
    0xffffff810d9ebf10 : 0xffffff80002af150
    0xffffff810d9ebfb0 : 0xffffff80002da6ce
    Kernel Extensions in backtrace:
    com.apple.driver.AppleIntelCPUPowerManagement(193. 0)[654D2ABC-8783-3A8C-ADAC-5B56A63ECDF4]@0xffffff7f81c3a000->0xffffff7f81c61fff
    BSD process name corresponding to current thread: Google Chrome He
    Mac OS version:
    11E53
    Kernel version:
    Darwin Kernel Version 11.4.0: Mon Apr 9 19:32:15 PDT 2012; root:xnu-1699.26.8~1/RELEASE_X86_64
    Kernel UUID: A8ED611D-FB0F-3729-8392-E7A32C5E7D74
    System model name: iMac12,1 (Mac-942B5BF58194151B)
    System uptime in nanoseconds: 244553624109
    last loaded kext at 22408368125: com.apple.driver.AppleBluetoothHIDKeyboard     160.7 (addr 0xffffff7f81c80000, size 20480)
    last unloaded kext at 144820124811: com.apple.driver.AppleUSBUHCI     4.4.5 (addr 0xffffff7f80a45000, size 65536)
    loaded kexts:
    com.apple.driver.AppleHWSensor     1.9.5d0
    com.apple.filesystems.autofs     3.0
    com.apple.driver.AppleBluetoothMultitouch     70.12
    com.apple.driver.AppleMikeyHIDDriver     122
    com.apple.driver.AudioAUUC     1.59
    com.apple.driver.AppleUpstreamUserClient     3.5.9
    com.apple.driver.AppleMCCSControl     1.0.26
    com.apple.driver.AppleHDA     2.2.0f3
    com.apple.driver.AppleMikeyDriver     2.2.0f3
    com.apple.driver.AGPM     100.12.42
    com.apple.kext.ATIFramebuffer     7.1.8
    com.apple.driver.AppleSMCPDRC     5.0.0d0
    com.apple.iokit.IOUserEthernet     1.0.0d1
    com.apple.driver.AppleSMCLMU     2.0.1d2
    com.apple.iokit.IOBluetoothSerialManager     4.0.5f11
    com.apple.Dont_Steal_Mac_OS_X     7.0.0
    com.apple.driver.AudioIPCDriver     1.2.2
    com.apple.driver.ACPI_SMC_PlatformPlugin     5.0.0d0
    com.apple.driver.AppleLPC     1.5.8
    com.apple.driver.AppleBacklight     170.1.9
    com.apple.ATIRadeonX3000     7.1.8
    com.apple.driver.AppleIntelHD3000Graphics     7.1.8
    com.apple.driver.BroadcomUSBBluetoothHCIController     4.0.5f11
    com.apple.driver.AppleIRController     312
    com.apple.iokit.IOAHCISerialATAPI     2.0.3
    com.apple.iokit.SCSITaskUserClient     3.2.0
    com.apple.driver.AppleUSBCardReader     3.0.1
    com.apple.driver.XsanFilter     404
    com.apple.iokit.IOAHCIBlockStorage     2.0.3
    com.apple.AppleFSCompression.AppleFSCompressionTyp eDataless     1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTyp eZlib     1.0.0d1
    com.apple.BootCache     33
    com.apple.driver.AppleUSBHub     4.5.0
    com.apple.driver.AirPort.Atheros40     504.64.2
    com.apple.iokit.AppleBCM5701Ethernet     3.1.2b2
    com.apple.driver.AppleEFINVRAM     1.5.0
    com.apple.driver.AppleFWOHCI     4.8.9
    com.apple.driver.AppleAHCIPort     2.3.0
    com.apple.driver.AppleUSBEHCI     4.5.8
    com.apple.driver.AppleACPIButtons     1.5
    com.apple.driver.AppleRTC     1.5
    com.apple.driver.AppleHPET     1.6
    com.apple.driver.AppleSMBIOS     1.8
    com.apple.driver.AppleACPIEC     1.5
    com.apple.driver.AppleIntelCPUPowerManagementClien t     193.0.0
    com.apple.driver.AppleAPIC     1.5
    com.apple.nke.applicationfirewall     3.2.30
    com.apple.security.quarantine     1.3
    com.apple.driver.AppleIntelCPUPowerManagement     193.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard     160.7
    com.apple.driver.AppleHIDKeyboard     160.7
    com.apple.kext.triggers     1.0
    com.apple.driver.AppleMultitouchDriver     231.4
    com.apple.driver.IOBluetoothHIDDriver     4.0.5f11
    com.apple.driver.DspFuncLib     2.2.0f3
    com.apple.driver.AppleSMBusController     1.0.10d0
    com.apple.iokit.IOSurface     80.0.2
    com.apple.iokit.IOFireWireIP     2.2.4
    com.apple.iokit.IOSerialFamily     10.0.5
    com.apple.driver.AppleHDAController     2.2.0f3
    com.apple.iokit.IOHDAFamily     2.2.0f3
    com.apple.iokit.IOAudioFamily     1.8.6fc17
    com.apple.kext.OSvKernDSPLib     1.3
    com.apple.driver.ApplePolicyControl     3.0.16
    com.apple.driver.AppleSMC     3.1.3d8
    com.apple.driver.IOPlatformPluginLegacy     5.0.0d0
    com.apple.driver.AppleSMBusPCI     1.0.10d0
    com.apple.driver.AppleGraphicsControl     3.0.16
    com.apple.driver.IOPlatformPluginFamily     5.1.0d17
    com.apple.driver.AppleBacklightExpert     1.0.3
    com.apple.driver.AppleThunderboltEDMSink     1.1.8
    com.apple.driver.AppleThunderboltEDMSource     1.1.8
    com.apple.kext.ATI6000Controller     7.1.8
    com.apple.kext.ATISupport     7.1.8
    com.apple.iokit.IONDRVSupport     2.3.2
    com.apple.driver.AppleIntelSNBGraphicsFB     7.1.8
    com.apple.iokit.IOGraphicsFamily     2.3.2
    com.apple.driver.AppleUSBBluetoothHCIController     4.0.5f11
    com.apple.iokit.IOBluetoothFamily     4.0.5f11
    com.apple.driver.AppleThunderboltDPOutAdapter     1.8.2
    com.apple.driver.AppleThunderboltDPInAdapter     1.8.2
    com.apple.driver.AppleThunderboltDPAdapterFamily     1.8.2
    com.apple.driver.AppleThunderboltPCIDownAdapter     1.2.4
    com.apple.iokit.IOSCSIMultimediaCommandsDevice     3.2.0
    com.apple.iokit.IOBDStorageFamily     1.6
    com.apple.iokit.IODVDStorageFamily     1.7
    com.apple.iokit.IOCDStorageFamily     1.7
    com.apple.iokit.IOUSBHIDDriver     4.4.5
    com.apple.iokit.IOSCSIBlockCommandsDevice     3.2.0
    com.apple.iokit.IOUSBMassStorageClass     3.0.1
    com.apple.iokit.IOSCSIArchitectureModelFamily     3.2.0
    com.apple.driver.AppleUSBMergeNub     4.5.3
    com.apple.driver.AppleUSBComposite     4.5.8
    com.apple.driver.AppleThunderboltNHI     1.5.5
    com.apple.iokit.IOThunderboltFamily     2.0.0
    com.apple.iokit.IOUSBUserClient     4.5.8
    com.apple.iokit.IO80211Family     420.3
    com.apple.iokit.IOEthernetAVBController     1.0.1b1
    com.apple.iokit.IONetworkingFamily     2.1
    com.apple.iokit.IOFireWireFamily     4.4.5
    com.apple.iokit.IOAHCIFamily     2.0.8
    com.apple.iokit.IOUSBFamily     4.5.8
    com.apple.driver.AppleEFIRuntime     1.5.0
    com.apple.iokit.IOHIDFamily     1.7.1
    com.apple.iokit.IOSMBusFamily     1.1
    com.apple.security.sandbox     177.5
    com.apple.kext.AppleMatch     1.0.0d1
    com.apple.security.TMSafetyNet     7
    com.apple.driver.DiskImages     331.6
    com.apple.iokit.IOStorageFamily     1.7.1
    com.apple.driver.AppleKeyStore     28.18
    com.apple.driver.AppleACPIPlatform     1.5
    com.apple.iokit.IOPCIFamily     2.6.8
    com.apple.iokit.IOACPIFamily     1.4
    Process: WindowServer [106]
    Path: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/WindowServer
    Identifier: WindowServer
    Version: ??? (???)
    Code Type: X86-64 (Native)
    Parent Process: launchd [1]
    Date/Time: 2012-09-11 17:16:00.174 -0700
    OS Version: Mac OS X 10.7.4 (11E53)
    Report Version: 9
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00007fff5508a621
    VM Regions Near 0x7fff5508a621:
    MALLOC_SMALL 00007f86cc800000-00007f86cd000000 [ 8192K] rw-/rwx SM=PRV
    -->
    STACK GUARD 00007fff61bd4000-00007fff653d4000 [ 56.0M] ---/rwx SM=NUL stack guard for thread 0
    Application Specific Information:
    objc[106]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 com.apple.CoreGraphics 0x00007fff8b4671d8 _CGXRedrawWindow + 14075
    1 com.apple.CoreGraphics 0x00007fff8b43377b CGXUpdateDisplay + 6311
    2 com.apple.CoreGraphics 0x00007fff8b42aeed _CGXRunTimerPass + 439
    3 com.apple.CoreGraphics 0x00007fff8b43d8e9 CGXRunOneServicesPass + 161
    4 com.apple.CoreGraphics 0x00007fff8b44727f CGXServerLoop + 165
    5 com.apple.CoreGraphics 0x00007fff8b993142 CGXServer + 1069
    6 WindowServer 0x0000000105fd4f31 main + 9
    7 WindowServer 0x0000000105fd4f20 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0 libsystem_kernel.dylib 0x00007fff945367e6 kevent + 10
    1 libdispatch.dylib 0x00007fff8e54278a _dispatch_mgr_invoke + 923
    2 libdispatch.dylib 0x00007fff8e54131a _dispatch_mgr_thread + 54
    Thread 2:
    0 libsystem_kernel.dylib 0x00007fff9453467a mach_msg_trap + 10
    1 libsystem_kernel.dylib 0x00007fff94533d71 mach_msg + 73
    2 com.apple.CoreFoundation 0x00007fff92f8950c __CFRunLoopServiceMachPort + 188
    3 com.apple.CoreFoundation 0x00007fff92f91c74 __CFRunLoopRun + 1204
    4 com.apple.CoreFoundation 0x00007fff92f91486 CFRunLoopRunSpecific + 230
    5 com.apple.CoreFoundation 0x00007fff92fa119f CFRunLoopRun + 95
    6 com.apple.CoreGraphics 0x00007fff8b42722d eventThread + 410
    7 libsystem_c.dylib 0x00007fff8a4328bf _pthread_start + 335
    8 libsystem_c.dylib 0x00007fff8a435b75 thread_start + 13
    Thread 3:: CoreAnimation render server
    0 libsystem_kernel.dylib 0x00007fff9453467a mach_msg_trap + 10
    1 libsystem_kernel.dylib 0x00007fff94533d71 mach_msg + 73
    2 com.apple.QuartzCore 0x00007fff88caa2d9 CA::Render::Serv

    Your first two kernel panic reports look very similar to Mac Pro kernel panics cause by uncorrected Memory errors.
    The problem with that idea is that iMac processors do not support Error-Correcting Code (ECC) memory, and do not have the Error-correcting Hardware in the processor to generate this fault -- IF operating correctly.
    I fear you have a very obscure fault in the processor chip, and that is causing an error that should never occur.
    I hope you bought Applecare after your first memory replacement. In my opinion, you may need a new mainboard.
    NB: I do not speak for Apple Computer, Inc.

Maybe you are looking for

  • Error when starting DTR Console on NWDI 7.31

    Hi Guys When starting DTR console from command line on a Windows 2008 OS, im getting the following error S:\usr\sap\NDI\SYS\global\com.sap.dtr.console>run S:\usr\sap\NDI\SYS\global\com.sap.dtr.console>java -Dhttp.readtimeout=0 -cp S:\usr\sap\NDI\SYS\

  • My ipod no longer shows up properly?

    My ipod used to appear as Luke's Ipod, now not only does it not show up at all in itunes, it appears only as Apple Ipod anywhere else. I've reset my ipod and itunes, re-installed itunes, restarted the mobile device serivce, emptied the Temp folder, t

  • Oracle 8i Lite v4.0.0.1.0 and Developer v6.0

    In the documentation for Oracle 8i Lite it mentions that it works with Developer 2.1. But does it work with Developer 6.0? null

  • AIX upgrade 5.3 to 6.1 EHP5

    Hello All, In our environment we are planning to upgrade AIX 5.3 to 6.1. Currently we have Oracle 10.2 SAP ECC 6.0 EHP5. Would like to know can we do inplace OS upgrade. I mean on same hardware where current sap is running. OR do i need to do system

  • IPad 1 version

    Why can't I install photoshop touch on my iPad 1?I was crazy about this app as I have creative cloud so I could edit photos on the go from creative cloud but apparently you need a camera. Please, Adobe. Give us an iPad 1 version.