XML value being turned into math formula.

I am not using E4X, but here is the scenario:
Okay, so I am bringing in a string with a value of 33E-30 for
Train Id. Java is returning the following XML to my flex component:
<train>
<trainId>33E-30</trainId>
<cars>60</cars>
<length>3751</length>
<weight>2712</weight>
<callTime>null</callTime>
<comments>null</comments>
<eta>2007-10-30 05:00:00.0</eta>
<fromRoad>NS</fromRoad>
<toRoad>UP</toRoad>
<interchange>Elkhart (testing)</interchange>
<locationName>Elkhart (testing)</locationName>
<trainType>R5</trainType>
<latitude>41</latitude>
<longitude>-86</longitude>
<splc>362120</splc>
</train>
I then take the value and put it in a Value Object typed as a
String. Flex then displays the following:
3.2999999999999997e-29
It looks like Flex is treating this as some mathematical
formula instead of as a string, even though it is typed as a
string. Any ideas on how to work around this? I am thinking that it
is happening when the xml is being read into the object.

I did some more research and the it looks like Flex is making
the change in the ResultEvent processing, or it is showing up as
3.299999... in the source attribute of the response object. Rather
odd.
Is there a way to turn of this attempt at scientific
notation?

Similar Messages

  • Convert data values in columns to another value based on a math formula

    ISSUE:
    I have a database of emergency incidents with descriptive data and longitude and
    latitude. I would like to make a google map out of the information but unfortunately
    the X Y coordinates are projected in Florida State Plane West in feet. Google maps
    requires WGS84 longitude and latitude in decimal degrees.
    PROBLEM:
    I have written some code in Transact SQL that will convert the values. But I am at a loss as to how to do the following:
    1.) plug in the X Y values from my database using an sql SELECT statement.
    2.) apply the formula to convert from State Plane to WGS84 to these X Y values
    3.) output the results.
    In other words, I have the data and I have the formula, but I am not figuring out how to plug the data into the formula and output the results. I am missing how to tie it all together.
    CODE:
    DECLARE @Easting DECIMAL(18,10);
    --SET @Easting = CAST(I_MapX AS DECIMAL(18,10));
    DECLARE @Northing DECIMAL(18,10);
    --SET @Northing = CAST(I_MapY AS DECIMAL(18,10));
    DECLARE @m2sft DECIMAL(10,10);
    SET @m2sft = 1200.0/3937.0;
    DECLARE @N0 DECIMAL(3,2);
    SET @N0 = 0.0;
    DECLARE @E0 DECIMAL(18,11);
    SET @E0 = 656166.6666666665;
    DECLARE @S0 DECIMAL(12,5);
    SET @S0 = 2692050.5001/@m2sft;
    DECLARE @K0 DECIMAL(18,18);
    SET @K0 = 0.9999411764705882;
    DECLARE @a DECIMAL(10,2);
    SET @a = 6378137.0/@m2sft;
    DECLARE @e DECIMAL(18,17);
    SET @e = 0.0818191911198883;
    DECLARE @ePrime DECIMAL(18,17);
    SET @ePrime = 0.08208852110265381;
    DECLARE @r DECIMAL(18,10);
    SET @r = 6367449.14577/@m2sft;
    DECLARE @V0 DECIMAL(15,12);
    SET @V0 = 0.005022893948;
    DECLARE @V2 DECIMAL(15,12);
    SET @V2 = 0.000029370625;
    DECLARE @V4 DECIMAL(15,12);
    SET @V4 = 0.000000235059;
    DECLARE @V6 DECIMAL(15,12);
    SET @V6 = 0.000000002181;
    DECLARE @L0 DECIMAL(4,2);
    SET @L0 = 82.0;
    DECLARE @w DECIMAL(18,10);
    SET @w = (@Northing - @N0 + @S0)/(@k0*@r);
    DECLARE @of DECIMAL(18,10);
    SET @of = @w + (sin(@w)*cos(@w))*(@V0 + @V2*power(cos(@w),2) + @V4*power(cos(@w),4) + @V6*power(cos(@w),6));
    DECLARE @Rf DECIMAL(18,10);
    SET @Rf = @k0*@a/sqrt((1 - power(@e,2)*power(sin(@of),2)));
    DECLARE @EPrime2 DECIMAL(18,10);
    SET @EPrime2 = @Easting - @E0;
    DECLARE @Q DECIMAL(18,10);
    SET @Q = @EPrime2/@Rf;
    DECLARE @tf DECIMAL(18,10);
    SET @tf = tan(@of);
    DECLARE @nf DECIMAL(18,10);
    SET @nf = @ePrime*cos(@of);
    DECLARE @B2 DECIMAL(18,10);
    SET @B2 = -0.5 * @tf * (1 + POWER(@nf,2));
    DECLARE @B4 DECIMAL(18,10);
    SET @B4 = -1/12*(5 + 3 * POWER(@tf,2) +POWER(@nf,2) * (1-9 * POWER(@tf,2)) - 4 * POWER(@nf,4));
    DECLARE @B6 DECIMAL(18,10);
    SET @B6 = 1/360*(61 + 90*POWER(@tf,2) + 45*POWER(@tf,4) + POWER(@nf,2)*(46 - 252*POWER(@tf,2) - 90*POWER(@tf,4)));
    DECLARE @Latitude DECIMAL(18,10);
    SET @Latitude = (@of + @B2*POWER(@Q,2)*(1 + POWER(@Q,2)*(@B4 + @B6*POWER(@Q,2))))*180/(PI());
    DECLARE @B3 DECIMAL(18,10);
    SET @B3 = -1/6*(1 + 2*POWER(@tf,2) + POWER(@nf,2));
    DECLARE @B5 DECIMAL(18,10);
    SET @B5 = 1/120*(5 + 28*POWER(@tf,2) + 24*POWER(@tf,4) + POWER(@nf,2)*(6 + 8*POWER(@tf,2)));
    DECLARE @B7 DECIMAL(18,10);
    SET @B7 = -1/5040*(61 + 662*POWER(@tf,2) + 1320*POWER(@tf,4) + 720*POWER(@tf,6));
    DECLARE @L DECIMAL(18,10);
    SET @L = @Q*(1 + POWER(@Q,2)*(@B3 + POWER(@Q,2)*(@B5 + @B7*POWER(@Q,2))));
    DECLARE @Longitude DECIMAL(18,10);
    SET @Longitude = (@L0 - (@L/cos(@of))*180/(PI()))*-1;
    SELECT
    I_EventNumber
    FROM Incident
    WHERE I_tTimeDispatch > 'May 7, 2012'
    SAMPLE DATA:
    Here is some raw data in order to get you started. Please notice the MapX and MapY
    coordinates are VARCHAR because they are Florida State Plane projections. The goal is
    to take these and turn them into WGS84 longitude and latitude expressed as decimal
    degrees to be used in Google maps. NOTE: I can convert from VARCHAR to DECIMAL. I just can't figure out where to plug my database columns into the sql query to output a result.
    CREATE TABLE Incidents
    I_EventNumber VARCHAR(20)
    I_MapY VARCHAR(15)
    I_MapX VARCHAR(15)
    INSERT INTO Incident
    VALUES
    (FCW69, 0815312, 0672298)
    , (FCW70, 0833311, 0697870)
    , (FCW71, 0807747, 0699684)
    , (FCW72, 0801252, 0689469)
    , (FCW73, 0853491, 0692350)

    Here's a way to get the results, all as part of a single extensive query (this would probably be more suited for defining a VIEW, where you could join on the input table with the VIEW to incorporate the computed values.
    If you instead had a business situation where you might need to execute this logic from many different places, rewriting as a user defined function might be better.  Anyway, for the answer plus a demonstration of the power of CROSS APPLY to generate
    interim working values...
    Create_Sample_Data:
    Declare @Incident TABLE
    I_EventNumber VARCHAR(20), I_MapY VARCHAR(15), I_MapX VARCHAR(15)
    INSERT INTO @Incident
    VALUES
    ('FCW69', '0815312', '0672298')
    , ('FCW70', '0833311', '0697870')
    , ('FCW71', '0807747', '0699684')
    , ('FCW72', '0801252', '0689469')
    , ('FCW73', '0853491', '0692350') /* This insert is SQL 2008 syntax only.. do multiple inserts or a UNION for 2005 */
    AsQuery:
    Select *
    from @INCIDENT
    Cross Apply
    Select
    N0 = 0.0,
    E0 = 656166.6666666665,
    K0 = 0.9999411764705882,
    e = 0.0818191911198883,
    ePrime = 0.08208852110265381,
    V0 = 0.005022893948,
    V2 = 0.000029370625,
    V4 = 0.000000235059,
    V6 = 0.000000002181,
    L0 = 82.0,
    Easting = CAST(I_MapX AS DECIMAL(18,10)),
    Northing = CAST(I_MapY AS DECIMAL(18,10))
    ) as CAStatic
    Cross Apply
    Select m2sft = 1200.0/3937.0,
    EPrime2 = Easting - E0
    ) as CAComputed1
    Cross Apply
    Select S0 = 2692050.5001/m2sft,
    r = 6367449.14577/m2sft,
    a = 6378137.0/m2sft
    ) as CAComputed2
    Cross Apply
    Select
    w = (Northing - N0 + S0)/(k0*r)
    ) as CAComputed4
    Cross Apply
    Select
    [of] = w + (sin(w)*cos(w))*(V0 + V2*power(cos(w),2) + V4*power(cos(w),4) + V6*power(cos(w),6))
    ) as CAComputed5
    Cross Apply
    Select
    Rf = k0*a/sqrt((1 - power(e,2)*power(sin([of]),2))),
    tf = tan([of]),
    nf = ePrime*cos([of])
    ) as CAComputed6
    Cross Apply
    Select
    Q = EPrime2/Rf,
    B2 = -0.5 * tf * (1 + POWER(nf,2)),
    B4 = -1/12*(5 + 3 * POWER(tf,2) +POWER(nf,2) * (1-9 * POWER(tf,2)) - 4 * POWER(nf,4)),
    B6 = 1/360*(61 + 90*POWER(tf,2) + 45*POWER(tf,4) + POWER(nf,2)*(46 - 252*POWER(tf,2) - 90*POWER(tf,4)))
    ) as CAComputed7
    Cross Apply
    Select
    Latitude = ([of] + B2*POWER(Q,2)*(1 + POWER(Q,2)*(B4 + B6*POWER(Q,2))))*180/(PI()),
    B3 = -1/6*(1 + 2*POWER(tf,2) + POWER(nf,2)),
    B5 = 1/120*(5 + 28*POWER(tf,2) + 24*POWER(tf,4) + POWER(nf,2)*(6 + 8*POWER(tf,2))),
    B7 = -1/5040*(61 + 662*POWER(tf,2) + 1320*POWER(tf,4) + 720*POWER(tf,6))
    ) as CAComputed8
    Cross Apply
    Select
    L = Q*(1 + POWER(Q,2)*(B3 + POWER(Q,2)*(B5 + B7*POWER(Q,2))))
    ) as CAComputed9
    Cross Apply
    Select
    Longitude = (L0 - (L/cos([of]))*180/(PI()))*-1
    ) as CAComputedLatLong
    Notice that each subsequent CROSS APPLY depends on a "working value" column being defined in some previous cross apply, or the working query.  There are a few other options, such as leaving off the very last Cross Apply, and computing Longitude as part
    of the main query at the beginning, but it works either way.
    EDIT: P.S. - By the way, this query is based on the formula in the original poster's query.  My formula matches that formula, and I bet it's right (as far as the lat/long conversion), but it could be the formula for Soylent Green, and I wouldn't know any
    better... :-)

  • Prevent duplicate value being entered into a column

    How do we prevent user to enter duplicate value into one of the column of a multiple record block before we commit the form ?
    Can anybody help ?
    Thanks,
    Shu Wen

    Do you want the duplicate to be detected as soon as the item is validated ?
    If so, the only way I have found to do so is to maintain a copy of the contents of the block in a record group. Rather cumbersome and a few triggers needed, but I have one application where I had to do it. I have always found it restrictive that you cannot read values from other records without navigating to them. If anyone has found a better method I would be interested to hear.

  • Choice list in af:query turns into inputText when AM pooling is disabled

    Hi all,
    I have a choice list field in an af:query search area. This field is based on attribute FlagYN VARCHAR2(1) and is bound to a list of values.
    When AM pooling is disabled, executing the search makes that field loose its Display property and search operator original value: it turns into an inputText, the operator, originally set as "equal to" is now "less than" and the expected value is now the index in the choice list.
    What can be happening?
    Thanks
    JDeveloper 11.1.1.3.0
    Anyone has the same problem?
    Edited by: Marge on 02-sep-2010 3:02

    Hi,
    there are two bugs associated with bind variables in successors that I am aware of. One of them is supposed to be fixed in the next patch set, another one is still open. However, both problems were found with AM pooling enabled as well, so I don't know this is the same problem (though it sounds like). If you can, I suggest to create a reproducible testcase on one of the Oracle database schema, like HR or OE, and file a bug. If you don't have a time for or access to support, send the test case in a zip file (rename ".zip" to ".unzip") to the mail Id you find in my OTN profile. However, be aware that when I file the bug then it wont be visible for you, nor can it be escalated on your behalf. Anyway, at least it would get filed
    Frank

  • I have Find my Phone enabled. Could a thief switch off location services to stop it being tracked? If so, an update must place the location services and icloud into the restrictions menu to be protected by the pin to stop it being turned off????

    I have Find my Phone enabled on iphone and ipod. Could a possible thief switch off location services to stop it being tracked? If so, an update must place the location services and icloud into the restrictions menu to be protected by the pin to stop it being turned off, surely????

    Now find a way of stopping the thief removing the SIM, or simply turning off the phone or restoring it. 
    The "Find" feature is useful if you mislay the phone, but not usually of value if the phone is stolen.

  • How do I turn off automatic renewal of subscriptions eg to New York Times. AND can I be sure that when I download an update I am not being hooked into an on going subscription. Thankyou

    How do I turn off automatic renewal of subscriptions eg to New York Times.
    AND can I be confident that when I download an apstore update I am not then being hooked into an on going subscription.Thankyou

    Hi,
    I am using German OS therefore maybe the items are called differently in English:
    1) Go into the main menu
    2) Select "Alerts"
    3) select the Profile you like to adjust
    4) Select App Alerts
    5) Select Email
    6) You sould see your 3 mail accounts listed
    7) Select the one you like to "mute" and you can set everything (sound, LED, vibration etc. individually for this acount)
    Hope it helps
    Alex
    Please feel free to hit "Like" if my post was helpful :-) Thank You!

  • I was on the phone last night and my phone randomly turned off.  It will not come back on even when I have tried to hold the home button and the power button together while being plugged into the computer.  What do I do?

    I was on the phone last night and my phone randomly turned off. It will not come back on even when I have tried to hold the home button and the power button at the same time, while being plugged into the computer? What do I do?

    Plug it into power for at least 15 minutes.  If it doesn't automatically come on, try a reset... press the home and sleep (on/off) buttons until you see the Apple logo, ignoring the slider. Takes about 5-15 secs of button holding and you won't lose any data or settings.

  • My 5C has just done the most recent update, yet I can't turn it on without it being plugged into iTunes through a laptop. However, I don't have iTunes on my laptop because it's my school one. Ideas please?

    My 5C has just done the most recent update, yet I can't turn it on without it being plugged into iTunes through a laptop. However, I don't have iTunes on my laptop because it's my school one. Ideas please?

    If you are seeing the USB cord and iTunes icons on your screen something has gone wrong with the update. You will have to restore your iPhone. The only way to do this is to connect the phone to your computer that is running iTunes.

  • How to enter in the value of 'e' (i.e. 2.71828...) into a formula in Numbers?

    Is there a way to enter in the exact value of e into Numbers? When I just type e, Numbers thinks I'm reffering to column E.

    =PI() returns:
    3.14159265358979
    Regards,
    Barry

  • Unused xml tags being printed in xsl transformation

    Hi,
    I'm just starting out with xslt, and I am have a small problem with unused data being added into the html output from an xsl transformation. The data set is very small and the transdorm is not complicated, but when I do a
    <xsl:template match="aa/bb/cc">
    <title><xsl:value-of select"."/></title>
    </xsl:template>
    cc will be used as the title, but aa/bb/dd and aa/bb/ee will be printed to the output stream directly after the </title> as standard text.
    <title>cc</title>ddee
    I have include the xml, the transform and the html source recieved at the end of this mail.
    Any help would be appreciated.
    Cheers
    Simon
    <webpage>
      <project>
        <title>Katrin</title>
        <version>Version 1.0</version>
        <start_date>01/01/2003</start_date>
      </project>
    </webpage>
    <xsl:stylesheet version="1.0"
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
        xmlns:fo="http://www.w3.org/1999/XSL/Format">
        <xsl:output method="html"/>
        <!-- template rule matching source root element -->
        <xsl:template match="/">
            <html>
                <head>
                    <xsl:apply-templates mode="head"/>
                </head>
                <!-- Construct main body of page -->
                <body>
                    <xsl:apply-templates/>
                </body>
            </html>
        </xsl:template>
        <!-- Head -->
        <xsl:template match="webpage/project/title" mode="head">
            <title><xsl:value-of select="."/></title>
        </xsl:template>
        <!-- Body -->
        <xsl:template match="webpage/project/title">
            <h1><xsl:value-of select="."/></h1>
        </xsl:template>
        <xsl:template match="webpage/project/version">
            <div align="right" style="font-size : 8pt; font-family : Times serif; padding-top : 4; padding-bottom : 4; color : red"><xsl:value-of select="."/></div>
        </xsl:template>
        <xsl:template match="webpage/project/start_date">
            <div align="left" style="font-size : 8pt; font-family : Times serif; padding-top : 4; padding-bottom : 4; color : blue"><xsl:value-of select="."/></div>
        </xsl:template>
    </xsl:stylesheet>
    <html xmlns:fo="http://www.w3.org/1999/XSL/Format">
       <head>
          <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
          <title>Katrin</title>Version 0.101/01/2003</head>
       <body>
          <h1>Katrin</h1>
          <div align="right" style="font-size : 8pt; font-family : Times serif; padding-top : 4; padding-bottom : 4; color : red">Version 0.1</div>
          <div align="left" style="font-size : 8pt; font-family : Times serif; padding-top : 4; padding-bottom : 4; color : blue">01/01/2003</div>
       </body>
    </html>

    You had a couple of errors in your xsl. It should read something like:
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0">
    <xsl:template match="*|/"><xsl:apply-templates/></xsl:template>
    <xsl:template match="text()|@*"><xsl:value-of select="."/></xsl:template>
    <xsl:template match="*|/">
    <html>
    <head><title>Greeting</title></head>
    <body>Words of greeting:
    <b><i><u><xsl:value-of select="greeting"/></u></i></b>
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>
    This produces the result you are looking for:
    <html>
    <head>
    <title>Greeting</title>
    </head>
    <body>Words of greeting:
    <br>
    <b>
    <i>
    <u>Hello World.</u>
    </i>
    </b>
    </body>
    </html>
    null

  • XQuery syntax to evaluate math formula

    I want to evaluate a math formula inside of a function, so I can't use dynamic SQL.
    I found that the query on an XML-variable with a literal works well.
     DECLARE @sParsedFormula varchar(200);
     DECLARE @xFormula xml;
     SET @xFormula = '';
     SET @sParsedFormula = '1+2';
     SELECT @xFormula.query('3+3') , @xFormula.query('sql:variable("@sParsedFormula")')
    Output (1st value is correctly evaluated, 2nd not):
    "6", "1+2"
    I can't directly pass @sParsedFormula to the query otherwise I get "The argument 1 of the XML data type method "query" must be a string literal".
    What is the correct XQuery-syntax to evaluate the SQL:variable?
    Tx,
    Patrick

    You are obviously on the wrong track when you ask for the impossible.
    You can use sql:variable in XQuery to provide a value. You cannot provide an
    expression.
    If you want to pursue the set-up, your function will have to parse the expression and evalaute it. You can do this is in T-SQL, but it is not the best language for string parsing. Count on wast^H^H^H^Hspending quite a few hours on the development.
    If you do it in C#, undoubtedly it will be easier, and I would expect that you can find classes that performs the parsing and evaluation. This can reduce your development costs considerably.
    Of the languages I have worked with, there is one where the evaluting the expressions are dirt simple: Perl. Here you can just say
      $value = eval($expr)
    But running Perl code from SQL Server? Nah.
    If you want to do this in T-SQL only, it will have to be dynamic SQL. To avoid the cursor you can do somthing like:
       SELECT @sql =
         (SELECT 'SELECT ' + ltrim(str(id)) + ', ' + expr + ';' + char(13) + char(10)
          FROM   #temp
          FOR XML PATH(''), TYPE).value('.', 'nvarchar(MAX)')
      PRINT @sql
      INSERT #newtemp(id, value)
         EXEC (@sql)
      UPDATE #temp
      SET    value = n.value
      FROM   #temp t
      JOIN   #newtemp n ON t.id = n.id
    So, yes, XML had a place in your solution. But where you were looking.
    But note that with this solution, you will lose it all if one expression does not parse.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Headphones no longer work after being plugged into speaker

    Hi i purchased a ipod touch 5th generation 32 gb bundle from target just over a week ago which came with the iCoustic 20 in 1 Accessory kit Model No : IC184. After plugging the ipod into the supplied speaker this morning trying to listen to music it kept making stacic like noises and changing volume it was alwful to try and listen so gave up and went back to taking it off speaker and playing it back through apple headphones but now after being plugged into the speaker the headphones wont work its just a buzzing sound if you turn the volume up all the way loud the music will come back through headphones then when turning it down it cuts out again or if you manage to get the music it will stop after a couple of seconds. I have done a factory reset but it has made no difference.Please help have a very upset daughter it is frustrating do we take this back for a refund and get a new one if so how do we keep the music and photos etc she has on this one? Thankyou.

    - Try cleaning out/blowing out the headphone jack. Try inserting/removing the plug a dozen times or so.
    Try the following to rule out a software problem
    - Check also Settings > General > Accessibility > Hearing. Make sure that the sound balance is not set all the way to "R".
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iPod.
    - Make an appointment at the Genius Bar of an Apple store. Seems you have a bad headphone jack.

  • Its illegal to assign a XML value directly to the messageType variable

    I was recently working in JDeveloper 11g (11.1.1.7.0)  on an internal SOA project making some changes in the BPEL and noticed this message: Error(172): its illegal to assign a XML value directly to the messageType variable "InvokeFetchUpdatedUserId_FetchUpdatedUserID_InputVariable" I searched for this error message and didn't find anything.  The message is somewhat explanatory but I thought I would post the fix here just in case.  I modified my assign from the following:                                                                                                                           To this making sure to assign it to the underlying entity.                                                                                                                           Then it compiled just fine. Thanks, Tom

    In case if you are returning multiple value or with multiple columns then you have to use record or cursor to do that operation.
    satyaki>
    satyaki>ed
    Wrote file afiedt.buf
      1  declare
      2       cursor c1
      3       is
      4         select *
      5         from emp;
      6       r1 c1%rowtype;
      7     begin
      8       for r1 in c1
      9       loop
    10         dbms_output.put_line(r1.empno||' - '||r1.ename);
    11       end loop;
    12*   end;
    13  /
    7521 - WARD
    7654 - MARTIN
    7788 - SCOTT
    7839 - KING
    7844 - TURNER
    7876 - ADAMS
    7900 - JAMES
    7902 - FORD
    7934 - MILLER
    7566 - Smith
    7698 - Glen
    1 - boock
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:01.02
    satyaki>
    satyaki>
    satyaki>Regards.
    Satyaki De.

  • Is there a way to do a firmware update without being plugged into a power source?

    I have a Macbook 2GHz Intel Core 2 Duo and the indicator light on the Magsafe power cord is not lighting up. I know the cord works because I have tried it on a different computer but it is only this macbook that it doesn't work on. I have reset the SMC. I do need to do a firmware update but when I try to do the update it the firmware it will not let me update because the computer doesn't know that its connected to a power source. When I look at the battery life indicator on the right hand corner it says that its calculating but never changes.
    I was using the computer running on battery life and it turned off. I was able to turn the computer on. The computer powers on and off but i'm assuming its going to run the battery power. I don't have another battery to try on this computer. Are there any suggestions?
    Firmware update 1.4 is what i'm trying to install

    Is there a way to do a firmware update without being plugged into a power source?
    No

  • Creative Zen's clock gets reset after being plugged into the w

    I bought the wall recharger for my Creative Zen 8 GB, as I had another MP3 player (SanDisk Sansa e260) die mysteriously after being plugged into the computer's USB port.
    The only complaint I have is that if I leave the Zen plugged in, after it finishes recharging, the screen goes blank and when I unplug it and turn it on, the clock and calendar are reset to their default (March 7, 2008).
    I am on a Vista Home Premium computer (no service pack). I have the latest the firmware on the player and use the latest version of Media Explorer.
    Does this happen to anyone else who uses the wall charger?

    Hello, I read your post & am replying to it because I too am having a clock syncronization issue but mine is not related to plugging it into a wall charger. My date AND time resets too to April 7, 2008 for some reason. I reset it yesterday to the correct date and time for yesterday (May 8, 2008) and now it is reset back to the previous date I mentioned. It couldn't even keep the time/date accurate for 24 hours! My battery was already charged however several days ago and is no where near being finished (it says half full). My firmware version is .2.0.
    Anyhow I know this doesn't help you at all, but at least you're not alone on this issue...mine doesn't originate with charging it though...maybe that will help you at the very least.
    Drew

Maybe you are looking for

  • Contacts Synching problem with windows address book

    today i updated my itunes to ver 10, and updated my iphone os to ver 4.1, when i tried synching my contacts to windows address book, nothing happens, before today's update, i used to get a message while synching the contacts, that say eg. 25 contacts

  • For PDF Printing in Application Builder 3.0.1

    Hi, Recently upgraded to Application Builder 3.0.1.00.08 I've created a report, which i want to open as a pdf. I downloaded bipublisher_windows_x86_101332_disk1 zip file and installed as per the link mentioned under. http://www.oracle.com/technology/

  • Zen Vision:M Questi

    Did creative announce that they will release ZVM's with bigger hard dri'ves?and?Is it possible to manually upgrade the harddri've in the 30GB ZVM?

  • COMING SOON: Digital Library

    We'll soon be launching Digital Library - a new way for you to download and manage digital content from BestBuy.com.  With Digital Library, you'll get: A faster and more reliable downloading experience Better access to your downloadable digital colle

  • Changing smtp port

    Dear All, I am currently running messaging server 6.2 and i want to change the smtp port to 75 Are there any bad impacts on this, or can i directlt change it? Is this the only configutil parameter that i should change: service.http.smtpport ? Regards