Dynamically add an in memory Bitmap to a List

I'm trying to dynamically add an in memory Bitmap to a List
control. I'm trying to create a thumbnail
from a larger bmp image and display the thumbnail in the
list. The thumbnail images are being created ok
but the bitmaps are not displaying in the List control. The
code I'm using is shown below. Apparently I can't
use a collection of bitmaps in the List. Previously I had a
collection of pathnames as strings that pointed to
jpgs on disk and it displayed ok. Does anyone know how I can
get the Bitmaps to display?
<mx:List id="fileList" x="10"y="10" width="231"
height="648" rowHeight="160" columnWidth="120 enabled="true"
click="loadImage()" itemRenderer="mx.controls.Image"
dataProvider="{myProvider}"></mx:List>
public var anArray:Array = new Array();
public var myProvider:ArrayCollection = new
ArrayCollection(anArray);
var thumbnail:Bitmap = new Bitmap(new
BitmapData(thumbSize,thumbSize,true,0));
thumbnail.bitmapData.draw(bmp,matrix);
myProvider.addItem(thumbnail);

without looking at what tables you are using and and how you built the query this is what I can think of:
Please write this in record processing section:
fields material/stock/req are the running variables in meaning database field names.
lv_ava is the new field that needs to be created.
data lv_stock type INSME.
data lv_req type insme.
at new material.
  lv_stock = stock.
  clear :lv_req, req.
end at.
  lv_req = lv_req + req.
  lv_ava = stock-lv_req.

Similar Messages

  • Asha 311 - add music from memory card

    Hello,
    I've encountered an issue with my Asha 311. I copied my mp3 files into phones memory card and I wanted to access and play them from phone's Music shortcut in the front page, however, it only finds music that is in the phone memory and ignores the memory card. How do I add music from memory card to that list?
    Thanks
    Solved!
    Go to Solution.

    Then do one thing.. make sure all the music files in your device are in the folder named music files in the memory card.. if not, simply move the files to that folder.. agian update the library and check..
    still problem remains, then  go for a soft reset ( it will not affect your data). for this type *#7780# in your keypad and provide security code (default 12345). check again.. 
    if this post helped you, dont forget click on the white star
    Or accept this as the solution
    Nokia Asha Lover..... and Proud to be a Nokian
    If this post helped you, don't forget!! click on the white star

  • Loading ImageView with in-memory bitmap

    I am new to JavaFX, and I have search all over the internet but I cannot find the answer.
    My Java code is creating an in-memory bitmap image and I would like to display it in JavaFX ImageView class (without saving it to a file). ImageView can load an image from a URL, but how do I do that from a member variable in a Java class?
    As an alternative, I tried to subclass SwingComponent (instead of using ImageView) and have the java.awt.Image member variable in this class. I can bind to this member variable, but now I am stuck, since I cannot get JavaFX to invoke my paintComponent repaint routine. If I could then I can use graphics drawImage in this routine.
    Also, Timeline, while it is cool, does not apply to my solution since the image is generated at various times based on system events.
    Which is the best approach?
    Any help would be appreciated.
    - Tosh

    Thank you for your answer. I also found it difficult to convert the int[] of the image to BufferedImage. I did manage to cobble together some code that does this, although, I think it is inefficient. Anyway, I am glad that I have some working code now. As an aid to others I am placing my routine to convert int array to BufferedImage. If anyone has a more efficient way, please add to this trail.
    BufferedImage bimg = null;
    public BufferedImage intArraytoImage(int[] buf, int w, int h) {
    int[] BM = new int[]{0xff0000, 0xff00, 0xff}; // I don't have alpha channel... {0xff0000, 0xff00, 0xff, 0xff000000};
    SinglePixelPackedSampleModel sm = new SinglePixelPackedSampleModel(DataBuffer.TYPE_INT, w, h, BM);
    DataBufferInt db = new DataBufferInt(buf, w * h, 0);
    Point p = new Point(0, 0);
    WritableRaster raster = null;
    try {
    raster = Raster.createWritableRaster(sm, db, p);
    ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_GRAY);
    int[] nBits = {24};
    ColorModel cm = new ComponentColorModel(cs, nBits, false, true, Transparency.OPAQUE, DataBuffer.TYPE_BYTE);
    bimg = new BufferedImage(w, h, 1); // 1 = TYPE_INT_RGB
    bimg.setData(raster);
    } catch (Exception e) {
    System.out.println("exception in creating BufferedImage");
         e.printStackTrace();
    return bimg;
    - Tosh
    fixed typo

  • Dynamic add row/columns to data forms(11.1.1.3) v/s (11.1.2.1)

    Hello All,,
    There used to be an option in Hyperion planning 11.1.1.3 to Dynamic add rows in data form. I don't see this option in planning 11.1.2.1 ?
    Could you please suggest how we can grant right users to add dynamic add rows and columns in data forms? or it is possible in 11.1.2.1 ?
    out user want to have a feature of adding row in data forms (planning forms)
    Thank you
    Edited by: 842804 on Aug 17, 2011 12:49 PM

    Do you mean 11.1.2, if so then adhoc web forms really take over from adding rows as they add much more functionality.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Dynamically add Children Link Element

    Hi,
    I'm trying to dynamically add a children element, a link, but the action binding refuses to work ...
    I've created a custom jsf component, that does nothing at all.
    For example, one would use it like:
    <my:nothing></my:nothing>So my UI class would have the following methods:
    public void encodeBegin(FacesContext context) throws IOException {
    public void encodeEnd(FacesContext context) throws IOException {
    }The tld file is created, the tag class is working. All the component is working properly.
    Now I want to add a link as a child component, but I wat to do it programatically, so I changed the encodeBegin method of my custom ui class:
    import javax.faces.el.ValueBinding;
    import com.sun.faces.util.Util;
    import javax.faces.el.MethodBinding;
    import javax.faces.component.UICommand;
    import javax.faces.component.html.HtmlCommandLink;
    import com.sun.faces.taglib.html_basic.CommandLinkTag;
    public void encodeBegin(FacesContext context) throws IOException {
              String myLinkId = "idMyLink";
              String myLinkValue = "myLink:Value";
              String myLinkStyle = "color:green;";
              String myLinkAction = "backup";
              HtmlCommandLink myLink = new HtmlCommandLink();
              myLink.setParent(this);
              myLink.setId( myLinkId );
              if (CommandLinkTag.isValueReference( myLinkValue )) {
                   ValueBinding vb = Util.getValueBinding( myLinkValue );
                   myLink.setValueBinding("value", vb);
              } else {
                   myLink.setValue( myLinkValue );
              if (CommandLinkTag.isValueReference( myLinkStyle )) {
                   ValueBinding vb = Util.getValueBinding( myLinkStyle );
                   myLink.setValueBinding("style", vb);
              } else {
                   myLink.setStyle( myLinkStyle );
              if(myLinkAction!=null) {
                   if (CommandLinkTag.isValueReference( myLinkAction )) {
                        System.err.println("Id="+myLinkId+":TRUE:getAccao:isValueReference:"+myLinkAction);
                        MethodBinding vb = getFacesContext().getApplication().createMethodBinding(myLinkAction, null);
                        myLink.setAction(vb);
                   } else {
                        System.err.println("Id="+myLinkId+":FALSE:getAccao:isValueReference:"+myLinkAction);
                        final String outcome = cNfo.getAccao();
                        MethodBinding vb = Util.createConstantMethodBinding( myLinkAction );
                        myLink.setAction(vb);
              myLink.encodeBegin(getFacesContext());
              myLink.encodeEnd(getFacesContext());
    }This seems to work, but not quite ... the link appears as expected, the value references for value and style are correctly passed, but the action doesn't work at all.
    For example if I change to:
    String myLinkValue = "#{mybean.linkText}";And I have the following method created on my managed bean:
         public String getLinkText() {
              return "This is myLink Text!";
         }Is successfully calls and retrieves the value from the method. Same happens to the style property.
    Now for the action, if I change to:
    String myLinkAction = "#{mybean.doMyLinkAction}";And I have the following method created on my managed bean:
         public String doMyLinkAction() {
              return "backup";
         }The result is nothing ... I mean the method is not called at all. The "backup" is properly defined on my "faces-config.xml":
       <navigation-rule>
          <from-view-id>/testPage.jsp</from-view-id>
          <navigation-case>
             <from-outcome>yes</from-outcome>
             <to-view-id>/yes.jsp</to-view-id>
          </navigation-case>
          <navigation-case>
             <from-outcome>no</from-outcome>
             <to-view-id>/no.jsp</to-view-id>
          </navigation-case>
          <navigation-case>
             <from-outcome>backup</from-outcome>
             <to-view-id>/backup.jsp</to-view-id>
          </navigation-case>
       </navigation-rule>If I create the link manually on the web page:
    <h:commandLink id="myLinkManual" value="Manually Created Link" style="" action="#{mybean.doMyLinkAction}"/>It does work (the backup.jsp page is shown), so the methods are properly configured, only the action binding does not work.
    Wether I use a string "backup" or a reference "#{mybean.doMyLinkAction}" I cannot make it work.
    On the console I get the following results, for each value I test (string "backup" or reference "#{mybean.doMyLinkAction}"):
    Id=idMyLink:TRUE:getAccao:isValueReference:backup
    Id=idMyLink:FALSE:getAccao:isValueReference:#{mybean.doMyLinkAction}So the "if (CommandLinkTag.isValueReference( myLinkAction )) {" is working properly ... that just leaves me with the action method binding instructions ...
    Why don't they work?
    Any Help Appreciated ... Thanks in Advance!

    c'mon guys ... can anyone test this and help me out?
    Pleeeeeease ... I'm really needing this working out.
    Thanks

  • It cannot reference the dynamic internal table in memory as an object.

    Hi,
    I am getting the syntax error in the second select. I guest it cannot reference the dynamic internal table in memory as an object.
    The internal table contains different fields from multiple tables and it gets created OK. Then the first select within the loop executes OK allowing me to read the multiple tables in ITABLES.
    * Create dynamic internal table and assign to FS
      call method cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog = ifc
        IMPORTING
          ep_table        = dy_table.
    ***OK, the dynamic tables is created here
      assign dy_table->* to <dyn_table>.
    * Create dynamic work area and assign to FS
      create data dy_line like line of <dyn_table>.
      assign dy_line->* to <dyn_wa>.
    loop at ITABLES.
    ***OK, no syntax errors in this select here
      select * appending corresponding fields of table <dyn_table>
                 from (ITABLES-TABNAME).
    endloop.
    data: ikonp like konp occurs 0 with header line.
    ***NOT OK, there is syntax errors
      select * into table ikonp
      from KONP for all entries in <dyn_table>
      where knumh = <dyn_table>-knumh.
    Some of the tables in ITABLES are pooled tables which does not allow me to use INNER JOINS. Therefore I need a second select in order to read the pricing table KONP.
    Thanks in advance for any hint.

    Hi Abel,
    You must be getting the syntax error that <dyn_table> does not contain the field knumh.
    try putiing the entire where clause in a char type variable say wa_char and then use in ur query as
    where (wa_char) .. it may work..
    concatenate 'knumh' '=' '<dyn_table>-knumh' INTO wa_char SEPARATED BY SPACES.
    SELECT ... from konp...
    where (wa_char).
    Revert if it doesnt work.

  • Dynamic add tree node and thread

    Hi,
    I implemented a thread by using SwingWorker class to execute the time-consuming file loading and processing task instead of the event-dispatching thread. However, I need to dynamically add node to a tree by using data returned by the file loader in my project's main frame like following:
    if (source == loadAffyItem) {
        //load affy file data to the application
        loader = new AffyFileLoader();
        //dynamically add node to the tree after data loading
        rawDataNode = treePanel.addObject(null, "Raw Data");
        DefaultMutableTreeNode node = new DefaultMutableTreeNode(new UserData("Pixel",   loader.getPixelMatrix()));
        pixelNode = treePanel.addObject(rawDataNode, node);
        node = new DefaultMutableTreeNode(new UserData("Signal", loader.getSignalMatrix()));
        signalNode = treePanel.addObject(rawDataNode, node);
    }However, I always get a NullPointer error by doing this way since the code to dynamically add node to the tree using data returned from loader, but the loader is executed
    in another thread and not finished yet. How could I make that code executed after the loader class is finished? Hope you could enlight me about this issue?
    thanks in advance!
    Jenny

    You'll have to redesign a bit. You could either have the separate thread add the node when it's finished (using SwingUtilities invokeLater to ensure you're updating the GUI in the Event Dispatch thread), or you could have the separate thread call-back or send an event when it's finished (and your main thread would listen).

  • Dynamically add custom MXML components in Actionscript

    As there's no constructor for custom MXML components, how to
    dynamically add it as a child using ActionScript?
    I'm looking for some alternative to avoid the need to rewrite
    the entire existent component in ActionScript just to add it this
    feature (a constructor). PopManager is not an alternative...
    Is there any way?
    The case/situation:
    I have a custom MXML component that needs to be dinamically
    added to a NativeWindow created using ActionScript.
    Thanks a lot!
    Vicente Junior
    Independent Web Developer
    http://teclandoalto.blogspot.com

    mxml classes get generated into AS classes with a default
    constructor.
    In fact, there is essentially no difference between an AS
    component and an mxml component, they can be used exactly the same
    way.
    Tracy

  • Dynamic add row/columns to data forms(11.1.1.3) v/s (11.1.1.2)

    Hello All,,
    There used to be an option in Hyperion planning 11.1.1.3 to Dynamic add rows in data form. I dont see this option in planning 11.1.1.2 ?
    Could you please suggest how we can grant right users to add dynamic add rows and columns? or it is possible in 11.1.1.2
    Thank you

    How about ad-hoc analysis? Have a read of this: http://download.oracle.com/docs/cd/E17236_01/epm.1112/hp_user/ch04s02s03.html
    Cheers,
    Mehmet

  • How we create dynamic add form field in web form

    How we create dynamic add form field in web form?

    Hi,
    Thanks for reply.
    I need to create a form in which "add more" input field dynamically. For
    example sometime we need field on or more. Please look at the demo, I need
    to create form as per demo in business catalyst:
    http://www.openjs.com/scripts/examples/addfield.php

  • Dynamically add some elements in WebService operation request

    Hi, 
    I have a WebService element defined in my mxml which use to make soap calls. 
    I need to dynamically add some repeating groups for action (dependent on action) in the following example. 
    How can I add this in Action Script section? Can I access the WebService  by id userRequest and specify " 
    userRequest.operations.DoAction.request.DoItemActionRequest.action.requiresAdditionItems.n ameValuePair.name = "SomeName"; 
    userRequest.operations.DoAction.request.DoItemActionRequest.action.requiresAdditionItems.n ameValuePair.name = "SomeValue";  
    <mx:WebService  id="userRequest" wsdl="{Application.application.wsdl}" > 
         <mx:operation name="DoAction" resultFormat="object" 
          fault="faultHandler(event)" 
          result="DoActionHandler(evnt)">
            <mx:request> 
              <DoActionRequest> 
                 <userId>{Application.application.userID}</userId> 
                  <action> 
                     <actionId>{selectedItem.actionId}</actionId> 
                 </action> 
              </DoActionRequest> 
             </mx:request> 
           </mx:operation> 
    </mx:WebService>
    Thanks,
    Amitava

    Hi miguel8312,
    Thanks for your suggestion. I understand the steps you explained for defining, calling and processing the result from a webservice from a MXML body.
    My query is specifically, can I modify the webservice request defination from AS function before making the call?
    In my example, if I need to dynamically add a name value pair for <action> tag (e.g. actionParam ), how do I do that?
    Thanks,
    Amitava

  • Dynamically add web part in sandbox solution

    I've site in office 365. I want to add site page in /SitePages on feature activation. I also want to dynamically add web part in this site page.
    How can I do this?

    Hi,
    According to your description, you might want to add a page into the “Site Pages” library and add a web part into it in the FeatureActivated event in a Sandboxed solution.
    To add a site page, you can refer to the two links below:
    http://www.c-sharpcorner.com/blogs/4526/programmatically-create-wiki-page-in-sharepoint.aspx
    http://sharepoint2010mind.blogspot.ch/2012/06/add-publishing-page-to-sharepoint-site.html
    Then add a web part to the page:
    http://blog.mastykarz.nl/inconvenient-provisioning-web-parts-wiki-pages-sandboxed-solutions/
    Best regards
    Patrick Liang
    TechNet Community Support

  • Dynamically Add and Remove Train Stop with version 11.1.2.3

    I have found examples with prior versions, such as http://adfpractice-fedor.blogspot.com/2011/12/dynamic-adf-train-showing-train-stops.html.
    But, they do not work in 11.1.2.3.
    It appears that the APIs have changed considerably.
    Please advise as to a similiar example that is based on the API model for 11.1.2.3
    Thanks in advance for your help.

    Hi,
    I have a requirement to dynamically add different train stops at runtime, which are not part of the task flow at design time. I would like to build the train at runtime based on various conditions that occur. Is this possible?
    Train stops can only be removed from the train model before the first view renders, which means during task flow initialization. To a later point you cannot remove but hide stops. The train model is created upon task flow initialization too and any train stop that is not part of the model virtually doesn't exist. In your case I think creating a custom train model from ground up and using this with the train is the way to go. The default task flow metadata based implementation doesn't seem to do what you need it for. Alternatively, if you can predict the maximum number of train stops, you can design them at design time and then remove those you don't need at runtime using a HashMap reference in the train stop configuration and check the HashMap values upon initialization.
    Here's a write up on trains I did in the past: http://www.oracle.com/technetwork/issue-archive/2011/11-sep/o51adf-452576.html
    More documents you find on ADF Code Corner http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html (just search for train)
    Frank

  • Dynamically Add Series to a flex chart

    Hello,
    Does any one know how to dynamically add series to an areachart? I'm trying to create a dashboard with this kind of chart http://www.meutzner.com/blog/attachments/360/Flex_Finance_Step5.html  but with multiple series. I have the xml like this..and I need to use the kwhsavs as the data points..
    I know I have to do it in the result handler..can someone help me out?.....thanks in advance.
             * Called when HTTPService call completes the data load of the XML chart info.
                private function dataResult(event:ResultEvent):void
                     var tmpData:ArrayCollection = event.result.root.program;
                     for each (var item in tmpData)
                             // Here new series here...
    <?xml version="1.0" encoding="utf-8"?>
    <root>
      <program programName="Series 1">
        <totkwhsavs date="2008-01-03" kwhsavs="47632.3200" />
        <totkwhsavs date="2008-01-04" kwhsavs="51418.5600" />
        <totkwhsavs date="2008-01-07" kwhsavs="170604.4800" />
        <totkwhsavs date="2008-01-08" kwhsavs="32632.3200" />
        <totkwhsavs date="2008-01-09" kwhsavs="61200.9600" />
        <totkwhsavs date="2008-01-10" kwhsavs="79312.3200" />
        <totkwhsavs date="2008-01-11" kwhsavs="35648.6400" />
        <totkwhsavs date="2008-01-14" kwhsavs="17688.9600" />
        <totkwhsavs date="2008-01-15" kwhsavs="37404.4800" />
        <totkwhsavs date="2008-01-16" kwhsavs="15341.7600" />
        <totkwhsavs date="2008-01-17" kwhsavs="107674.5600" />
        <totkwhsavs date="2008-01-18" kwhsavs="24521.6000" />
        <totkwhsavs date="2008-01-21" kwhsavs="6541.4400" />
        <totkwhsavs date="2008-01-22" kwhsavs="33707.5200" />
        <totkwhsavs date="2008-01-23" kwhsavs="48791.0400" />
        <totkwhsavs date="2008-01-24" kwhsavs="70316.1600" />
        <totkwhsavs date="2008-01-25" kwhsavs="37237.7600" />
        <totkwhsavs date="2008-01-28" kwhsavs="5273.2800" />
        <totkwhsavs date="2008-01-29" kwhsavs="51608.6400" />
        <totkwhsavs date="2008-01-30" kwhsavs="273521.2800" />
        <totkwhsavs date="2008-01-31" kwhsavs="262619.5200" />
        <totkwhsavs date="2008-02-01" kwhsavs="336914.8800" />
        <totkwhsavs date="2008-02-04" kwhsavs="126445.4400" />
        <totkwhsavs date="2008-02-05" kwhsavs="372644.1600" />
        <totkwhsavs date="2008-02-06" kwhsavs="157114.5600" />
        <totkwhsavs date="2008-02-07" kwhsavs="74941.4400" />
        <totkwhsavs date="2008-02-08" kwhsavs="36904.3200" />
        <totkwhsavs date="2008-02-11" kwhsavs="20378.8800" />
        <totkwhsavs date="2008-02-12" kwhsavs="31257.6000" />
        <totkwhsavs date="2008-02-13" kwhsavs="224701.4400" />
        <totkwhsavs date="2008-02-14" kwhsavs="229971.8400" />
        <totkwhsavs date="2008-02-15" kwhsavs="82936.3200" />
        <totkwhsavs date="2008-02-19" kwhsavs="71586.5600" />
        <totkwhsavs date="2008-02-20" kwhsavs="45050.8800" />
        <totkwhsavs date="2008-02-21" kwhsavs="399826.5600" />
        <totkwhsavs date="2008-02-22" kwhsavs="86696.9600" />
        <totkwhsavs date="2008-02-25" kwhsavs="174406.0800" />
        <totkwhsavs date="2008-02-28" kwhsavs="52768.0000" />
        <totkwhsavs date="2008-03-04" kwhsavs="216846.7200" />
        <totkwhsavs date="2008-03-05" kwhsavs="205426.5600" />
        <totkwhsavs date="2008-03-06" kwhsavs="81350.4000" />
        <totkwhsavs date="2008-03-07" kwhsavs="75051.8400" />
        <totkwhsavs date="2008-03-13" kwhsavs="8718.7200" />
        <totkwhsavs date="2008-03-14" kwhsavs="8397.1200" />
        <totkwhsavs date="2008-03-17" kwhsavs="185443.2000" />
        <totkwhsavs date="2008-03-20" kwhsavs="6000.0000" />
        <totkwhsavs date="2008-03-24" kwhsavs="5782.0800" />
        <totkwhsavs date="2008-03-26" kwhsavs="75034.5600" />
        <totkwhsavs date="2008-03-27" kwhsavs="159776.6400" />
        <totkwhsavs date="2008-03-31" kwhsavs="1143795.8400" />
        <totkwhsavs date="2008-04-01" kwhsavs="52963.2000" />
        <totkwhsavs date="2008-04-08" kwhsavs="4000.0000" />
        <totkwhsavs date="2008-04-25" kwhsavs="50015.0400" />
        <totkwhsavs date="2008-05-08" kwhsavs="440999.0400" />
        <totkwhsavs date="2008-05-27" kwhsavs="7856.6400" />
        <totkwhsavs date="2008-05-28" kwhsavs="999.3600" />
        <totkwhsavs date="2008-06-02" kwhsavs="83316.4800" />
        <totkwhsavs date="2008-06-03" kwhsavs="14005.4400" />
        <totkwhsavs date="2008-06-04" kwhsavs="113183.0400" />
        <totkwhsavs date="2008-06-23" kwhsavs="6055.6800" />
        <totkwhsavs date="2008-06-26" kwhsavs="55369.9200" />
        <totkwhsavs date="2008-07-08" kwhsavs="105760.3200" />
        <totkwhsavs date="2008-07-11" kwhsavs="167619.8400" />
        <totkwhsavs date="2008-07-17" kwhsavs="113564.1600" />
        <totkwhsavs date="2008-07-18" kwhsavs="23229.1200" />
        <totkwhsavs date="2008-07-30" kwhsavs="49492.8000" />
        <totkwhsavs date="2008-08-02" kwhsavs="111351.3600" />
        <totkwhsavs date="2008-08-08" kwhsavs="167619.8400" />
        <totkwhsavs date="2008-08-12" kwhsavs="2707.2000" />
        <totkwhsavs date="2008-08-26" kwhsavs="191064.9600" />
        <totkwhsavs date="2008-08-27" kwhsavs="3519.3600" />
        <totkwhsavs date="2008-08-29" kwhsavs="18752.6400" />
        <totkwhsavs date="2008-09-02" kwhsavs="22167.3600" />
        <totkwhsavs date="2008-09-04" kwhsavs="1082.8800" />
        <totkwhsavs date="2008-09-05" kwhsavs="587137.9200" />
        <totkwhsavs date="2008-09-09" kwhsavs="33824.6400" />
        <totkwhsavs date="2008-09-16" kwhsavs="22167.3600" />
        <totkwhsavs date="2008-09-17" kwhsavs="17763.8400" />
        <totkwhsavs date="2008-09-19" kwhsavs="8674.5600" />
        <totkwhsavs date="2008-09-24" kwhsavs="53396.1600" />
        <totkwhsavs date="2008-09-25" kwhsavs="10428.4800" />
        <totkwhsavs date="2008-10-01" kwhsavs="61750.0800" />
        <totkwhsavs date="2008-10-02" kwhsavs="107643.8400" />
        <totkwhsavs date="2008-10-03" kwhsavs="47462.4000" />
        <totkwhsavs date="2008-10-06" kwhsavs="4005.1200" />
        <totkwhsavs date="2008-10-07" kwhsavs="39736.3200" />
        <totkwhsavs date="2008-10-09" kwhsavs="9152.6400" />
        <totkwhsavs date="2008-10-10" kwhsavs="2616.0000" />
        <totkwhsavs date="2008-10-13" kwhsavs="8268.4800" />
        <totkwhsavs date="2008-10-14" kwhsavs="138812.1600" />
        <totkwhsavs date="2008-10-15" kwhsavs="28195.2000" />
        <totkwhsavs date="2008-10-17" kwhsavs="175518.7200" />
        <totkwhsavs date="2008-10-22" kwhsavs="37278.7200" />
        <totkwhsavs date="2008-10-28" kwhsavs="33956.1600" />
        <totkwhsavs date="2008-10-29" kwhsavs="17937.6000" />
        <totkwhsavs date="2008-10-30" kwhsavs="264252.4800" />
        <totkwhsavs date="2008-10-31" kwhsavs="9727.6800" />
        <totkwhsavs date="2008-11-03" kwhsavs="51020.1600" />
        <totkwhsavs date="2008-11-20" kwhsavs="5414.4000" />
        <totkwhsavs date="2008-11-21" kwhsavs="14672.6400" />
        <totkwhsavs date="2008-11-25" kwhsavs="5414.4000" />
        <totkwhsavs date="2008-12-01" kwhsavs="2165.7600" />
        <totkwhsavs date="2008-12-03" kwhsavs="10558.0800" />
        <totkwhsavs date="2008-12-05" kwhsavs="292814.4000" />
        <totkwhsavs date="2008-12-08" kwhsavs="342307.2000" />
        <totkwhsavs date="2008-12-09" kwhsavs="2707.2000" />
        <totkwhsavs date="2008-12-11" kwhsavs="4005.1200" />
        <totkwhsavs date="2008-12-16" kwhsavs="108993.6000" />
        <totkwhsavs date="2008-12-17" kwhsavs="7841.2800" />
        <totkwhsavs date="2008-12-18" kwhsavs="206042.8800" />
        <totkwhsavs date="2008-12-19" kwhsavs="163659.8400" />
        <totkwhsavs date="2008-12-22" kwhsavs="97653.1200" />
        <totkwhsavs date="2008-12-23" kwhsavs="161386.5600" />
        <totkwhsavs date="2008-12-26" kwhsavs="525004.8000" />
        <totkwhsavs date="2008-12-27" kwhsavs="95824.3200" />
        <totkwhsavs date="2008-12-29" kwhsavs="280452.4800" />
        <totkwhsavs date="2008-12-30" kwhsavs="442554.2400" />
        <totkwhsavs date="2008-12-31" kwhsavs="4610.8800" />
      </program>
      <program programName="Series 2">
        <totkwhsavs date="2008-07-01" kwhsavs="5283.9000" />
        <totkwhsavs date="2008-07-23" kwhsavs="17469.5700" />
        <totkwhsavs date="2008-07-30" kwhsavs="22569.0800" />
        <totkwhsavs date="2008-07-31" kwhsavs="13742.0100" />
        <totkwhsavs date="2008-08-01" kwhsavs="36402.7500" />
        <totkwhsavs date="2008-08-02" kwhsavs="61254.7100" />
        <totkwhsavs date="2008-08-18" kwhsavs="9888.1200" />
        <totkwhsavs date="2008-08-19" kwhsavs="30139.8300" />
        <totkwhsavs date="2008-08-20" kwhsavs="52721.6500" />
        <totkwhsavs date="2008-08-21" kwhsavs="5217.2100" />
        <totkwhsavs date="2008-08-25" kwhsavs="163535.8300" />
        <totkwhsavs date="2008-09-03" kwhsavs="18812.8000" />
        <totkwhsavs date="2008-09-04" kwhsavs="87868.2000" />
        <totkwhsavs date="2008-09-05" kwhsavs="65277.9300" />
        <totkwhsavs date="2008-09-09" kwhsavs="40875.8200" />
        <totkwhsavs date="2008-09-11" kwhsavs="64145.5300" />
        <totkwhsavs date="2008-09-12" kwhsavs="2064.9600" />
        <totkwhsavs date="2008-09-16" kwhsavs="7529.4100" />
        <totkwhsavs date="2008-09-17" kwhsavs="3012.8600" />
        <totkwhsavs date="2008-09-19" kwhsavs="21610.4900" />
        <totkwhsavs date="2008-09-20" kwhsavs="6932.5400" />
        <totkwhsavs date="2008-09-22" kwhsavs="7721.2100" />
        <totkwhsavs date="2008-09-23" kwhsavs="40967.6000" />
        <totkwhsavs date="2008-09-24" kwhsavs="75629.6900" />
        <totkwhsavs date="2008-09-25" kwhsavs="3022.6500" />
        <totkwhsavs date="2008-09-26" kwhsavs="85524.6500" />
        <totkwhsavs date="2008-09-27" kwhsavs="54166.3200" />
        <totkwhsavs date="2008-10-01" kwhsavs="87857.8100" />
        <totkwhsavs date="2008-10-02" kwhsavs="44671.7400" />
        <totkwhsavs date="2008-10-03" kwhsavs="28834.2800" />
        <totkwhsavs date="2008-10-06" kwhsavs="91743.7100" />
        <totkwhsavs date="2008-10-07" kwhsavs="20846.7800" />
        <totkwhsavs date="2008-10-08" kwhsavs="72984.9000" />
        <totkwhsavs date="2008-10-09" kwhsavs="107800.3700" />
        <totkwhsavs date="2008-10-10" kwhsavs="35978.6200" />
        <totkwhsavs date="2008-10-13" kwhsavs="13388.2900" />
        <totkwhsavs date="2008-10-14" kwhsavs="117283.5600" />
        <totkwhsavs date="2008-10-15" kwhsavs="26121.6000" />
        <totkwhsavs date="2008-10-16" kwhsavs="4479.6800" />
        <totkwhsavs date="2008-10-20" kwhsavs="12263.6000" />
        <totkwhsavs date="2008-10-21" kwhsavs="10964.9100" />
        <totkwhsavs date="2008-10-22" kwhsavs="17431.6800" />
        <totkwhsavs date="2008-10-29" kwhsavs="11556.2800" />
        <totkwhsavs date="2008-10-30" kwhsavs="17684.6600" />
        <totkwhsavs date="2008-10-31" kwhsavs="15702.8400" />
        <totkwhsavs date="2008-11-04" kwhsavs="53668.5300" />
        <totkwhsavs date="2008-11-05" kwhsavs="52350.2000" />
        <totkwhsavs date="2008-11-06" kwhsavs="57828.7900" />
        <totkwhsavs date="2008-11-11" kwhsavs="31006.9100" />
        <totkwhsavs date="2008-11-13" kwhsavs="48291.9000" />
        <totkwhsavs date="2008-11-20" kwhsavs="78897.6500" />
        <totkwhsavs date="2008-11-24" kwhsavs="23127.2300" />
        <totkwhsavs date="2008-11-25" kwhsavs="78861.3600" />
        <totkwhsavs date="2008-11-26" kwhsavs="11158.7800" />
        <totkwhsavs date="2008-12-01" kwhsavs="25061.2300" />
        <totkwhsavs date="2008-12-03" kwhsavs="25387.5800" />
        <totkwhsavs date="2008-12-04" kwhsavs="39855.6600" />
        <totkwhsavs date="2008-12-05" kwhsavs="10968.9500" />
        <totkwhsavs date="2008-12-16" kwhsavs="17024.3800" />
        <totkwhsavs date="2008-12-19" kwhsavs="35257.8500" />
      </program>
      <program programName="Series 3">
        <totkwhsavs date="2008-09-29" kwhsavs="33088.1500" />
        <totkwhsavs date="2008-09-30" kwhsavs="22931.1500" />
        <totkwhsavs date="2008-10-01" kwhsavs="56942.0000" />
        <totkwhsavs date="2008-10-02" kwhsavs="26399.0000" />
        <totkwhsavs date="2008-10-03" kwhsavs="26060.4500" />
        <totkwhsavs date="2008-10-06" kwhsavs="25107.6000" />
        <totkwhsavs date="2008-10-07" kwhsavs="40643.3900" />
        <totkwhsavs date="2008-10-08" kwhsavs="79733.4300" />
        <totkwhsavs date="2008-10-09" kwhsavs="62522.1000" />
        <totkwhsavs date="2008-10-10" kwhsavs="39355.0000" />
        <totkwhsavs date="2008-10-13" kwhsavs="128959.1700" />
        <totkwhsavs date="2008-10-14" kwhsavs="70101.0600" />
        <totkwhsavs date="2008-10-15" kwhsavs="38892.3700" />
        <totkwhsavs date="2008-10-16" kwhsavs="64203.1500" />
        <totkwhsavs date="2008-10-17" kwhsavs="70063.9100" />
        <totkwhsavs date="2008-10-18" kwhsavs="23487.7900" />
        <totkwhsavs date="2008-10-20" kwhsavs="93303.6400" />
        <totkwhsavs date="2008-10-21" kwhsavs="132008.0000" />
        <totkwhsavs date="2008-10-22" kwhsavs="73830.8600" />
        <totkwhsavs date="2008-10-23" kwhsavs="21890.0000" />
        <totkwhsavs date="2008-10-24" kwhsavs="40209.0000" />
        <totkwhsavs date="2008-10-28" kwhsavs="35039.6600" />
        <totkwhsavs date="2008-10-29" kwhsavs="148992.5000" />
        <totkwhsavs date="2008-10-30" kwhsavs="62943.6000" />
        <totkwhsavs date="2008-10-31" kwhsavs="57227.5000" />
        <totkwhsavs date="2008-11-03" kwhsavs="6973.7500" />
        <totkwhsavs date="2008-11-04" kwhsavs="3172.0000" />
        <totkwhsavs date="2008-11-05" kwhsavs="107385.5100" />
        <totkwhsavs date="2008-11-06" kwhsavs="95859.0000" />
        <totkwhsavs date="2008-11-07" kwhsavs="23940.0000" />
        <totkwhsavs date="2008-11-08" kwhsavs="2256.0000" />
        <totkwhsavs date="2008-11-12" kwhsavs="54702.0000" />
        <totkwhsavs date="2008-11-13" kwhsavs="37358.1500" />
        <totkwhsavs date="2008-11-14" kwhsavs="23471.6000" />
        <totkwhsavs date="2008-11-17" kwhsavs="146144.9000" />
        <totkwhsavs date="2008-11-21" kwhsavs="63987.7800" />
        <totkwhsavs date="2008-11-24" kwhsavs="66608.7100" />
        <totkwhsavs date="2008-11-25" kwhsavs="51839.6200" />
        <totkwhsavs date="2008-11-26" kwhsavs="25777.0950" />
        <totkwhsavs date="2008-12-01" kwhsavs="37789.4200" />
        <totkwhsavs date="2008-12-02" kwhsavs="25056.3000" />
        <totkwhsavs date="2008-12-03" kwhsavs="36452.6500" />
        <totkwhsavs date="2008-12-04" kwhsavs="30799.7500" />
        <totkwhsavs date="2008-12-05" kwhsavs="21878.9100" />
        <totkwhsavs date="2008-12-06" kwhsavs="18583.0000" />
        <totkwhsavs date="2008-12-08" kwhsavs="25552.6400" />
        <totkwhsavs date="2008-12-09" kwhsavs="97217.9900" />
        <totkwhsavs date="2008-12-10" kwhsavs="84285.9600" />
        <totkwhsavs date="2008-12-11" kwhsavs="29488.8000" />
        <totkwhsavs date="2008-12-12" kwhsavs="13433.6300" />
      </program>
      <program programName="Series 4">
        <totkwhsavs date="2008-01-10" kwhsavs="192711.6750" />
        <totkwhsavs date="2008-01-16" kwhsavs="47435.5450" />
        <totkwhsavs date="2008-01-25" kwhsavs="42353.9250" />
        <totkwhsavs date="2008-01-29" kwhsavs="97847.8450" />
        <totkwhsavs date="2008-02-06" kwhsavs="106005.5750" />
        <totkwhsavs date="2008-02-07" kwhsavs="100189.7250" />
        <totkwhsavs date="2008-02-08" kwhsavs="67175.9400" />
        <totkwhsavs date="2008-02-18" kwhsavs="47212.8100" />
        <totkwhsavs date="2008-02-19" kwhsavs="47212.8100" />
        <totkwhsavs date="2008-02-27" kwhsavs="41060.1700" />
        <totkwhsavs date="2008-03-18" kwhsavs="160624.4700" />
        <totkwhsavs date="2008-03-20" kwhsavs="190567.2250" />
        <totkwhsavs date="2008-03-31" kwhsavs="113977.6800" />
        <totkwhsavs date="2008-04-09" kwhsavs="113977.6800" />
        <totkwhsavs date="2008-04-10" kwhsavs="122362.9500" />
        <totkwhsavs date="2008-04-15" kwhsavs="1154678.0460" />
        <totkwhsavs date="2008-04-28" kwhsavs="373095.0400" />
        <totkwhsavs date="2008-05-01" kwhsavs="179670.3000" />
        <totkwhsavs date="2008-05-02" kwhsavs="179670.3000" />
        <totkwhsavs date="2008-06-27" kwhsavs="987469.3110" />
        <totkwhsavs date="2008-06-30" kwhsavs="619132.6150" />
        <totkwhsavs date="2008-07-04" kwhsavs="99837.4600" />
        <totkwhsavs date="2008-07-11" kwhsavs="35544.5500" />
        <totkwhsavs date="2008-07-15" kwhsavs="142191.3850" />
        <totkwhsavs date="2008-07-16" kwhsavs="267963.6250" />
        <totkwhsavs date="2008-07-17" kwhsavs="179670.3000" />
        <totkwhsavs date="2008-07-18" kwhsavs="181073.0250" />
        <totkwhsavs date="2008-07-21" kwhsavs="100189.7250" />
        <totkwhsavs date="2008-07-23" kwhsavs="285445.3350" />
        <totkwhsavs date="2008-07-25" kwhsavs="85032.5900" />
        <totkwhsavs date="2008-07-31" kwhsavs="190181.5650" />
        <totkwhsavs date="2008-08-01" kwhsavs="66917.1450" />
        <totkwhsavs date="2008-08-02" kwhsavs="50481.8250" />
        <totkwhsavs date="2008-08-04" kwhsavs="101596.6100" />
        <totkwhsavs date="2008-08-14" kwhsavs="82165.2600" />
        <totkwhsavs date="2008-08-15" kwhsavs="41948.9950" />
        <totkwhsavs date="2008-08-19" kwhsavs="517683.2010" />
        <totkwhsavs date="2008-08-21" kwhsavs="59952.7930" />
        <totkwhsavs date="2008-08-22" kwhsavs="517683.2010" />
        <totkwhsavs date="2008-08-29" kwhsavs="115995.9250" />
        <totkwhsavs date="2008-09-22" kwhsavs="1363410.4460" />
        <totkwhsavs date="2008-09-23" kwhsavs="130221.7600" />
        <totkwhsavs date="2008-09-24" kwhsavs="82165.2600" />
        <totkwhsavs date="2008-09-25" kwhsavs="70834.1000" />
        <totkwhsavs date="2008-09-29" kwhsavs="313580.8270" />
        <totkwhsavs date="2008-09-30" kwhsavs="41948.9950" />
        <totkwhsavs date="2008-10-01" kwhsavs="120869.1520" />
        <totkwhsavs date="2008-10-08" kwhsavs="41575.7350" />
        <totkwhsavs date="2008-10-23" kwhsavs="27624.5000" />
        <totkwhsavs date="2008-11-05" kwhsavs="121396.2650" />
        <totkwhsavs date="2008-11-06" kwhsavs="120869.1520" />
        <totkwhsavs date="2008-11-07" kwhsavs="70834.1000" />
        <totkwhsavs date="2008-11-11" kwhsavs="1037228.5230" />
        <totkwhsavs date="2008-11-12" kwhsavs="584143.5000" />
        <totkwhsavs date="2008-11-14" kwhsavs="138229.3520" />
        <totkwhsavs date="2008-11-17" kwhsavs="382103.4810" />
        <totkwhsavs date="2008-11-20" kwhsavs="339721.4770" />
        <totkwhsavs date="2008-11-24" kwhsavs="211180.9280" />
      </program>
    </root>

    Hello,
    Does any one know how to dynamically add series to an areachart? I'm trying to create a dashboard with this kind of chart http://www.meutzner.com/blog/attachments/360/Flex_Finance_Step5.html  but with multiple series. I have the xml like this..and I need to use the kwhsavs as the data points..
    I know I have to do it in the result handler..can someone help me out?.....thanks in advance.
             * Called when HTTPService call completes the data load of the XML chart info.
                private function dataResult(event:ResultEvent):void
                     var tmpData:ArrayCollection = event.result.root.program;
                     for each (var item in tmpData)
                             // Here new series here...
    <?xml version="1.0" encoding="utf-8"?>
    <root>
      <program programName="Series 1">
        <totkwhsavs date="2008-01-03" kwhsavs="47632.3200" />
        <totkwhsavs date="2008-01-04" kwhsavs="51418.5600" />
        <totkwhsavs date="2008-01-07" kwhsavs="170604.4800" />
        <totkwhsavs date="2008-01-08" kwhsavs="32632.3200" />
        <totkwhsavs date="2008-01-09" kwhsavs="61200.9600" />
        <totkwhsavs date="2008-01-10" kwhsavs="79312.3200" />
        <totkwhsavs date="2008-01-11" kwhsavs="35648.6400" />
        <totkwhsavs date="2008-01-14" kwhsavs="17688.9600" />
        <totkwhsavs date="2008-01-15" kwhsavs="37404.4800" />
        <totkwhsavs date="2008-01-16" kwhsavs="15341.7600" />
        <totkwhsavs date="2008-01-17" kwhsavs="107674.5600" />
        <totkwhsavs date="2008-01-18" kwhsavs="24521.6000" />
        <totkwhsavs date="2008-01-21" kwhsavs="6541.4400" />
        <totkwhsavs date="2008-01-22" kwhsavs="33707.5200" />
        <totkwhsavs date="2008-01-23" kwhsavs="48791.0400" />
        <totkwhsavs date="2008-01-24" kwhsavs="70316.1600" />
        <totkwhsavs date="2008-01-25" kwhsavs="37237.7600" />
        <totkwhsavs date="2008-01-28" kwhsavs="5273.2800" />
        <totkwhsavs date="2008-01-29" kwhsavs="51608.6400" />
        <totkwhsavs date="2008-01-30" kwhsavs="273521.2800" />
        <totkwhsavs date="2008-01-31" kwhsavs="262619.5200" />
        <totkwhsavs date="2008-02-01" kwhsavs="336914.8800" />
        <totkwhsavs date="2008-02-04" kwhsavs="126445.4400" />
        <totkwhsavs date="2008-02-05" kwhsavs="372644.1600" />
        <totkwhsavs date="2008-02-06" kwhsavs="157114.5600" />
        <totkwhsavs date="2008-02-07" kwhsavs="74941.4400" />
        <totkwhsavs date="2008-02-08" kwhsavs="36904.3200" />
        <totkwhsavs date="2008-02-11" kwhsavs="20378.8800" />
        <totkwhsavs date="2008-02-12" kwhsavs="31257.6000" />
        <totkwhsavs date="2008-02-13" kwhsavs="224701.4400" />
        <totkwhsavs date="2008-02-14" kwhsavs="229971.8400" />
        <totkwhsavs date="2008-02-15" kwhsavs="82936.3200" />
        <totkwhsavs date="2008-02-19" kwhsavs="71586.5600" />
        <totkwhsavs date="2008-02-20" kwhsavs="45050.8800" />
        <totkwhsavs date="2008-02-21" kwhsavs="399826.5600" />
        <totkwhsavs date="2008-02-22" kwhsavs="86696.9600" />
        <totkwhsavs date="2008-02-25" kwhsavs="174406.0800" />
        <totkwhsavs date="2008-02-28" kwhsavs="52768.0000" />
        <totkwhsavs date="2008-03-04" kwhsavs="216846.7200" />
        <totkwhsavs date="2008-03-05" kwhsavs="205426.5600" />
        <totkwhsavs date="2008-03-06" kwhsavs="81350.4000" />
        <totkwhsavs date="2008-03-07" kwhsavs="75051.8400" />
        <totkwhsavs date="2008-03-13" kwhsavs="8718.7200" />
        <totkwhsavs date="2008-03-14" kwhsavs="8397.1200" />
        <totkwhsavs date="2008-03-17" kwhsavs="185443.2000" />
        <totkwhsavs date="2008-03-20" kwhsavs="6000.0000" />
        <totkwhsavs date="2008-03-24" kwhsavs="5782.0800" />
        <totkwhsavs date="2008-03-26" kwhsavs="75034.5600" />
        <totkwhsavs date="2008-03-27" kwhsavs="159776.6400" />
        <totkwhsavs date="2008-03-31" kwhsavs="1143795.8400" />
        <totkwhsavs date="2008-04-01" kwhsavs="52963.2000" />
        <totkwhsavs date="2008-04-08" kwhsavs="4000.0000" />
        <totkwhsavs date="2008-04-25" kwhsavs="50015.0400" />
        <totkwhsavs date="2008-05-08" kwhsavs="440999.0400" />
        <totkwhsavs date="2008-05-27" kwhsavs="7856.6400" />
        <totkwhsavs date="2008-05-28" kwhsavs="999.3600" />
        <totkwhsavs date="2008-06-02" kwhsavs="83316.4800" />
        <totkwhsavs date="2008-06-03" kwhsavs="14005.4400" />
        <totkwhsavs date="2008-06-04" kwhsavs="113183.0400" />
        <totkwhsavs date="2008-06-23" kwhsavs="6055.6800" />
        <totkwhsavs date="2008-06-26" kwhsavs="55369.9200" />
        <totkwhsavs date="2008-07-08" kwhsavs="105760.3200" />
        <totkwhsavs date="2008-07-11" kwhsavs="167619.8400" />
        <totkwhsavs date="2008-07-17" kwhsavs="113564.1600" />
        <totkwhsavs date="2008-07-18" kwhsavs="23229.1200" />
        <totkwhsavs date="2008-07-30" kwhsavs="49492.8000" />
        <totkwhsavs date="2008-08-02" kwhsavs="111351.3600" />
        <totkwhsavs date="2008-08-08" kwhsavs="167619.8400" />
        <totkwhsavs date="2008-08-12" kwhsavs="2707.2000" />
        <totkwhsavs date="2008-08-26" kwhsavs="191064.9600" />
        <totkwhsavs date="2008-08-27" kwhsavs="3519.3600" />
        <totkwhsavs date="2008-08-29" kwhsavs="18752.6400" />
        <totkwhsavs date="2008-09-02" kwhsavs="22167.3600" />
        <totkwhsavs date="2008-09-04" kwhsavs="1082.8800" />
        <totkwhsavs date="2008-09-05" kwhsavs="587137.9200" />
        <totkwhsavs date="2008-09-09" kwhsavs="33824.6400" />
        <totkwhsavs date="2008-09-16" kwhsavs="22167.3600" />
        <totkwhsavs date="2008-09-17" kwhsavs="17763.8400" />
        <totkwhsavs date="2008-09-19" kwhsavs="8674.5600" />
        <totkwhsavs date="2008-09-24" kwhsavs="53396.1600" />
        <totkwhsavs date="2008-09-25" kwhsavs="10428.4800" />
        <totkwhsavs date="2008-10-01" kwhsavs="61750.0800" />
        <totkwhsavs date="2008-10-02" kwhsavs="107643.8400" />
        <totkwhsavs date="2008-10-03" kwhsavs="47462.4000" />
        <totkwhsavs date="2008-10-06" kwhsavs="4005.1200" />
        <totkwhsavs date="2008-10-07" kwhsavs="39736.3200" />
        <totkwhsavs date="2008-10-09" kwhsavs="9152.6400" />
        <totkwhsavs date="2008-10-10" kwhsavs="2616.0000" />
        <totkwhsavs date="2008-10-13" kwhsavs="8268.4800" />
        <totkwhsavs date="2008-10-14" kwhsavs="138812.1600" />
        <totkwhsavs date="2008-10-15" kwhsavs="28195.2000" />
        <totkwhsavs date="2008-10-17" kwhsavs="175518.7200" />
        <totkwhsavs date="2008-10-22" kwhsavs="37278.7200" />
        <totkwhsavs date="2008-10-28" kwhsavs="33956.1600" />
        <totkwhsavs date="2008-10-29" kwhsavs="17937.6000" />
        <totkwhsavs date="2008-10-30" kwhsavs="264252.4800" />
        <totkwhsavs date="2008-10-31" kwhsavs="9727.6800" />
        <totkwhsavs date="2008-11-03" kwhsavs="51020.1600" />
        <totkwhsavs date="2008-11-20" kwhsavs="5414.4000" />
        <totkwhsavs date="2008-11-21" kwhsavs="14672.6400" />
        <totkwhsavs date="2008-11-25" kwhsavs="5414.4000" />
        <totkwhsavs date="2008-12-01" kwhsavs="2165.7600" />
        <totkwhsavs date="2008-12-03" kwhsavs="10558.0800" />
        <totkwhsavs date="2008-12-05" kwhsavs="292814.4000" />
        <totkwhsavs date="2008-12-08" kwhsavs="342307.2000" />
        <totkwhsavs date="2008-12-09" kwhsavs="2707.2000" />
        <totkwhsavs date="2008-12-11" kwhsavs="4005.1200" />
        <totkwhsavs date="2008-12-16" kwhsavs="108993.6000" />
        <totkwhsavs date="2008-12-17" kwhsavs="7841.2800" />
        <totkwhsavs date="2008-12-18" kwhsavs="206042.8800" />
        <totkwhsavs date="2008-12-19" kwhsavs="163659.8400" />
        <totkwhsavs date="2008-12-22" kwhsavs="97653.1200" />
        <totkwhsavs date="2008-12-23" kwhsavs="161386.5600" />
        <totkwhsavs date="2008-12-26" kwhsavs="525004.8000" />
        <totkwhsavs date="2008-12-27" kwhsavs="95824.3200" />
        <totkwhsavs date="2008-12-29" kwhsavs="280452.4800" />
        <totkwhsavs date="2008-12-30" kwhsavs="442554.2400" />
        <totkwhsavs date="2008-12-31" kwhsavs="4610.8800" />
      </program>
      <program programName="Series 2">
        <totkwhsavs date="2008-07-01" kwhsavs="5283.9000" />
        <totkwhsavs date="2008-07-23" kwhsavs="17469.5700" />
        <totkwhsavs date="2008-07-30" kwhsavs="22569.0800" />
        <totkwhsavs date="2008-07-31" kwhsavs="13742.0100" />
        <totkwhsavs date="2008-08-01" kwhsavs="36402.7500" />
        <totkwhsavs date="2008-08-02" kwhsavs="61254.7100" />
        <totkwhsavs date="2008-08-18" kwhsavs="9888.1200" />
        <totkwhsavs date="2008-08-19" kwhsavs="30139.8300" />
        <totkwhsavs date="2008-08-20" kwhsavs="52721.6500" />
        <totkwhsavs date="2008-08-21" kwhsavs="5217.2100" />
        <totkwhsavs date="2008-08-25" kwhsavs="163535.8300" />
        <totkwhsavs date="2008-09-03" kwhsavs="18812.8000" />
        <totkwhsavs date="2008-09-04" kwhsavs="87868.2000" />
        <totkwhsavs date="2008-09-05" kwhsavs="65277.9300" />
        <totkwhsavs date="2008-09-09" kwhsavs="40875.8200" />
        <totkwhsavs date="2008-09-11" kwhsavs="64145.5300" />
        <totkwhsavs date="2008-09-12" kwhsavs="2064.9600" />
        <totkwhsavs date="2008-09-16" kwhsavs="7529.4100" />
        <totkwhsavs date="2008-09-17" kwhsavs="3012.8600" />
        <totkwhsavs date="2008-09-19" kwhsavs="21610.4900" />
        <totkwhsavs date="2008-09-20" kwhsavs="6932.5400" />
        <totkwhsavs date="2008-09-22" kwhsavs="7721.2100" />
        <totkwhsavs date="2008-09-23" kwhsavs="40967.6000" />
        <totkwhsavs date="2008-09-24" kwhsavs="75629.6900" />
        <totkwhsavs date="2008-09-25" kwhsavs="3022.6500" />
        <totkwhsavs date="2008-09-26" kwhsavs="85524.6500" />
        <totkwhsavs date="2008-09-27" kwhsavs="54166.3200" />
        <totkwhsavs date="2008-10-01" kwhsavs="87857.8100" />
        <totkwhsavs date="2008-10-02" kwhsavs="44671.7400" />
        <totkwhsavs date="2008-10-03" kwhsavs="28834.2800" />
        <totkwhsavs date="2008-10-06" kwhsavs="91743.7100" />
        <totkwhsavs date="2008-10-07" kwhsavs="20846.7800" />
        <totkwhsavs date="2008-10-08" kwhsavs="72984.9000" />
        <totkwhsavs date="2008-10-09" kwhsavs="107800.3700" />
        <totkwhsavs date="2008-10-10" kwhsavs="35978.6200" />
        <totkwhsavs date="2008-10-13" kwhsavs="13388.2900" />
        <totkwhsavs date="2008-10-14" kwhsavs="117283.5600" />
        <totkwhsavs date="2008-10-15" kwhsavs="26121.6000" />
        <totkwhsavs date="2008-10-16" kwhsavs="4479.6800" />
        <totkwhsavs date="2008-10-20" kwhsavs="12263.6000" />
        <totkwhsavs date="2008-10-21" kwhsavs="10964.9100" />
        <totkwhsavs date="2008-10-22" kwhsavs="17431.6800" />
        <totkwhsavs date="2008-10-29" kwhsavs="11556.2800" />
        <totkwhsavs date="2008-10-30" kwhsavs="17684.6600" />
        <totkwhsavs date="2008-10-31" kwhsavs="15702.8400" />
        <totkwhsavs date="2008-11-04" kwhsavs="53668.5300" />
        <totkwhsavs date="2008-11-05" kwhsavs="52350.2000" />
        <totkwhsavs date="2008-11-06" kwhsavs="57828.7900" />
        <totkwhsavs date="2008-11-11" kwhsavs="31006.9100" />
        <totkwhsavs date="2008-11-13" kwhsavs="48291.9000" />
        <totkwhsavs date="2008-11-20" kwhsavs="78897.6500" />
        <totkwhsavs date="2008-11-24" kwhsavs="23127.2300" />
        <totkwhsavs date="2008-11-25" kwhsavs="78861.3600" />
        <totkwhsavs date="2008-11-26" kwhsavs="11158.7800" />
        <totkwhsavs date="2008-12-01" kwhsavs="25061.2300" />
        <totkwhsavs date="2008-12-03" kwhsavs="25387.5800" />
        <totkwhsavs date="2008-12-04" kwhsavs="39855.6600" />
        <totkwhsavs date="2008-12-05" kwhsavs="10968.9500" />
        <totkwhsavs date="2008-12-16" kwhsavs="17024.3800" />
        <totkwhsavs date="2008-12-19" kwhsavs="35257.8500" />
      </program>
      <program programName="Series 3">
        <totkwhsavs date="2008-09-29" kwhsavs="33088.1500" />
        <totkwhsavs date="2008-09-30" kwhsavs="22931.1500" />
        <totkwhsavs date="2008-10-01" kwhsavs="56942.0000" />
        <totkwhsavs date="2008-10-02" kwhsavs="26399.0000" />
        <totkwhsavs date="2008-10-03" kwhsavs="26060.4500" />
        <totkwhsavs date="2008-10-06" kwhsavs="25107.6000" />
        <totkwhsavs date="2008-10-07" kwhsavs="40643.3900" />
        <totkwhsavs date="2008-10-08" kwhsavs="79733.4300" />
        <totkwhsavs date="2008-10-09" kwhsavs="62522.1000" />
        <totkwhsavs date="2008-10-10" kwhsavs="39355.0000" />
        <totkwhsavs date="2008-10-13" kwhsavs="128959.1700" />
        <totkwhsavs date="2008-10-14" kwhsavs="70101.0600" />
        <totkwhsavs date="2008-10-15" kwhsavs="38892.3700" />
        <totkwhsavs date="2008-10-16" kwhsavs="64203.1500" />
        <totkwhsavs date="2008-10-17" kwhsavs="70063.9100" />
        <totkwhsavs date="2008-10-18" kwhsavs="23487.7900" />
        <totkwhsavs date="2008-10-20" kwhsavs="93303.6400" />
        <totkwhsavs date="2008-10-21" kwhsavs="132008.0000" />
        <totkwhsavs date="2008-10-22" kwhsavs="73830.8600" />
        <totkwhsavs date="2008-10-23" kwhsavs="21890.0000" />
        <totkwhsavs date="2008-10-24" kwhsavs="40209.0000" />
        <totkwhsavs date="2008-10-28" kwhsavs="35039.6600" />
        <totkwhsavs date="2008-10-29" kwhsavs="148992.5000" />
        <totkwhsavs date="2008-10-30" kwhsavs="62943.6000" />
        <totkwhsavs date="2008-10-31" kwhsavs="57227.5000" />
        <totkwhsavs date="2008-11-03" kwhsavs="6973.7500" />
        <totkwhsavs date="2008-11-04" kwhsavs="3172.0000" />
        <totkwhsavs date="2008-11-05" kwhsavs="107385.5100" />
        <totkwhsavs date="2008-11-06" kwhsavs="95859.0000" />
        <totkwhsavs date="2008-11-07" kwhsavs="23940.0000" />
        <totkwhsavs date="2008-11-08" kwhsavs="2256.0000" />
        <totkwhsavs date="2008-11-12" kwhsavs="54702.0000" />
        <totkwhsavs date="2008-11-13" kwhsavs="37358.1500" />
        <totkwhsavs date="2008-11-14" kwhsavs="23471.6000" />
        <totkwhsavs date="2008-11-17" kwhsavs="146144.9000" />
        <totkwhsavs date="2008-11-21" kwhsavs="63987.7800" />
        <totkwhsavs date="2008-11-24" kwhsavs="66608.7100" />
        <totkwhsavs date="2008-11-25" kwhsavs="51839.6200" />
        <totkwhsavs date="2008-11-26" kwhsavs="25777.0950" />
        <totkwhsavs date="2008-12-01" kwhsavs="37789.4200" />
        <totkwhsavs date="2008-12-02" kwhsavs="25056.3000" />
        <totkwhsavs date="2008-12-03" kwhsavs="36452.6500" />
        <totkwhsavs date="2008-12-04" kwhsavs="30799.7500" />
        <totkwhsavs date="2008-12-05" kwhsavs="21878.9100" />
        <totkwhsavs date="2008-12-06" kwhsavs="18583.0000" />
        <totkwhsavs date="2008-12-08" kwhsavs="25552.6400" />
        <totkwhsavs date="2008-12-09" kwhsavs="97217.9900" />
        <totkwhsavs date="2008-12-10" kwhsavs="84285.9600" />
        <totkwhsavs date="2008-12-11" kwhsavs="29488.8000" />
        <totkwhsavs date="2008-12-12" kwhsavs="13433.6300" />
      </program>
      <program programName="Series 4">
        <totkwhsavs date="2008-01-10" kwhsavs="192711.6750" />
        <totkwhsavs date="2008-01-16" kwhsavs="47435.5450" />
        <totkwhsavs date="2008-01-25" kwhsavs="42353.9250" />
        <totkwhsavs date="2008-01-29" kwhsavs="97847.8450" />
        <totkwhsavs date="2008-02-06" kwhsavs="106005.5750" />
        <totkwhsavs date="2008-02-07" kwhsavs="100189.7250" />
        <totkwhsavs date="2008-02-08" kwhsavs="67175.9400" />
        <totkwhsavs date="2008-02-18" kwhsavs="47212.8100" />
        <totkwhsavs date="2008-02-19" kwhsavs="47212.8100" />
        <totkwhsavs date="2008-02-27" kwhsavs="41060.1700" />
        <totkwhsavs date="2008-03-18" kwhsavs="160624.4700" />
        <totkwhsavs date="2008-03-20" kwhsavs="190567.2250" />
        <totkwhsavs date="2008-03-31" kwhsavs="113977.6800" />
        <totkwhsavs date="2008-04-09" kwhsavs="113977.6800" />
        <totkwhsavs date="2008-04-10" kwhsavs="122362.9500" />
        <totkwhsavs date="2008-04-15" kwhsavs="1154678.0460" />
        <totkwhsavs date="2008-04-28" kwhsavs="373095.0400" />
        <totkwhsavs date="2008-05-01" kwhsavs="179670.3000" />
        <totkwhsavs date="2008-05-02" kwhsavs="179670.3000" />
        <totkwhsavs date="2008-06-27" kwhsavs="987469.3110" />
        <totkwhsavs date="2008-06-30" kwhsavs="619132.6150" />
        <totkwhsavs date="2008-07-04" kwhsavs="99837.4600" />
        <totkwhsavs date="2008-07-11" kwhsavs="35544.5500" />
        <totkwhsavs date="2008-07-15" kwhsavs="142191.3850" />
        <totkwhsavs date="2008-07-16" kwhsavs="267963.6250" />
        <totkwhsavs date="2008-07-17" kwhsavs="179670.3000" />
        <totkwhsavs date="2008-07-18" kwhsavs="181073.0250" />
        <totkwhsavs date="2008-07-21" kwhsavs="100189.7250" />
        <totkwhsavs date="2008-07-23" kwhsavs="285445.3350" />
        <totkwhsavs date="2008-07-25" kwhsavs="85032.5900" />
        <totkwhsavs date="2008-07-31" kwhsavs="190181.5650" />
        <totkwhsavs date="2008-08-01" kwhsavs="66917.1450" />
        <totkwhsavs date="2008-08-02" kwhsavs="50481.8250" />
        <totkwhsavs date="2008-08-04" kwhsavs="101596.6100" />
        <totkwhsavs date="2008-08-14" kwhsavs="82165.2600" />
        <totkwhsavs date="2008-08-15" kwhsavs="41948.9950" />
        <totkwhsavs date="2008-08-19" kwhsavs="517683.2010" />
        <totkwhsavs date="2008-08-21" kwhsavs="59952.7930" />
        <totkwhsavs date="2008-08-22" kwhsavs="517683.2010" />
        <totkwhsavs date="2008-08-29" kwhsavs="115995.9250" />
        <totkwhsavs date="2008-09-22" kwhsavs="1363410.4460" />
        <totkwhsavs date="2008-09-23" kwhsavs="130221.7600" />
        <totkwhsavs date="2008-09-24" kwhsavs="82165.2600" />
        <totkwhsavs date="2008-09-25" kwhsavs="70834.1000" />
        <totkwhsavs date="2008-09-29" kwhsavs="313580.8270" />
        <totkwhsavs date="2008-09-30" kwhsavs="41948.9950" />
        <totkwhsavs date="2008-10-01" kwhsavs="120869.1520" />
        <totkwhsavs date="2008-10-08" kwhsavs="41575.7350" />
        <totkwhsavs date="2008-10-23" kwhsavs="27624.5000" />
        <totkwhsavs date="2008-11-05" kwhsavs="121396.2650" />
        <totkwhsavs date="2008-11-06" kwhsavs="120869.1520" />
        <totkwhsavs date="2008-11-07" kwhsavs="70834.1000" />
        <totkwhsavs date="2008-11-11" kwhsavs="1037228.5230" />
        <totkwhsavs date="2008-11-12" kwhsavs="584143.5000" />
        <totkwhsavs date="2008-11-14" kwhsavs="138229.3520" />
        <totkwhsavs date="2008-11-17" kwhsavs="382103.4810" />
        <totkwhsavs date="2008-11-20" kwhsavs="339721.4770" />
        <totkwhsavs date="2008-11-24" kwhsavs="211180.9280" />
      </program>
    </root>

  • Can I add hard drive memory to my MacBook Pro (13" with retina display)?

    I know I can use an external hard drive, but is there some way to add hard drive memory (either myself or taking it to an Apple store)?

    OWC does offer internal storage upgrades which, depending upon the vintage of your MBP, may or may not be applicable:
    http://eshop.macsales.com/shop/SSD/OWC/Air-Retina/Apple-MacBook-Pro-Retina-2012- Drive-Internal-Flash
    Ciao.

Maybe you are looking for

  • How to pipeline a function with a dynamic number of columns?

    Hi everyone, I'm trying to figure out how to write a piplined function that generates a dynamic SQL statement from its inputs, executes the query, and returns the results of the query in the pipeline. The number and names of the columns in the dynami

  • CR4Ev2 ActiveX Viewer distribution

    I am using CR4Ev2 and deploy my Web Application to Tomcat 5.5 on Windows Server 2003 STD. When user browse JSP page to view report, it work fine. If user click "print" button in Crystal Report Viewer Toolbar, system will pop up a window and install A

  • Populate the database from a file

    Hi guys, I have to populate an Oracle database using a java standalone application. The application gets the data from a file and copies them into the database. I don't know how to structure the entire thing and in which layer (view or model) i have

  • Newbie question about video quality in CS3

    I'm new to Premiere CS3. I've been using iMovie but wanted to move up to an app with more features and finer grained tuning. However, I'm having trouble getting my imported clips to maintain their quality. Don't know if I've got PrCS3 set up incorrec

  • Downloading Captivate generated files

    Hello, My organization would like to make our training content available to users for downloading to their local machines. How can I make this possible, considering our training website publishes links of the generated htm file instead of the swf? Pl