N95-1 fw 31.0.017...funny bug!!!

SInce fw update to version 31, I have a nice bug...each time I close slider photo button e gallery button (on right side) flash for two times alternatively...this is a bug but it's funny...let me know if also you have this flashing
K + C = 1

Ah ok...thanks for the info...curisousity satisfied...
Bye
Carlo
Moderator note - non-English content removed.
Message Edited by michaels on 16-Mar-2009 10:39 AM
K + C = 1

Similar Messages

  • Need help: URGENT : N95-1...V21.0.016 BUGS! WHEN N...

    now after get my N95-1 upgraded to latest V21.0.016, i hav to on my phone without memory card insered first only can start my phone smoothly...after thst i put my memory card by way of "hotswap" into the phone...if i just on my phone with memory card in, u all know my phone will wait until 10 to 15 minutes to boot up & access menu...when press *#0000# or *#06#, the phone will not shown the details, but if i on my phone without memory card, it will show ...my 4GB memory card is no problems at all...moreover i only restore setting to my phone & all my file were saved to memory card...this indicate there is firmware system hav problem in boot up to get access to memory card...pls pls solve this serious bugi..u know my memory card always swap in & out will spoil 1t !

    hi...
    I understand your predicament... Its awful 2 experience such a thing.
    By the way, i am also using n95 v21 and a sandisk 4gb card.
    If i understand it right, after you updated your firmware, you restored the back up settings. And you also mentioned that problem only occurs when you are inserting the memory card.
    It doesn't necessarily mean that your memory card is faulty. When i still have v12 and i updated it to v20, i was using a 2gb and it happened to me, so what I did was 2 copy the files stored in my memory card to computer, put back mmc to n95, format mmc and then manually copy back my files from computer to n95/mmc. And it worked for me!
    Hope this works for you too.
    CeS
    "The best index to a person's character is how he treats people who can't do him any good, and how he treats people who can't fight back"

  • Funny bug in pl sql code

    Hi,
    I have written a code to upload data from csv file to oracle table. it gives me a funny error. I have given below the sample contents of .csv file
    "4951","TCSPL (TRADING A/C)","470","TISCO",20050419,"P",362.6550,212,0.00
    "4951","TCSPL (TRADING A/C)","470","TISCO",20050419,"S",361.7500,212,-191.86
    "4951","TCSPL (TRADING A/C)","477","ASHOKLEY",20050928,"P",28.5000,200,0.00
    "4951","TCSPL (TRADING A/C)","477","ASHOKLEY",20050928,"S",28.4960,200,-0.80
    for the first time if i run the sql code it uploads first 2 records and does not upload third record, if i change the figure of =-191.86 to 191.86 (if i remove - mark ) then it uploads all the records, if i reverse it back it does not the third record, the structure of the table is like this ( the data column where this data get inserted is number(15,4) datatype)
    this type of problem is happening with that perticular row only, though several such kind of combination is there in the csv file.
    sQL> desc UNITISCLTRXN
    Name Null? Type
    CLCODE VARCHAR2(10)
    CLNAME VARCHAR2(120)
    SCCODE VARCHAR2(10)
    NSESYMBOL VARCHAR2(10)
    TRDDATE DATE
    PURSAL VARCHAR2(1)
    RATE NUMBER(15,6)
    CLQTY NUMBER(10,2)
    PROFIT NUMBER(15,4)
    the sql code i have written is as below
    PROCEDURE upload_unitiscltrxn IS
    file_id text_io.file_type;
         crec unitiscltrxn%rowtype;
    linebuf VARCHAR2(1000);
    i number:=1;
    len number:=0;
    spos number:=0;
    tpos number:=0;
    var varchar2(1000);
    mon varchar2(5);
    cnt number:=0;
         errnum NUMBER := ERROR_CODE;
         errtxt VARCHAR2(80) := ERROR_TEXT;
    errtyp VARCHAR2(3) := ERROR_TYPE;
    begin
              Delete from unitiscltrxn;
              File_id := Text_IO.Fopen('M:\UNITIS\db\final.csv', 'r');
         Text_IO.Get_Line(File_id,linebuf);
              cnt :=1;
              while linebuf is not null loop
         IF CNT<>1 THEN
              Text_IO.Get_Line(File_id,linebuf);
         END IF;     
              cnt :=1+cnt;
         len := length(linebuf);
         spos :=1;
         i:=1;
         tpos :=0;
         var:='';
         mon:='';     
         while i < 10 loop
         tpos := instr(linebuf,',',spos);
         if tpos >0 then
              var :=substr(linebuf,spos,tpos-spos);
         else
              var :=substr(linebuf,spos);
         end if;     
              ----------get values into variable.------------------     
         If i =1 then
              Crec.clcode := Replace(var,'"','');
         ElsIf     i =2 then
              Crec.clname := Replace(var,'"','');
         ElsIf     i =3 then
              Crec.sccode := Replace(var,'"','');
         ElsIf     i =4 then
              Crec.nsesymbol := Replace(var,'"','');
         ElsIf     i =5 then
              select Decode(substr(var,5,2),1,'JAN',2,'FEB',3,'MAR',4,'APR',5,'MAY',6,'JUN',7,'JUL',8,'AUG',
              9,'SEP',10,'OCT',11,'NOV',12,'DEC') into mon from dual;
              Crec.trddate := to_date(substr(var,7)||'-'||mon||'-'||substr(var,1,4),'DD-MON-YYYY');
         ElsIf     i =6 then
              If var = '"P"' Then
                   Crec.pursal :='P';
              Elsif     var = '"S"' Then
                   Crec.pursal :='S';
              end if;     
              --Crec.pursal := var;
         ElsIf     i =7 then
              Crec.rate := var;
         ElsIf     i =8 then
              Crec.clqty := var;
         ElsIf     i =9 then
              Crec.profit := var;
         End If;     
         i:=i+1;
         spos:=tpos+1;
         end loop;
         INSERT INTO UNITISCLTRXN VALUES(crec.clcode, crec.clname ,crec.sccode ,crec.nsesymbol,
         crec.trddate,crec.pursal,crec.rate,crec.clqty,crec.profit);
         text_io.new_line(file_id, 1);
         End loop;     
         EXCEPTION
         WHEN no_data_found THEN
         Text_IO.Put_Line('Closing the file...');
         Text_IO.Fclose(file_ID);
    WHEN OTHERS THEN
         Message(errtyp||'-'||TO_CHAR(errnum)||': '||errtxt||'FF'||DBMS_ERROR_CODE);
         Message(errtyp||'-'||TO_CHAR(errnum)||': '||errtxt);
    END;
    END;
    Thanks
    Uday

    Hi
    Try to debug you procedure inserting a better exception handling and some dbms_output.put_line.
    E.g.
    ElsIf i =9 then
    Crec.profit := var;
    dbms_output.put_line(var || '  -  ' Crec.profit);
    End If; Try to put the exception handling in the loop ... while i < 10 loop ... .
    I don't think that it's an Oracle bug. It's a human error in your code!
    Bye, Aron

  • N95-1 firmware v31.0.017, anyone not suffering fro...

    it seems since i updated my firmware my date keeps jumping forward 2 days. i have a weekday alarm set and i switch the phone off during the night. i suspect this combination is something to do with the problem?
    Nexu 5

    It's a well known bug with v31 on the N95 and N82.  There has been several posts about it.
    The only workaround is to leave the phone switched on at night or manually set your alarm after midnight.
    The N96 also suffered from this but it was fixed in v12.
    All you can do is report it to nokia using the "contact us" link and hope that they fix it.

  • N95 update to 31.0.017

    I have updated my N95 from 21.0.016 to 31.0.017. It went OK, as it says in updater application. But when I tried to restore back up all contacts, messages and settings were lost.
    What can I do to restore at least contacts?

    Hi sinisatomasevic,
    It seems that way, I managed to boot up my N95 one last time just as the courier from Orange arrived to exchange handsets. I quickly connected it to my PC and used PC suite which backed it up successfully.
    When I tried to restore the backup, it restored nothing but as I said before, I was able to restore a much older phone based memory card backup. If I'd done this then in theory I'd have lost nothing.
    It may be possible to use utilities like Noki to drag the Contacts and SMS information out of the .NBU file, there's a trial version that's free to download.
    Hope that this helps.
    Alun.
    N8-00 (Product Code: 059C5Q8 (UK Generic)) FW Belle (111.030.0609.377.01)
    Orange 5.1, NK702, 7110, 8310, 7250, 6230, N70, N95-1, N86 8MP, N8-00

  • Final Cut Pro X & ProRes Major but Funny BUG

    This must be the weirdest BUG I have ever experienced... And the most difficult to find. I found it via coincidence ;-)
    I playback and use ProRes 4444 inside of FCPx. And generally there is NO problem doing so. Until yesterday...
    In After Effects I converted a bunch of H.264 Canon 5DMKii movies, after denoising them, to ProRes4444.
    I imported the movies into Final Cut X and immediately noticed that they were jerky in playback. So I loaded the original files and wanted to see whether they were jerky as well. They were not... Here comes the funny part...
    The Original H.264 had AUDIO on them the ProRes version I had stripped the audio from as I did not need it. To better compare the two files (Don't know why I did it but I did) in the timeline I just copied the audio from H.264 file over underneath the ProRes4444-jerky file. Then I compared again. This time the ProRes was playing smooth as silk. I could NOT believe my eyes. I was cursing at the Mac but after smoking a cigarette and contemplating, I went back an deleted the audio from underneath the Prores 4444 file. Back to jerky. I put the audio back - jerkiness GONE...
    So I did some more testing...
    I took a completely different clip and imported that into After Effects.
    I did the same denoising to it and exported TWO versions to PRORES 4444.
    1 with Audio and 1 without it...
    Then imported the two into FCPx...
    We are talking TWO identical files here expect one has audio to it.
    The one with audio played back silky while the one without was jerky.
    I copied the audio (any audio will do) underneath the jerky one and it stopped jerking around.
    I opened the two test files in QuickTime 7 and 10 and NONE of them were Jerky... This issue seems to pertain to FCPx only....
    So if any of you export from AE to ProRes4444 and the guy on the FCPx station gets agitated because of the jerkiness,
    before you blame adobe (like I did) tell him to just copy some sound underneath the sound-less video clip. That will take care of the problem,
    untill Apple fixes the problem ;-)

    Glad you found a solution, AtonMusic! Did you bring the issue up to Apple?

  • Final Cut Pro X & ProRes Major Funny BUG - Pertains to AE also !!!

    This must be the weirdest BUG I have ever experienced... And the most difficult to find. I found it via coincidence ;-)
    I playback and use ProRes 4444 inside of FCPx. And generally there is NO problem doing so. Until yesterday...
    In After Effects I converted a bunch of H.264 Canon 5DMKii movies, after denoising them, to ProRes4444.
    I imported the movies into Final Cut X and immediately noticed that they were jerky in playback. So I loaded the original files and wanted to see whether they were jerky as well. They were not... Here comes the funny part...
    The Original H.264 had AUDIO on them the ProRes version I had stripped the audio from as I did not need it. To better compare the two files (Don't know why I did it but I did) in the timeline I just copied the audio from H.264 file over underneath the ProRes4444-jerky file. Then I compared again. This time the ProRes was playing smooth as silk. I could NOT believe my eyes. I was cursing at the Mac but after smoking a cigarette and contemplating, I went back an deleted the audio from underneath the Prores 4444 file. Back to jerky. I put the audio back - jerkiness GONE...
    So I did some more testing...
    I took a completely different clip and imported that into After Effects.
    I did the same denoising to it and exported TWO versions to PRORES 4444.
    1 with Audio and 1 without it...
    Then imported the two into FCPx...
    We are talking TWO identical files here expect one has audio to it.
    The one with audio played back silky while the one without was jerky.
    I copied the audio (any audio will do) underneath the jerky one and it stopped jerking around.
    I opened the two test files in QuickTime 7 and 10 and NONE of them were Jerky... This issue seems to pertain to FCPx only....
    So if any of you export from AE to ProRes4444 and the guy on the FCPx station gets agitated because of the jerkiness,
    before you blame adobe (like I did) tell him to just copy some sound underneath the sound-less video clip. That will take care of the problem,
    untill Apple fixes the problem ;-)

    Glad you found a solution, AtonMusic! Did you bring the issue up to Apple?

  • A funny bug with the pair Numbers + AppleScript

    *Bug ID# 7973914*
    Summary:
    Trying to delete rows in a Numbers table thru AppleScript issue an erroneous error.
    Steps to Reproduce:
    Create a new Numbers document and run this script :
    set t_name to "testIfEmpty"
    tell application "Numbers" to tell document 1 to tell sheet 1
    if not (exists table t_name) then
    make new table with properties {name:t_name, row count:1, column count:1}
    end if
    delay 0.2
    set tProps to get properties of table t_name
    set nbr to (row count of tProps) - 1
    if nbr > 0 then
    try
    repeat nbr times
    delete row 1 of table t_name
    end repeat
    on error errMsg number errNbr
    display dialog "What's the need for this error ?" & return & return & "error number : " & errNbr & return & errMsg & return & return & "Click the OK button" & return & "and everything will behave flawlessly." buttons {"OK"}
    end try
    end if
    set nbr to (column count of tProps) - 1
    if nbr > 0 then
    repeat nbr times
    delete column 1 of table t_name
    end repeat
    end if
    end tell
    Expected Results:
    As we may delete the rows by hand, the script is supposed to do its job with no error.
    Actual Results:
    When it remains two rows, the script issue an error.
    When we click the OK button, it continue and it does what it was designed to do.
    Regression:
    At this time, in real life I keep only :
    try
    repeat nbr times
    delete row 1 of table t_name
    end repeat
    end try
    in the script but I don't like to encounter a meaningless error message
    May you get rid of that ?
    I wish to add that I am unable to think that getting a 2 * 2 cells table when asking for a 1 * 1 one is a normal behaviour !
    Yvan KOENIG (VALLAURIS, France) mercredi 12 mai 2010 17:09:37

    For sure, with remove there is no error message
    but the dictionary is clear :
    A row, as well as a column is an item.
    I would accept that the app refuse to execute the command delete row x or delete column y.
    It accepts to delete rows 150 thru 3 but when there are only two rows, it refuses to delete one.
    In my code, I delete row 1 because I want a table with only a standard cell.
    There is no logic in the fact that I may delete column 1 with no errror message but can't do the same with row 1.
    The proof that there is no reason is of course that with the try / end try enclosing the loop, the row is correctly delete. The script just ignores the reported error.
    It's always wrong to flag an error when there isn't one.
    The dictionary describes the function duplicate which is supposed to apply to items.
    I was grinding when I discovered that it refuses to duplicate a table or a sheet but at least, it's concistent. It doesn't do 99% of the job and claims "you are fool to ask me to do that" for the last percent.
    Delete / Remove isn't the unique odd pair.
    I got the same kind of problem in several apps with Copy / Duplicate.
    Sometimes they behave the same. Sometimes, one is completely rejected
    and, worse case, sometimes one of them behave well most of the time but not always.
    I think that it would be correct to
    (1) edit the code so that both behave correctly in 100% of cases
    or
    (2) edit the code so that the 99% one completely reject the call
    This said, I'm definitely pig-headed but I'm not completely foolish so,I will edit my script and use Remove
    PS :
    I added these two lines to my report :
    I forgot to write that replacing Delete by Remove get rid of the error message.
    But there is no reason to issue one with delete.
    Yvan KOENIG (VALLAURIS, France) mercredi 12 mai 2010 18:33:07

  • Funny bug in ConfigManager

    I successfully use the oracle.iam.configservice.api.ConfigManager to manage user-defined attributes for users. In theory the same service allows to manage user-defined attributes of organizations either. But for organizations (or any other objects allowing user-defined attributes), when I add an attribute, the new column is always created in the USR table (instead of ACT table for organizations).
    The bug exists in the 11.1.1.3. Does anybody knows if it was fixed in more recent releases?

    Fixed in OIM 11.1.1.5

  • Funny bugs with Time Machine connecting to MacBook when reboot

    Found a bug for Time Machine.
    Reboot with TM disk connect to the MacBook. Most of the time, there will be no show of TM Disk on the desktop and connect thumb drives will not detect too. And do a normal shutdown, I can still feel the warm air venting out from the MacBook.
    Have to remove the battery for a few seconds, replace it back and power up. Then everything will back to normal. If reboot with thumb drive connect, such symptoms will not appear.

    dilagan wrote:
    i attempted to backup the imac with time machine to an external hard drive, it began backing up, stopped and I got the same error message: "time machine error unable to complete backup an error occurred while copying files." Little help!
    Yes, that message is not some of Apple's best work.
    Most likely, there's a damaged/corrupted file that Time Machine is choking on. See #C3 in [Time Machine - Troubleshooting|http://web.me.com/pondini/Time_Machine/Troubleshooting.html] (or use the link in *User Tips* at the top of the +Time Machine+ forum).
    If you're getting a different message from the Pro, see #C2.

  • Funny bug in SQLDev 2.1EA - tables with same name...

    Hi,
    i opened two session in SQLDev 2.1EA, on two distinct instances.
    These sessions are open against the same user and i am clicking on a table with the same name.
    This happens only when the "pin" icon is not set.
    Apparently SQLDev doesn't not distinguish between the two connections when it comes to display the object attributes like columns, data, indexes and so on.
    So, practically, if i click on object 1 (instance 1), click on data tab, then i click on object 1 (instance 2), i still see the data for instance 1, no matter if i ask to refresh.
    This doesn't happen if i open each object in a separate tab.
    This happens on SQLDev on Mac OS X.
    Flavio
    http://oraclequirks.blogspot.com

    Sorry to drop in, but I suppose many have this setup: the same users/connections on both development and production databases.
    However I'm not able to reproduce now on my 10g DBs, I did see the same problem a couple of versions ago (when I was on 9i), but AFAIK that got fixed. Maybe regression anyway?
    Regards,
    K.

  • Media Key Problem - N95 V31.0.017

    Hi,
    after updating my N95 to version 31.0.017 some strange thing happened - all shortcuts in the main window didn't work. so i restored factory defaults and all is well.
    Except:
    when pressing the media key, the icons load and the sound plays but as soon as it is supposed to load the background (fuzzy picture of someone and the sky) the menu closes and returns to the phone regular wait screen.
    What to do?
    N95-1 V31.0.017

    Happens to my N82, too - the Multimedia menu closes immediately after opening. Happens by no obvious reason (though I've noticed that most often the bug occurs after playing MP3s). A phone restart fixes the things, though. Does restart help you? If not, you can write to Nokia and let them knwo of the problem (I think I've sent them an e-mail). Though it will not directly help you, it might urge them to release an update
    Message Edited by kamenlitchev on 19-Jan-2009 05:47 PM
    Ericsson T10i -> Nokia 7110 -> Siemens C45, C55, M55, M65 -> Nokia 6131, N73, N82 -> HTC Wildfire, Desire HD -> Nokia Lumia 800 -> HTC Desire X -> Lumia 820 -> Sony Xperia SP -> Lumia 925 + Sennheiser CX 500
    If I've helped, use the Kudos button to thank

  • N95 V20 Welcome Note/Logo BUG!

    Hello Everyone
    After I upgraded to V20 from V11, I have this bug. Welcome Note /Logo does not work properly anymore.
    Forexample; If I write a text to show up when the phone boots, some times (one in 10) it does not show up, the blue NOKIA logo appears then goes right in to the standby screen!
    Similarly, sometimes even my default "HandShake" screen is skipped by the phone, and the phone goes right in to the standby screen...
    Anyone else is experiencing this? Should I be concerned? I re-installed the firmware twice and it is still doing this.
    Thanx.

    It's nothing to do with the year, it's just a bug that appeared in recent firmwares.
    The N96 had the bug in v10 and v11 but it was fixed in v12.
    The N95, N95 8GB and N82 all have this bug in v31. I believe the 6110n also has this bug.  There have been many posts about it already this year.
    The issue is caused by the alarm clock and only effects users that set the alarm before midnight and switch their phones off.
    Can you provide any links to any posts on this forum that shows a 5800xm with this issue?  Some 5800xm's have an issue with losing a few minutes every now and then but it's not the same bug as the other models.
    Message Edited by psychomania on 13-Mar-2009 03:28 PM

  • Nokia N95 (1st edition) and 9 key

    Hey all,
    My girlfriends N95 has a very funny bug. I'm still not sure if it is a hardware issue or a sofware issue. Th eproblem is as follows. After x amount of time (sometimes a day, sometimes 2 hours) the 9 key  on te numeric keypad will act like the red "hang up" key. When typing an sms message the message is discarted and the phone goed back to th ehome screen.
    Th efunny thing is that this is usually solved by restarting the phone. I've performed a hard-reset on the phone last night, but that didn't solve the issue. After the hardreset a number of items were still on the phone (like appointments and contacts) so I'm not sure if it has actually fully reset the memory of the phone, or just restored all factory settings.
    Any suggestions?

    Hmm that is rather odd.
    When you did a hard reset, did you still have your memory card in the phone?
    I'd suggest you formatted your memory card (back up what you want from it first obviously), but don't restore any data for a few days and see if the problem still continues, maybe some kind of dodgey file is on your memory card.
    If that doesn't change anything, perhaps a trip to a NCC is in order

  • IPhone 5, iOS7 anyone else have these bugs?

    I know other people are having issues with iMessage, my phone is turning iMessage off with out my consent. The weird thing is though; I’m not receiving text messages from half my contacts that use iMessage to send me text. They think I’ve been ignoring them for days, I have miss 6 days’ worth of communication from people. Shouldn’t I receive the text but as a SMS message from them? From their side the iMessage goes through.
    When “scrolling back” to a position in my text, to edit a word, the magnifying glass appears and then should help place the cursor to the position I need. Well it’s moving the cursor through the text, but after a second or 2 the magnifying glass freezes, and the text messaging app doesn’t respond for 5 - 10 seconds.
    Funny bug, but not a REAL problem, play a video or go to a picture in your album, try to zoom out, keep your fingers on the screen and rotate the image or video, it does some weird things, I’m assuming they wanted to allow you to zoom out to close the image but it doesn’t work so well in practice.

    I was having the same issue with iPhone 5 and iOS 7.0.4  (using the magnifying glass freezes the phone for a few seconds, buy only inside the iMessage app), and I just found the solution!
    There is no need to reset the phone or install updates (in fact, the issue is not related to a specific iOS version).
    First of all, you can replicate the issue knowing that:
    1. When composing a text in iMessage, if you use the magnifying glass, you will see these options: Select, Select All, Paste
    2. As you may know, you can copy a picture or a video in the "Photos" gallery and paste directly in iMessage to send it as SMS.
    3. When you copy something, iOS keeps it in memory, even if you did it days ago
    So, what happened is simple (in my case, but I think yours too). Two weeks ago, I copied one of my videos in the Photo gallery (for mistake) and I totally forgot about it. Then, every time I used the magnifying glass in iMessage, the "Paste" option was getting ready to past the video in it (freezing the screen for a few seconds, probably because it was a huge file).
    MY SOLUTION: write something in iMessage, like "hello", use the magnifying glass, press "Select All" and then "Copy". Done! You just replaced any huge file/image/video that you had in memory with the text "hello", and now your magnifying glass will work like a charm!
    Hope this help!
    Roberto

Maybe you are looking for

  • Voice memos iPhone

    I usually don't have problems with the voice memos app, but oneve I've closed the app before my voice memo could be saved properly. Now if I tap "play" it doesn't go on even though the voice wave and all the informations about it are there. Can I do

  • Music shows/plays in itunes but is missing in explorer folder

    Itunes runs perfectly (knock on wood). However when I go to my library folder in explorer there are no music files there. Just three folders (Compilations, Itunes, Sample Music). Everything in the Itunes folder looks like system files. Where are all

  • Photo App Crashes when I try to go to the project tab...

    All the way through the betas and now with the final release of the Photos App, my app crashes when I try to go to the "projects" tab. When I first started using it, it worked fine. I was able to make a new slide show but when I tried exporting it, t

  • Slide Show visible in FF but not IE

    The widget works in other layouts I've tried but for some reason it does not display in IE. Firefox works fine but IE shows a Black Screen... all though the control buttons seem to work fine there is no image... Any help would be greatly appreciated.

  • How to capture all the values(occurrence) using Extraction Rules(correlation) in VSTS web test?

    Hi,   I am using VSTS 2010 for performance testing and have a question about Extraction Rules functionality.  Requirement below. Example : Server Response <a>1</a> <a>2</a>  <a>3</a> <a>...</a> we need to capture all the values with same left and rig