Lock code not working for Nokia 5700

i tried formatting my phone today and when they asked the lock code i tried entering 12345 which is the default one, but it is not working.
when i go to change the lock code and when i enter 12345 there they are accepting it and asking me to enter new lock but when i enter the new one and confirm it they are saying as "code error ".
can anyone help me to reset my lock code or fix this problem somehow.
and i am also facing the problem of messages going to outbox saying "you have to delete some data 1st and memory is full " . But there is lot of space left in my phone memory and memory card . tried usign both but still facing the same problem .

Sometimes networks change the lock code but if this is the case the code should be printed on the label on the box.
If you changed the lock code and can't remembr it, you can have it reset at any Nokia Care Point. You may be asked for proof of purchase so bring it with you.
On a few models a software update or deep reset will reset the lock code. You could try this to see if it works on your phone. You need to backup your phone before doing so.
 You can find your nearest Nokia Care Point at:
For UK
http://www.nokia.co.uk/A4228006
For Europe:
http://europe.nokia.com/A4388379
For Asia-Pacific
http://www.nokia-asia.com/A4416070
Elsewhere:
http://www.nokia.com select your country, go to the support section, then select repair.

Similar Messages

  • Style Code Not Working for Read Only Users !

    Hi 
    Can anyone help us with this issue. We have created some special Styling code in order to hid the Quick Launch on the home page of our main SharePoint site. The Styling works no problem at
    all for users with edit rights, however we found that the styling did not work for users with read only access.  What we found was that if we switched on the "Edit Items  -  Edit items in lists, edit documents in document libraries, and
    customize Web Part Pages in document libraries." in the List Permissions for the Permission Levels for the Read Access group, the Styling then works no problem at all. HOWEVER it then gives those users the ability to EDIT the site page, as it then
    puts the Edit option on the page top right for the user to click and then mess up the web page, which we can not permit. 
    SO..... How do we get this styling to work for ALL user types ?

    Hi,
    This usually happens when the CSS file is not published or approved, please check it.
    If the CSS files uploaded in the Style Library, please check whether you had to check in those CSS files or not.
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Lock button not working for iPhone4

    Hi All,
    My lock button not working from last 2months, I am using assistive touch for time being.
    I bought my mobile in UK 1year back, currently i am staying in India.
    My real problem is, recently i visited apple store. The guys in the store are saying, it is against to their law to serve or repair mobiles which were bought in other country..
    I think this is rediculous.. Just i need some information how to fix it or how to contact the correct person regarding this POOR service.
    Thanks
    Rajesh

    No. The warranty is only valid in the country of purchase. All service for iPhones in UAE is provided by the supported carriers. You can find a list here: http://support.apple.com/kb/ht1937
    If you did not purchase it from one of the carriers listed, then you probably purchased an illegally imported gray market phone.
    Check Settings>General>About. What does it say for Model #?

  • Adobe AIR for Android as3 codes not working for this one project

    I'm trying to use Accelerometer in my flash game, which works for every other project I'm working on, but for some reason on this one project if I try using it I get errors, using the same code i've used before, such as this. 
    1046: Type was not found or was not a compile-time constant: Accelerometer.
    1180: Call to a possibly undefined method Accelerometer. 
    This is a fairly old file, not that old, so are there files I need to add to it to get it to work, or settings I need to change? This is very frustrating, I don't know what the problem possibly could be. Can anybody help me?

    The error message is indicating it cannot find the class.  Make sure you are importing it:
         import flash.sensors.Accelerometer;

  • Pl/sql Clob code not works for database table but works for collection!

    Dear friends
    I modified pl/sql code to insert large data for clob column ın ORACLE APEX , It works for collection (I modified it to work for both)
    the modified code is blod
    declare
    aClob1 clob := empty_clob;
    aClob2 clob ;
    begin
    dbms_lob.createtemporary( aClob1, false, dbms_lob.SESSION );
    for i in 1..wwv_flow.g_f01.count loop
    dbms_lob.writeappend(aClob1,length(wwv_flow.g_f01(i)),wwv_flow.g_f01(i));
    end loop;
         apex_collection.create_or_truncate_collection(p_collection_name => 'CLOB_CONTENT');
         apex_collection.add_member(p_collection_name => 'CLOB_CONTENT',p_clob001 => aClob1);
         htmldb_application.g_unrecoverable_error := TRUE;
    select cc into aClob2 from tt where id = 21 for update ;
    dbms_lob.write(aClob2,Length(aClob1),1,aClob1); commit;
    end;
    but the charcters more than 8100 not be saved to database clob column !
    regards
    Edited by: Siyavus on Jan 30, 2009 5:26 PM
    Edited by: Siyavus on Jan 30, 2009 5:29 PM

    Dear Thomas
    dbms_lob.write(aClob2,*dbms_lob.getlength*(aClob1),1,aClob1); commit;
    I tried it ( dbms_lob.getlength(aClob1) ) but the result is the same
    regards

  • Action Script 3 code not working for start and stop button?

    Ok so I have this simple animation I created of a circle that moves from one side of the stage to the other. I have added a new layer and called it buttons. On this layer I have added 2 buttons. One for start and another one for stop. The purpose is to get my circle to move from one side of the stage to the other but be able to use my buttons so that I can start and stop the animations at random times during playback. I fixed all my compiler errors now the problem lies in that everytime I click the start or the stop button I get an output error. I have a 3rd layer in which is titled actions and this is where all my code is posted. I removed that layer and placed my code in the first frame of the buttons layer to see if this would change anything but I still get the same output errors. So I just added back my actions layer. What could I be doing wrong? I have made sure to name all my movie clips and buttons correctly and I even added an instance name to them.
    Here is my code and the errors I am getting when I press the play and stop button on test-
    start_btn.addEventListener(MouseEvent.CLICK, startCircle);
    stop_btn.addEventListener(MouseEvent.CLICK, stopCircle);
    function startCircle(e:MouseEvent):void{
        circle.play();
    function stopCircle(e:MouseEvent):void{
        circle.stop();
    green_btn.addEventListener(MouseEvent.CLICK, greenCircle);
    red_btn.addEventListener(MouseEvent.CLICK, redCircle);
    function greenCircle(e:MouseEvent):void{
        circle.play();
    function redCircle(e:MouseEvent):void{
        circle.stop();
    Here are my output errors-
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at exercise2_fla::MainTimeline/redCircle()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at exercise2_fla::MainTimeline/greenCircle()

    ok so my circle is my movie clip and it is titled circle and the instance name is circle. Am I supposed to change MovieClip to circle? I put the code at the top of my actions script but for some reason it did not work. I did change play to stop and it got the movie clip to stop when I do test movie but my buttons still do not work. So I changed stop back to play. Strange.
    I did try changing MovieClip to circle but that did not work so I did Circle with a capital C and that did me no good eigther.
    I meant to add that I did get an error that said- 1180 Call to a possibly undefined method circle.

  • AT commands not working for nokia E63 (Must Reply)

    Hi
    I am trying to read SMS from my Nokia E63 via hypertermianal program and my phone is connected through Bluetooth.
    When I send sms , it works perfect but on receiving sms I am getting error on 
    at+cpms="sm"
    ERROR
    at+cpms=?
    +CPMS: (),(),()
    at+cpms=?+CPMS: (),(),()
    at+cgml="REC READ"
    Please guide ? if my phone does not support AT commands for receiving sms then any other method system for this so I may get / receive sms.
    Or please let me know which phone support above commands or at commands to get sms.
    its urgent , pls reply

    jhlnl wrote:
    I got the nokia x6 phone recently and have been putting music it on it through my USB cable that came with it, through mass storage.  Up until recently it has been working fine, but last week when I tried to delete the all the music off my phone through the mass storage usb cable on my mac, the computer tried to delete all the files, but in the end the cable was ripped out the computer in frustration as it just took too long to even begin. (3 hours and it didnt even start deleting, just said it was 'preparing to send to trash.'
     Now my music is all corrupted on my phone, and each time I try and play it it come up with 'general error' and marks the music as corrupted. None of it works, and now it wont even allow me onto the music.  The problem is that it is taking up all my room and each time I try to do anything it says there is no more room available.
    The bigger problem is now with the usb, which each time I plug it into the computer the file does not appear, but if i take it out the computer always says it was taken out without ejecting, which shows it is at least reading it, it just isnt showing up.  I have tried to download new update, and even to manually delete all my music, which doesnt work as it says 'general error' each time I try to do this.
    Sorry about the long speech here, but I hate gadgets at the best of times and now that its ruining my phone!! I have also tried a factory reset but that does nothing either. Thanks
    Since all data is corrupted I advise to reset your device. I hope you didn't destroy the USB connector.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • USB cable CA-53 is not working for nokia 7250i to ...

    I am trying to connect nokia 7250i with CA-53 cable to take back up
    but it displaying error msg with exclamentory mark like
    USB devive not recognized
    one of the usb devices attached to this computer has malfuntioned , and windows does not recognize it ,
    Please help me to resolve this so that I can take back up

    I have exactly the same problem trying to connect my N73 phone to my PC with a CA-53 cable supplied with the phone.
    I have uninstalled and re-installed the current version of PC Suite complete with drivers from the Nokia support site, rebooted the PC and the phone, returned to the original pghone settings - all to no avail, still getting the same mesage about a USB device malfucntioning, Windows does not recognise. Nopkia support suggested disabling firewalls (Windows, Nortons antivirus) - again no difference. So now they think it is the cable. I have purchased a new CA-53 cable on ebay for $A5.65. It should arrive tomorrow. I hope that fixes the problem.

  • Content Code not working for OS X Mountain Lion.

    I just got a new macbook pro today (Aug. 2 2012) and I sent all my information to get the software, got the email and the content code, and like many others, it didnt work. Some people are saying that a new code will be emailed out, but how do I know if I will get a email with a new code? Or do I have to contact apple care or someone and let them know mine doesnt work? Any help would be cool. Thanks
    NOTE: ok nevermind I found out what to do.
    You take the code and put it in the PDF on the previous email to get the password.
    Yup, i feel kinda dumb

    It's Command-SHIFT-4. and the output will be dropped to your desktop, not the clipboard.

  • I have an hardware issue with my iphone 5 64gb. its lock button in not working. for a fact i know that it can be replaced but my question is this that do they require the bill or anything to replace or they only require the phone in usa

    i have an hardware issue with my iphone 5 64gb. its lock button in not working. for a fact i know that it can be replaced but my question is this that do they require the bill or anything to replace or they only require the phone in usa

    Warranty and support is only valid in the country of origin.  The only exception being the EU where a device bought in any EU country can get warranty or service in any EU country.
    Warranty is determined by device (serial number), no documentation required.
    Apple does not repair devices, they replace them.  For that reason, ensure the device is backed up and any pictures take with the device are copied off the device prior to going in for service.

  • Derivation Rules Not Working for other company codes

    Hi,
    I have 5 Company codes and only for one FM was activated. now i want to activate FM for all 5 company codes. for which i have assigned the FM area to all 5 company codes. I have also assigned the derivation strategy to all 5 company codes as well. now when i post a transaction for any other company code derivation rules is not being process hence no commitment item or fund center is derived. however for the original company code for which FM was activated in the first derivation rule are working fine means system is deriving commitment item and fund center. can any one tell me why derivation rules are not working for other company codes? do i have to add Company code in source field of derivation strategy? could this be the reason? because in beginning there was no other company code so we did not included any company code field in the first place.
    Regards,

    Faizan,
    Go to  Funds Management Government> Actual and Commitment Update/Integration> Activate/Deactivate Funds Management.
    In the screen create an entry for each Company Code and Funds Management Area combination.
    Activate the AA Derivtn flag if you want the derivation to be called and the Update flag if you want to update commitments and actuals in FM.
    Thanks
    Shyam

  • I started the OS system from a backup hard drive. Now My Adobe products doesnt work. "the licensing does not work for this product" Error code 150:30. Help me please!!

    I started the OS system from a backup hard drive. Now My Adobe products doesnt work. "the licensing does not work for this product" Error code 150:30. Help me please!!

    Reinstall the software properly. migration/ backups do not work due to the specific requirements of the activation system.
    Mylenium

  • MY REDEMPTION CODE IS NOT WORKING FOR MY PRODUCT WHAT SHOULD I DO?

    MY REDEMPTION CODE IS NOT WORKING FOR MY PRODUCT WHAT SHOULD I DO?

    It may be possible that the sale of the redemption by the third party seller has not yet been registered/recorded in Adobe's system. So as dj says you may need to check this out with the supplier.

  • CALLER ID not working for International incoming calls

    Hi,
    I've a strange issue where CALLER ID not working for International incoming calls, it shows INTERNATIONAL UNKNOWN NUMBER in the phone display, but the number shows correclty in Verizon Call assistant !!!
    Any clue?

    yashshankar wrote:
    Hi
    I recently  purschased an Online number but the caller id does not work for incoming calls.How do we resolve this problem?.
    Regards
    Yash
    You didn't mention what country your Online Number is in.  Not all of Skype's Online Numbers are eligible for use as Caller ID when calling telephones or sending SMS messages.  If your number is from one of these countries (Chile, Denmark, Estonia, Hong Kong, Poland, Sweden, the UK and the US), then it can be used this way.  Otherwise, you can use a mobile number from countries other than Japan or Mexico as Caller ID with Skype, after the number goes through a verification process where Skype sends SMS messages with codes to that number.
    To get to these settings, log into your Skype account here on the Skype web site using the "Account" link at the top of this page.  You'll see a screen that would include your current Caller ID settings, and a link to change that.  If your Online Number is from one of those countries I referenced above, just select it and you're done. 
    Hope that helps!
    Patrick
    Location/Ubicacion: Arizona USA
    Time Zone/Hora Local: UTC/GMT -7
    If this message has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.
    Si esto mensaje le ha ayudado, por favor haga clic en "Aceptar como solución". Si encuentra un mensaje útil, por favor "Da Kudos" al final del mensaje, por lo que esta información puede beneficiar a otros.
    I am not a Skype employee. No soy un empleado de Skype.

  • Form Designed in LiveCycle will not work for End User

    Please Help!
    I am a newbie to Adobe LiveCycle but recognized the utility in the program, so decided to give it a while to try and streamline some of my employer's forms.  After spending too much time learning how to design a form (much to the dislike of my boss), I am finally going to have to ask for some help.  So here's the deal:
    I've designed a dynamic pdf in LiveCycle with two master pages and two repeating flowed subforms.  The first repeating subform is basically an expanding table intended to be used as a photographer's log where they can log each photo taken with the camera.  The expanding table has some code with a button at the top for the end user to enter the number of photos on the photo roll, click submit, and table expands to however many instances of rows are needed for each photo that was taken.  The second subform is basically an image field and text fields used as photo captions/photo compilation pages.  When the end user clicks submit on the first subform to expand the table, I also have javascript in that click event to also create same amouint of instances of the second subform (the photo compilation page(s)).  Each text field for the photo caption on the second subform is populated by the data entered into the photo log table cells.  I was able to find a script to correctly populate those fields for each instance of the table.  Wish I had the form here, but it's at work at the moment.
    My problem is this: I've scratched and clawed to get all of the forms expanding correctly and the scripts populating each instance of the fields correctly and everything works great in LiveCycle preview.  I then saved the form as PDF for use by my field crew personnel (whom all use, at the very least, Adobe Pro 9, but most Pro X).  I sent the new form to them and they move it to their desktop, open it with Adobe Pro, and populate all of the fields and everything works swimmingly.  However, once they save it, it gets all jumbled and they can't even print it.  We even thought we found a workaround by entering all data and printing to PDF, but even that has turned out to not work.  I checked to make sure that I designed and saved the form in LiveCycle for use with the Adobe Pro versions, but still not working for my end users.
    Anyone have any thoughts on my long explanation??  Please HELLLLPPPP!

    The error(s) occur when trying to save the document.  I want each user to tell the first page how many rows they will need in the photo log table, so they would enter however many photos were taken in the box: "Number of Photos on Roll:"  ---> Then click the "Submit" cmd button.  That should expand the table.  Once it expands, it should also add the same amount of instances of the photo compilation page (2nd Page) as there are rows in 1st page table.  Then the user will populate each cell of the table on page 1 with data.  The data entered into the page 1 table cells will populate the text fields (photo caption) in Page 2 once the user clicks on the "Populate Captions!" cmd button in the lower left corner of the table on Page 1. 
    The problem is in the distributing of the form to the user so they can save the form after populating the data.  I did a test run this morning and for some reason it did do the "print to PDF" correctly for 5 photos on the roll (though this has not been happening every time and especially for a large number of pages, ie. 80 photos).  However, after entering the data for 5 rows on page 1 and then populating the 5 photo compilation pages, I saved a copy as "Save As PDF" and closed the document.  Then re-opened the copy in Acrobat Pro X.  The new copy:
    -had 5 additional rows added to Page 1
    -Duplicates of some of the fields
    -Only retained the 1st instance of the Second Page (Photo w/ Caption) and not all fields were populated
    Again, this all works fine in the LiveCycle Preview but not anywhere else.  I do not have this set up to be linked to an external data source (YET) but there is javascript in the cmd buttons.  I also do not want to distribute this form to end users and then collect the data back from them.  I want them to be able to save a copy of my LiveCycle designed form, open in Adobe Pro, populate the data and save as many copies as needed for form production.

Maybe you are looking for

  • Reader 9.3.2 does not remember last page visited for scanned pdfs

    Using an old school PPC Mac, OSX 10.4.11.  Reader 9.3.2 does not remember last page visited for scanned pdfs. It only remembers the last page visited for searchable pdfs, but not for scanned.  I have the box checked in "Preferences: Restore last view

  • Am I up to date or not??

    Conflicting information from Firefox! FF Start Page says "You're not on the latest version of Firefox. " Help>About Firefox says "'firefox is up to date''. Why?

  • How to get data from another view on the RFx to populate bidders web dynpro

    i am trying to populate bidders in the table on the bidder tab when a user click a button based on the line item data.  How do i have access to get the line item since it is in a separate component controller and view for the RFx? thanks you.

  • Hang on I Tunes screen during update IOS 8

    My Iphone 5 hang on connect Itunes screen during update IOS 8 for more than 3 hours, please assist.

  • Find disabled user in idm side or AD resource?

    Any disabled user is moved to disabled accounts OU in AD in our enviroment. What is the best way to check for any disabled user in a workflow? is this on IDM side or in the disabled user's OU in AD? If so, what would be the correct attribute to use.