Build Second Plot for XY Graph

Hi guys,
At the moment I am plotting some calculated XY values (viscosity of oil against temperature) in the initialisation stage of a program, as the program runs I am collecting measured viscosity and temperature and would like to plot a second 'measured' trace on the XY graph.
I've tried a few things with bundling multiple arrays although I'm not sure how to make this work without calculating all the viscosity values on each iteration.  Here is my code so far;
In the 'real' application the Temperature and Viscosity come from FPGA Reads.
Any and all help appreciated   I'm thinking initialise the cluster with 4 elements and build from that.. although initialising it with 0,0 isn't correct (at 0 temp, viscosity will be over 6000 cSt)..
Thanks,
Pete
Regards,
Peter D

You need to initialize the shift register with an array, not a single cluster. An array of clusters of X/Y values is what is used for multiple plots. Having context help on and hovering over the indicator shows you how to create multiple plots for an XY graph. There is also an example that ships with LabVIEW that shows this. Within the loop you'd be replacing/adding the new X/Y points.
The real question comes into whether the plot is more of a chart or a graph. In other words, do you have a fixed number of points to plot, or do you need to keep plotting as you collect data? Also, are you trying to actually trying to plot viscosity vs temperature, or is temperature a separate plot, and everything is plotted vs time? If you're doing viscosity vs temperature, then you could make use the XY Chart example that ships with LabVIEW. That uses a subVI that acts as a buffer for the data points.

Similar Messages

  • Express xy graph second plot

    Hi , Im trying to get a second plot on the express XY graph.
    I've tried some of the suggestions like building the x array twice ( concatanating ?) but this does not seem to work for me.
    Is there a tutorial on multiple plotting with this beast anywhere?
    I've enclosed a simple vi . Help please!!!!
    dht
    Attachments:
    StraightLine Stats.vi ‏134 KB

    Use the merge signals VI, note that you have to have an equal number of signals for X and Y. I've attached a short example.
    Regards,
    Ryan K.
    Attachments:
    Multi Plot XY Graph.vi ‏89 KB

  • How to build query to give daily balance across bank accounts? (to then plot in a graph)

    How would one build a query to give daily balance across bank accounts? (to then plot in a graph)
    Assumptions:
    * There is a table TRANSACTIONS which includes columns TRANS_DATE, AMOUNT and BANK_ID. It does NOT include a column for balance. So current balance for a bank account is the sum of the AMOUNTs for that BANK_ID for example. Balance on date XX will be the sum
    of all AMOUNTS for that BANK_ID for all TRANS_DATE's prior and including the date XX.
    * There is not necessarily transactions on every day for each bank
    * Table BANKS which has BANK_ID and TITLE
    Would like a query that gives: Supply StartDate and EndDate for the query:
    Date Bank1Balance Bank2Balance Bank3Balance TotalBalance
    1/1/15 $100 $200 $100 $400
    1/2/15 $200 $200 $100 $500
    etc

    You'll find examples of queries for computing balances in various contexts in Balances.zip in my public databases folder at:
    https://onedrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
    If you have difficulty opening the link copy its text (NB, not the link location) and paste it into your browser's address bar.
    The queries in this little demo file return balances per transaction, however, whereas you appear to wish to return balances at close of business per day.  This can easily be done by means of a subquery which sums all transactions to date.  To return
    balances for all dates regardless of whether or not any transactions have been undertaken on the day, an auxiliary calendar table can be introduced into the database to plug the gaps,  The Calendar.zip file in my same OneDrive folder has means of generating
    such a table.
    With the introduction of an auxiliary calendar table into the database a query can then be written to return the balance per customer at close of business per day over the period 2009 - 2012 covered by the data in the Transactions table:
    SELECT CustomerID, Firstname, LastName, calDate,
       (SELECT SUM(TransactionAmount)
         FROM Transactions
         WHERE Transactions.CustomerID = Customers.CustomerID
         AND Transactions.TransactionDate <= Calendar.calDate) AS Balance
    FROM Calendar,Customers
    WHERE calDate BETWEEN #2009-01-01# AND #2012-12-31#
    ORDER BY CustomerID, CalDate;
    Rows for each customer/date are returned by means of the Cartesian product of the Calendar and Customers tables (the latter analogous to your Banks table), and the subquery returns the balance at close of each day by correlating the Transactions table with
    the Customers and Calendar tables, returning the sum of all transactions per customer up to and including the date in question.  In this example credit and debit transactions are expressed as positive and negative values in a single column of course,
    but where separate credit and debit columns are used its merely a case of summing (Credit-Debit), as done in some of the examples in my demo.
    To return the data in a horizontal format per date I'd suggest the use of a report which returns one row per date, and within it a multi-column subreport in across-then down column layout, linking the subreport to the parent report on the date columns.
    Ken Sheridan, Stafford, England

  • How to let the user define the colors for each plots in the graph (I use LabVIEW 7)?

    How to let the user define the colors for each plots in the graph (I
    use LabVIEW 7)?

    Hi,
    Take a look at this example, it uses property nodes to select tha
    active plot and then changes the color of that plot.
    If you want to make the number of plots dynamic you could use a for
    loop and an array of color boxes.
    I hope this helps.
    Regards,
    Juan Carlos
    N.I.
    Attachments:
    Changing_plot_color.vi ‏38 KB

  • Can I add a second plot to an XY graph without having to re-draw the first?

    Hi,
    I'm trying to figure out a way to add a second plot (a linear fit between 2 cursors) to an XY graph without having to redraw the first plot (the underlying data). The reason this is important is that the first plot is typically hundreds of thousands of data points (or more), and it is slow to redraw. I would like the user to be able to move cursors around and dynamically do a linear fit to the underlying data in the range between the two cursors, with the line being drawn as the second plot.
    My current program just wires both plots to the graph and re-draws both. This ends up being quite slow.
    Ken

    Here's a quick draft how you could draw the regression line (LabVIEW 8.2). Modify as needed.
    Message Edited by altenbach on 10-28-2007 12:51 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    DrawRegression.png ‏28 KB
    PlotLine.vi ‏46 KB

  • How to Generate Event on change in Plot Legend for XY Graph

    Hi,
    I have two XY graphs on the front panel and would like to maintain a common plot legend such that any change in the plot legend affects both graphs.
    Objective: I would like any value change in plot legend to fire an event.
    How do I program that?
    I know of value change event for the graph but am unable to find something specific to the plot legend. Other option is to have the user press a "refresh" button that will fire the event.
    Feel free to share thoughts on other elegant methods to achieve the same objective.
    Thanks,
    Gurdas
    Gurdas Singh
    PhD. Candidate | Civil Engineering | NCSU.edu

    Hi Sarah,
    Looks like you are talking of exactly what I want!
    I have attached a sample VI to try achieve what I want. But it still has some issues which are:
    1) I am unable to configure a Plot Attribute Change Event. I have used a mouse leave event instead. How does one configure a Plot Attribute Change Event?
    2) Is there no single property which will transfer all the settings of plot legend from one graph to plot legend of another graph? In my sample VI, I have to read each property of the master graph and feed it into the slave graph.
    Kindly note I am using LV FDS 7.1 on Win2000
    Thanks,
    Gurdas
    Message Edited by Gurdas on 03-27-2006 11:51 PM
    Gurdas Singh
    PhD. Candidate | Civil Engineering | NCSU.edu
    Attachments:
    Graph_PlotLegend_Event.vi ‏45 KB

  • Building Applicatio​n for SCXI 1530, App will not call 1530 properly

    Hello,
    I'm working on building an application for a SCXI 1530. I have a scxi 1000 module with a scxi 1600-usb card. In slot 2 is the 1530 for accelerometers and in slot 4 is a card for lvdts (1540).
    I'm using labview developer suite 8.2.1 on a desktop to develop an application for a laptop. Right now I have created 2 very simple beta programs. One calls the 1540 for accelerometers and it works properly. Ready 1000 hz for 4 seconds. The other application with the accelerometer is the one I'm having trouble with.
    Here is what I know:
        Both applications were developed using DAQmx to setup the data acquisition event.
        Both applications work properly on the desktop, when run as a vi, and as a compiled application.
        The LVDT application runs properly on the laptop.
        The accelerometer application does not run on the laptop.
        The Measurement and Automation software shows that the 1530 (accelerometer card) is properly configured and that it is named identical to the desktop.
        The measurement and automation software will collect what looks to be reasonable acceleration data when configured to do so with a finite data collection of 1000 Hz.
    Any Help would be greatly appreciated.
    Paul

    Kent,
    Here are some answers to your questions and a followup on my current status.
    First let me describe my program a bit. Basically within a while loop there is a case loop controlled by a 'run' button. When that 'run' button is pushed the program is to collect data. On the desktop it works perfectly collecting real data. On the laptop the first time the run button is pushed after starting the application nothing happens. None of the graphs or indicators change their apperance or value. If I push the run button again, the graphs change to an x-axis range of -1 to 1, and maximum value indicators range from -10 to -45 (that seems to be pretty random). One more thing the program is set to record 4 seconds of data at 4kHz. All this time there are no errors and the program continues to run.
    One of the first things I checked was to validate the name being the same, and those are identical. The next thing I checked was to make sure that the 1530 was working properly using the NIDAQmx test panels in measurement and automation. Everything there seemd to work fine and appeard to be recording reasonable data.
    Late last night I decided that I'd reinstall drivers on the laptop. Thinking 'what could it hurt?' After reinstalling the drivers the application works on the laptop. So I suppose the lesson I learned was even though the MEasurement and Automation test panels work when in doubt re-install drivers.
    As of now everything appears to be working properly.

  • Add plot to a graph

    Hi everybody,
    I first a plot on a waveform graph. I want then to add on the same graph a second plot (in my case an exponential who gives the enveloppe of my signal) as you can see in the image attached.
    I cannot draw the first plot and then the second plot. The second plot erase the first one. I also try with active plot property but it doesn't seems to work.
    I also attached a test VI
    Can anyone help me?
    thanks in advance
    Message Edited by valais on 05-20-2008 07:02 AM
    Attachments:
    image2.JPG ‏19 KB
    AddCurveGraph.vi ‏36 KB

    Thanks for your answer Mike,
    In fact I don't want to write both channels at the same time. Because in my case, the first plot is a measurement, and I want to draw the enveloppe after. The enveloppe is in an another case event. So the event are separeted.
    I try to use active plot like that, but the result is only the second plot. I don't have anymore the first plot.
    Any idea?
    Message Edited by valais on 05-20-2008 07:21 AM
    Attachments:
    AddCurveGraph.vi ‏38 KB
    image2.JPG ‏5 KB

  • Using a second blog for a testimonials page

    Hi,
    I'm building a site for someone who will be purchasing the webMarketing hosting plan so I won't have access to any webApps. To get around this problem, I've created a second blog to be used to manage testimonials. I've created a page and have inserted the following module tag:
            {module_blogpostlist,12775,3 template="/ModuleTemplates/Testimonials/testimonials-list-alt.tpl"}
    The above references the testimonials blog with an ID of 12775 and it points to a custom list layout. When I test though by loading the html page, it shows the default list layout used for blogs under Module Templates and not my custom one.
    I just wondered if anyone could tell me if it's actually possible to use an alternate list and detail layout for a second blog?
    Thanks in advance.

    Hi,
    I've implemented this and a little video gallery as well using the blogs. Just make sure you are referencing the correct template file and that it's extension is .tpl and not html. You can see a live example here. Testimonials
    Here is a copy of the code I used with pagination as well. You will need this to get the pagination working.
    jPages
            <script>
      /* when document is ready */
      $(function() {
        /* initiate plugin */
        $("div.holder").jPages({
          containerID: "itemContainer",
       perPage: 4
      </script>
    HTML
    <div class="holder">
            </div>
            <ul id="itemContainer">
                {module_blogpostlist,12460,100 template="/ModuleTemplates/WebApps/Testimonials/testimonials-test.tpl"}
            </ul>
            <hr />
            <div class="holder">
    Hope this helps

  • Error while installing flash builder 4.5 for php

    Hello to all.
    Im having a problem while trying to install the flash builder 4.5 for php.... it keeps saying that i have the zend installed in my computer! but i have not... i just have buyed this computer... and it keeps saying that i have the zend installed....
    can someone please help me? I just wanna use this freaking tool!!! =D
    Here is my LOG of installation:
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 4.0.50.0
    Win OS version: 6.1.0.0 64 bit Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    Supported RIBS version range: [0.0.66.0,4.0.50.0]
    ----------------- CreatePayloadSession: machine is x64 ---------------
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0: 1 (0,1)
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0: 1 (0,1)
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0: 1 (0,1)
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0: 2 (3,1)
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0: 3 (0,1)
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0: 3 (0,1)
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0: 3 (0,1)
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0: 3 (0,1)
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0: 3 (0,1)
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0: 3 (0,1)
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0: 4 (0,0)
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0: 4 (0,0)
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0: 5 (7,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Setting property "INSTALLDIR" to: C:\Program Files (x86)\FLASHBUILDER
    Setting property "driverAdobeCode" to: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Setting property "mediaSignature" to: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Found payload actions:
    Deciding what installer mode to use...
    {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 not installed
    {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0 not installed
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is: false
    [    4888] Mon Jun 20 08:30:05 2011  WARN
    DW039: Payload {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is not installed so should not be there in the deployment file
    [    4888] Mon Jun 20 08:30:05 2011  INFO
    Value returned on lookup of payload: {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0 is: true
    Action string for {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0  is remove
    Selection of payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0 is forbidden by the policy. Reason: Free payload
    Value returned on lookup of payload: {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0 is: false
    Action string for {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0  is none
    Value returned on lookup of payload: {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 is: true
    Action string for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0  is none
    Value returned on lookup of payload: {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0 is: true
    Action string for {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0  is none
    Value returned on lookup of payload: {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 is: true
    Action string for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0  is none
    Value returned on lookup of payload: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0 is: true
    Action string for {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0  is none
    Value returned on lookup of payload: {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0 is: true
    Action string for {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0  is none
    Value returned on lookup of payload: {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0 is: true
    Action string for {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0  is none
    Value returned on lookup of payload: {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0 is: true
    Action string for {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0  is none
    Value returned on lookup of payload: {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0 is: true
    Action string for {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0  is none
    Value returned on lookup of payload: {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0 is: true
    Action string for {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0  is none
    Value returned on lookup of payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0 is: true
    Action string for {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0  is none
    END Setting requested payload actions
    INSTALLDIR passed path basic path validation: C:\Program Files (x86)\FLASHBUILDER
    [    4888] Mon Jun 20 08:30:06 2011  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0:  with operation none
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0:  with operation none
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0:  with operation none
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0:  with operation none
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0:  with operation remove
      {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0:  with operation remove
      {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0:  with operation remove
      {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0:  with operation remove
      {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0:  with operation remove
      {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0:  with operation remove
      {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0:  with operation remove
      {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0:  with operation remove
      {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0:  with operation remove
      {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0:  with operation remove
      {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0:  with operation remove
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-remove for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    ::START TIMER:: [Payload Operation :{1B4483F2-849C-4AC3-99B1-473FFC0192DD}]
    [    3776] Mon Jun 20 08:30:06 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Effective AdobeCode for: {1B4483F2-849C-4AC3-99B1-473FFC0192DD} is {1B4483F2-849C-4AC3-99B1-473FFC0192DD}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{1B4483F2-849C-4AC3-99B1-473FFC0192DD}.db
    [    3776] Mon Jun 20 08:30:07 2011  INFO
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{1B4483F2-849C-4AC3-99B1-473FFC0192DD}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:07 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{1B4483F2-849C-4AC3-99B1-473FFC0192DD}] took 1004.34 milliseconds (1.00434 seconds) DTR = 2732.15 KBPS (2.66812 MBPS)
    Updating driver data - Action: Add driver entry
    Updating driver data successful. Driver entry was added. ARP estimated size 0KB
    User specified overrideFile:
    The csu inventory was not updated for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {1B4483F2-849C-4AC3-99B1-473FFC0192DD} Adobe Flash Builder 4.5.0.0
    Calling the custom action code for pre-remove for payload {6F3A624B-1B72-4081-96E8-23261F389C5C}
    ::START TIMER:: [Payload Operation :{6F3A624B-1B72-4081-96E8-23261F389C5C}]
    [    6088] Mon Jun 20 08:30:07 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Effective AdobeCode for: {6F3A624B-1B72-4081-96E8-23261F389C5C} is {6F3A624B-1B72-4081-96E8-23261F389C5C}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{6F3A624B-1B72-4081-96E8-23261F389C5C}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{6F3A624B-1B72-4081-96E8-23261F389C5C}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:08 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{6F3A624B-1B72-4081-96E8-23261F389C5C}] took 1006.47 milliseconds (1.00647 seconds) DTR = 5250.03 KBPS (5.12699 MBPS)
    User specified overrideFile:
    [    4888] Mon Jun 20 08:30:09 2011  INFO
    Successfully updated the csu inventory for {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {6F3A624B-1B72-4081-96E8-23261F389C5C} AdobeTypeSupport CS5 10.0.0.0
    Calling the custom action code for pre-remove for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066}
    ::START TIMER:: [Payload Operation :{7EABC54B-02C3-4DA1-9EB4-974CE7414066}]
    [    1064] Mon Jun 20 08:30:09 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:10 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{7EABC54B-02C3-4DA1-9EB4-974CE7414066}] took 1014.44 milliseconds (1.01444 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {7EABC54B-02C3-4DA1-9EB4-974CE7414066} AdobeHelp 3.4.0.0
    Calling the custom action code for pre-remove for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    ::START TIMER:: [Payload Operation :{BD0D6363-E961-410F-8BF4-ECD8795F3923}]
    [    4696] Mon Jun 20 08:30:10 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Effective AdobeCode for: {BD0D6363-E961-410F-8BF4-ECD8795F3923} is {BD0D6363-E961-410F-8BF4-ECD8795F3923}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{BD0D6363-E961-410F-8BF4-ECD8795F3923}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{BD0D6363-E961-410F-8BF4-ECD8795F3923}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:11 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{BD0D6363-E961-410F-8BF4-ECD8795F3923}] took 1009.85 milliseconds (1.00985 seconds) DTR = 6947.54 KBPS (6.78471 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {BD0D6363-E961-410F-8BF4-ECD8795F3923} AdobeCMaps CS5 3.0.0.0
    Calling the custom action code for pre-remove for payload {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    ::START TIMER:: [Payload Operation :{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}]
    [    2788] Mon Jun 20 08:30:11 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    Effective AdobeCode for: {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} is {E5F5A323-E3CA-4710-ABBB-2C0C25516F89}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}.db
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:12 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{E5F5A323-E3CA-4710-ABBB-2C0C25516F89}] took 1019.34 milliseconds (1.01934 seconds) DTR = 18765.1 KBPS (18.3253 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {E5F5A323-E3CA-4710-ABBB-2C0C25516F89} Adobe Player for Embedding 3.2 3.2.0.0
    Calling the custom action code for pre-remove for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378}
    ::START TIMER:: [Payload Operation :{46DF1D41-88FD-448c-BAC5-6FDA31247378}]
    [    4788] Mon Jun 20 08:30:12 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:13 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{46DF1D41-88FD-448c-BAC5-6FDA31247378}] took 1006.47 milliseconds (1.00647 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {46DF1D41-88FD-448c-BAC5-6FDA31247378} Adobe Flash Player 10 Plugin 10.0.0.0
    Calling the custom action code for pre-remove for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A}
    ::START TIMER:: [Payload Operation :{551D0A52-5E4A-4898-9FFF-FEAA5E89585A}]
    [     664] Mon Jun 20 08:30:13 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:14 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{551D0A52-5E4A-4898-9FFF-FEAA5E89585A}] took 1009.34 milliseconds (1.00934 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {551D0A52-5E4A-4898-9FFF-FEAA5E89585A} Adobe Flash Player 10 ActiveX 10.0.0.0
    Calling the custom action code for pre-remove for payload {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    ::START TIMER:: [Payload Operation :{ED28819E-310F-4F17-925C-C69B0A1C1F7F}]
    [    5256] Mon Jun 20 08:30:14 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {1B4483F2-849C-4AC3-99B1-473FFC0192DD} modify request for AdobeCode: {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    Effective AdobeCode for: {ED28819E-310F-4F17-925C-C69B0A1C1F7F} is {ED28819E-310F-4F17-925C-C69B0A1C1F7F}
    Uninstalling payload
    Beginning un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{ED28819E-310F-4F17-925C-C69B0A1C1F7F}.db
    [    5256] Mon Jun 20 08:30:15 2011  INFO
    Completing un-installation for payload at C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{ED28819E-310F-4F17-925C-C69B0A1C1F7F}.db
    Physical payload uninstall result:0
    [    4888] Mon Jun 20 08:30:15 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{ED28819E-310F-4F17-925C-C69B0A1C1F7F}] took 1014.14 milliseconds (1.01414 seconds) DTR = 15709.9 KBPS (15.3417 MBPS)
    User specified overrideFile:
    [    4888] Mon Jun 20 08:30:16 2011  INFO
    Successfully updated the csu inventory for {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {ED28819E-310F-4F17-925C-C69B0A1C1F7F} Suite Shared Configuration CS5.5 2.5.0.0
    Calling the custom action code for pre-remove for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}
    ::START TIMER:: [Payload Operation :{635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}]
    [     304] Mon Jun 20 08:30:16 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:17 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A}] took 1012.73 milliseconds (1.01273 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {635FED5B-2C6D-49BE-87E6-7A6FCD22BC5A} Microsoft_VC90_MFC_x86 1.0.0.0
    Calling the custom action code for pre-remove for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC}
    ::START TIMER:: [Payload Operation :{B6D38690-755E-4F40-A35A-23F8BC2B86AC}]
    [    3496] Mon Jun 20 08:30:17 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:18 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{B6D38690-755E-4F40-A35A-23F8BC2B86AC}] took 1004.29 milliseconds (1.00429 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {B6D38690-755E-4F40-A35A-23F8BC2B86AC} Microsoft_VC90_MFCLOC_x86 1.0.0.0
    Calling the custom action code for pre-remove for payload {08D2E121-7F6A-43EB-97FD-629B44903403}
    ::START TIMER:: [Payload Operation :{08D2E121-7F6A-43EB-97FD-629B44903403}]
    [    2844] Mon Jun 20 08:30:18 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Payload doesn't support physical action or it is already installed.  Treating as success.
    Third party payload completed.  Testing return code: 0
    [    4888] Mon Jun 20 08:30:19 2011  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{08D2E121-7F6A-43EB-97FD-629B44903403}] took 1019.87 milliseconds (1.01987 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0
    No operation.  We're done:
    Updating driver data - Action: Remove driver entry
    Updating driver data successful. Driver entry was removed. ARP estimated size 0KB
    [    4888] Mon Jun 20 08:30:21 2011  INFO
    Total components installed: 0
    Total components repaired: 0
    Successfully removed 11 components:
    - Microsoft_VC90_CRT_x86
    - Adobe Flash Builder
    - Adobe Flash Player 10 Plugin
    - Adobe Flash Player 10 ActiveX
    - Microsoft_VC90_MFC_x86
    - AdobeTypeSupport CS5
    - AdobeHelp
    - Microsoft_VC90_MFCLOC_x86
    - AdobeCMaps CS5
    - Adobe Player for Embedding 3.2
    - Suite Shared Configuration CS5.5
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Restarting your computer is recommended:
    In order to complete the installation, please restart the computer
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Call PostSession Custom Hook
    :: END TIMER :: [Total Timer] took 16246.8 milliseconds (16.2468 seconds) DTR = 3085.89 KBPS (3.01357 MBPS)
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 0 error(s), 1 warning(s)
    WARNING: DW039: Payload {650C9D09-D5BD-4532-8BEE-01DBC1DF5537} Adobe Flash Builder 4.5 4.5.0.0 is not installed so should not be there in the deployment file
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    Exit Code: 0 - No error.
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

    Hi Mike,
    Could you please send the following log files so we identify the exact problem and hopefully help you quickly:
    Windows:
    1.       <path_to_adobe_fbphp>/_Flash Builder 4.5 for PHP.log
    2.       Logs located under C:\Program Files\Common Files\Adobe\Installer\
    Max OSX:
    1.       <path_to_adobe_fbphp>/_Flash Builder 4.5 for PHP.log
    2.       Logs located under /Library/Logs/Adobe/Installers/
    Thanks for sharing this,
    Roy

  • Best way to draw (not plot) on a graph?

    Hi -
    I need to alter the appearance of a graph somewhat. The user doesn't want any full grid lines, but he does want a small crosshair (like a plus sign) drawn in each of the four quadrants. The CanvasDrawLine() function would be good for this, if it worked on graph objects, but it doesn't. I guess I could use bit files, but...is there an easier/better way?
    EDIT: after reading a little more on bit maps, it's not clear to me that these will work, either. So...any other ideas at all?
    Thanks.
    Solved!
    Go to Solution.

    Going on the line of wolfgang suggestion, you could also have two graphs one on top of the other. The lower one can have all fixed elements (scales, axes, crosses and so on), while on the upper one, with transparent background, you can draw / erase your data plots. As long as you keep axes for both graphs with the same scale the system works like a charm, and you don't need to struggle with pixel conversion between the graph and the picture.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Labeling Variable Number of Plots on a Graph?

    I'm loading up an unknown number of files and graphing them. Since it can get a bit confusing, I'd like to be able to take a portion of the file name and label each plot on my graph. Since there is a variable number of graphs, I can't seem to work around how to wire the property node. There are several other things I'd like to do with the graph, but dont know if its possible or not such as having a label pop up if your cursor is over a plot.

    You are going to have to embed the reference node for the graph into a for-loop like the attached example. File names or portions thereof are built as strings and then added into the property node Plot>>Plot Name.
    I'm not sure about how to get a label to pop up if you are over the plot. You might be able to do it with some cursors and associated code.
    Attachments:
    Graph-Names.vi ‏20 KB

  • Building Cascading Lists for Query Screens with ADF Business Components.

    I build “Cascading Lists for Query Screens with ADF Business Components”. When I to select master list first working fine, but when I to select master list second returned error : JBO – 25013 : Too many objects match the primary key oracle.jbo.key[CN]. CN dependences with key to detail list (Countries in this case). Please help me.
    Andrew.

    You would have a better chance, that someone answers your question, if you choose the right forum:
    JDeveloper and ADF

  • Building Cascading Lists for Query with ADF Business components and JSP

    I build “Cascading Lists for Query Screens with ADF Business Components”. When I to select master list first – Ok, but when I to select master list second returned error : JBO – 25013 : Too many objects match the primary key oracle.jbo.key[CN]. CN dependences with key to detail list (Countries in this case). Please help me.
    Excuse me for my English.
    Andrew.

    You would have a better chance, that someone answers your question, if you choose the right forum:
    JDeveloper and ADF

  • Read from spreadshee​t and plot multiple XY graph

    I'm trying to read a text file using the "Read from Spreadsheet" function. Next I want to plot the data in it on a single XY Graph.
    The text file contains 4 coloums and the first coloumn is X axis and rest are for Y axis. I'm not able to get the multiple plots. 
    However, I could get it to plot when only a single graph is to be plotted(only 2 coloumn in file). I've attached my VI and a picture here.
    I need help in plotting multiple XY graph from the text file with the 4 coloumns.
    Solved!
    Go to Solution.
    Attachments:
    Test_1.vi ‏13 KB

    Here's a more scalable solution, useful if you have one x and many y columns.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    MultiXY.png ‏5 KB
    MultiXY.vi ‏10 KB

Maybe you are looking for