Updates to be included in Nokia c3-01

My current version is V06.00, 28-3-11. Purchased in INDIA.
I hope the following updates will patch these bugs.
1. Flash not working in video camera mode.
2. Volume Buttons not working when keypad locked.
3. Increase the image size of caller on dialing screen (Full Screen).
4. Brightness Control. I dont wanna buy the application from OVI store!!!
5. Torch Button won't work when keypad locked.
6. Torch won't work when in call.
7. Make Images scroll smoothly while watching photos.
8. Voice Recording if Possible. Even a Rs.1,700 Fly mobile has one!
FEEL FREE TO UPDATE THE LIST ELSE POKE ME IF SOMTHINGS WRONG WITH MY MOBILE.. :-P

1. Yes its not a bug. Early versions of Android did not support flash on video as well, they needed a whole new OS update for that. An entirely new camera software should be written for that which can only be done via a new OS update. I doubt it possible on a firmware update.
2. I said "headset". So you can buy a Nokia 3.5mm adaptor with music and call controls which works even when phone is locked.
3.
4. Your phone is supposed to have automatic brightness control. And you could try searching for other apps for your phone outside of Ovi Store. Ovi Store is actually just new. There are a lot of independent developers with apps in other sources. This has been the norm for almost 10 years of Nokia phones.
5. Yes I've experienced it on a 5310.
6. A process is a task... Plus as I already mentioned, the phone's CPU is weak, and it cant support a CPU intensive process like calling with any other process.
RS 8.7k? A C3-01 in my country costs around 8500PHP, and for the record, I consider it a lower-midrange phone. The problem is that its price is determined by the build and look, not the feature and capability. If you wanted something with all the capabilities you mentioned, you should have bought yourself a Symbian phone. Most of them are more expensive than your phone, but there are a few that are about the same price.
If you find my post helpful please click the green star on the left under the avatar. Thanks.

Similar Messages

  • Unable to update the latest version of Nokia N97 f...

    why Indians are neglected it has been days since latest version of N97 firmware has been launched by nokia till date we are struck in 11.0.021 why this discrimination ? 
    Solved!
    Go to Solution.

    not a discrimination but nokia work with operators in each region to adjust the update so expect delays of weeks or even months from region to region unless nokia changes its update deployement plan
    vandelay wrote:
    Other people can update their software but I cannot. What's wrong?
    Update availability is based on many things, including existing Nokia device firmware version, country, and operator. It may be due to one of these variables that your Nokia device isn't eligible for updates.
    Please note that your mobile service provider, operator, or carrier may not have approved the latest Nokia device firmware available.
    Nokia produces many different variants of each product (for different countries and languages) and not all variants have the latest Nokia device firmware. It is our priority to update all variants as quickly as possible, and we apologize for any delay. New software may become available at a later date, however, so please check again soon.
    /discussions/board/message?board.id=swupdate&thread.id=21323
    Message Edited by wtever on 09-Sep-2009 12:02 AM

  • ODP OracleCommandBuilder. Updating a table including DATE columns.

    Hi
    I have a problem with the OracleCommandBuilder not creating the correct update commands when I have DATE type columns in the table.
    I have created a test table (called DATETEST) with three columns:
    STRINGCOLUMN     VARCHAR2 10
    DATECOLUMN DATE
    NUMBERCOLUMN     NUMBER
    The STRINGCOLUMN is the primary key.
    Then I created a typed dataset that looks like this:
    STRINGCOLUMN     string
    DATECOLUMN string
    NUMBERCOLUMN     long
    This is the XML schema for the typed dataset:
    <?xml version="1.0" encoding="utf-8" ?>
    <xs:schema id="DateDS" targetNamespace="http://tempuri.org/DateDS.xsd" elementFormDefault="qualified" attributeFormDefault="qualified" xmlns="http://tempuri.org/DateDS.xsd" xmlns:mstns="http://tempuri.org/DateDS.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
         <xs:element name="DateDS" msdata:IsDataSet="true">
              <xs:complexType>
                   <xs:choice maxOccurs="unbounded">
                        <xs:element name="DATETEST">
                             <xs:complexType>
                                  <xs:sequence>
                                       <xs:element name="DATECOLUMN" type="xs:string" minOccurs="0" />
                                       <xs:element name="STRINGCOLUMN" type="xs:string" minOccurs="0" />
                                       <xs:element name="NUMBERCOLUMN" type="xs:long" minOccurs="0" />
                                  </xs:sequence>
                             </xs:complexType>
                        </xs:element>
                   </xs:choice>
              </xs:complexType>
         </xs:element>
    </xs:schema>
    And this is the test code:
    Dim connection As Oracle.DataAccess.Client.OracleConnection
    Dim adapter As New Oracle.DataAccess.Client.OracleDataAdapter()
    Dim dbCommand As New Oracle.DataAccess.Client.OracleCommand()
    Dim sqlstring As String
    Dim data As New DateDS() 'Typed dataset
    Const ConnectionString As String = "User Id=............."
    Try
    'Connect to database
    connection = New OracleConnection(ConnectionString)
    connection.Open()
    'Get data from table DATETEST
    dbCommand.CommandText = "SELECT STRINGCOLUMN, TO_CHAR(DATECOLUMN) AS DATECOLUMN, NUMBERCOLUMN FROM DATETEST"
    dbCommand.Connection = connection
    adapter.SelectCommand = dbCommand
    adapter.Fill(data, "DATETEST")
    'Make changes to dataset
    data.DATETEST(0).DATECOLUMN = Now()
    data.DATETEST(0).NUMBERCOLUMN = data.DATETEST(0).NUMBERCOLUMN + 1
    'Update database
    sqlstring = "SELECT * FROM DATETEST"
    adapter.SelectCommand = New OracleCommand(sqlstring, connection)
    Dim custCB As New Oracle.DataAccess.Client.OracleCommandBuilder()
    custCB.DataAdapter = adapter
    adapter.Update(data, "DATETEST")
    'Disconnect
    connection.Close()
    connection.Dispose()
    Catch exc As Exception
    MessageBox.Show(exc.Message)
    End Try
    Getting the data from the database is not a problem.
    The dataset contains the correct information.
    But updating the database is impossible.
    I get errors like:
    ORA-01861: literal does not match format string
    And if I don't specify a DATE format in the TO_CHAR statement I get this error:
    Concurrency violation: the UpdateCommand affected 0 records.
    I think I've tried everything.
    I've used the OracleGlobalization class, with the SetSessionInfo method.
    I've tried all different types of date conversions to make sure that
    the date format on the database is the same as in the dataset.
    I've tried to change the NLS parameters on the DB server and in the registry on the client.
    I've tried to change the DATECOLUMN type in the typed dataset from string to Oracle.DataAccess.Types.OracleDate
    But it still doesn't work.
    The default date format on the DB 9i server is AMERICAN,(DD-MON-RR).
    A strange thing is that when I instead of using the ODP classes use
    the System.Data.OracleClient and its OracleCommandBuilder
    the code works perfectly without any errors.
    This is the test code that works:
    Dim connection As System.Data.OracleClient.OracleConnection
    Dim adapter As New System.Data.OracleClient.OracleDataAdapter()
    Dim dbCommand As New System.Data.OracleClient.OracleCommand()
    Dim data As New DateDS()
    Dim sqlstring As String
    Const ConnectionString As String = "User Id=......."
    Try
    'Connect to database
    connection = New System.Data.OracleClient.OracleConnection(ConnectionString)
    connection.Open()
    'Get data from table DATETEST
    dbCommand.CommandText = "SELECT STRINGCOLUMN, TO_CHAR(DATECOLUMN,'YYYY-MM-DD HH24:MI:SS') AS DATECOLUMN, NUMBERCOLUMN FROM DATETEST"
    dbCommand.Connection = connection
    adapter.SelectCommand = dbCommand
    adapter.Fill(data, "DATETEST")
    'Make changes to dataset
    data.DATETEST(0).DATECOLUMN = Now()
    data.DATETEST(0).NUMBERCOLUMN = data.DATETEST(0).NUMBERCOLUMN + 1
    'Update database
    sqlstring = "SELECT * FROM DATETEST"
    adapter.SelectCommand = New System.Data.OracleClient.OracleCommand(sqlstring, connection)
    Dim custCB As New System.Data.OracleClient.OracleCommandBuilder()
    custCB.DataAdapter = adapter
    adapter.Update(data, "DATETEST")
    'Disconnect
    connection.Close()
    connection.Dispose()
    Catch exc As Exception
    MessageBox.Show(exc.Message)
    End Try
    My experience until this came up is that the ODP provider is better on everything
    than the microsoft Oracle provider so I don't want to switch unless I have to.
    Could someone that have used the ODP OracleCommandBuilder for updating a table including DATE columns with a typed dataset please give me some tips on how to make this work?
    I would be the happiest man on earth if someone had a solution :-)
    Erik

    Don't convert the dates to strings. Ever.
    The command builder uses the metadata returned from the select command to build the insert/update commands. Using to_char in the query tells ODP that that is a varchar2 column. If you omit the to_char the commandBuilder will know to bind a date parameter in that spot.
    Also in your typed dataset you should change the type from a string to a date.
    David

  • Map updates for Symbian version of Nokia Maps/Driv...

    The last map update I had for my Nokia 808 is from back in April of this year.
    Is Nokia no longer providing map updates for the Symbian version of Nokia Maps/Drive software?
    This would be VERY disappointing if so.
    Please respond, and not ignore this question.
    thank you

    thanks!
    But sadly Nokia didn't even have the manners to respond in that thread either.. so there is still no answer.
    I just dropped $550 on a Nokia 808 Pureview, with the assumption that I will have good GPS software...
    Now Nokia is abandoning map updates for symbian?
    I will be outraged if this is the case..
    NOKIA please respond!!

  • 10.7.5, MacBook Pro Why can't I update many things including my Epson printer driver?

    10.7.5, MacBook Pro Why can't I update many things including my Epson printer driver?

    Not sure. I'd have to be sitting in front of it to tell what is really going on. Do you have a valid internet connection?
    Make a note of the updates then go to the Apple Download website and download one or two of them and then try to install them.
    You have to do a search for them.
    http://support.apple.com/downloads/

  • Macbook Pro (mid-2010) Won't Always Boot Following 10.9.4 Update (Error Images Included)

    Two days ago I updated my mid-2010 Macbook Pro 13" to OS X 10.9.4 (from previous 10.9.3) and everything went fine as usual. However, yesterday, when I was turning off my laptop since I was out all day the system started behaving strangely. The "Shutdown" or "Restart" dialog's wouldn't do anything. I didn't think much of it at the time and simply held the power button down as I didn't have the time to play proverbial "20 questions" to figure out what was going on.
    However, since then, my Mac has been unable to boot to OS X consistently. I tried to repair/verify the disk and permissions from the recovery partition, reset the SMC, and even utilized an old set of recovery tools I had running on a Snow Leopard external drive.
    The list of everything I've tried:
    Verifying the permissions through recovery which fails with error code 22 (an unknown error occurred) on every permission issue it found (only a few)
    Verifying the disk which finds nothing wrong with it through recovery
    Utilizing my Snow Leopard recovery tools HDD to just simply verify permissions and the disk. From the SL Recovery Tools HDD the Disk Utility was able to verify and repair any permission issues and as previously said, no disk issues were found
    Tried re-installing OS X through Recovery which fails almost immediately due to unknown issues
    Reset SMC
    Tried "Safe Boot" by holding the Shift Key down
    When I boot my Snow Leopard Recovery Tools HDD that I made and run through the verify/repair of disk utility I am able to restart the system and get into OS X Maverics for several reboots before the same errors (included in photos below) occur with 100% consistency.
    This is how I was able to set verbose mode to see what was going on even though I haven't the slightest clue (I've never had a problem with OS X till today and I understand how Windows works far more than OS X - in fact I use OS X so I don't have to worry about things like this). Everything on the partition seems to still be in tact, the drive is working, but something is causing what's included in the screenshots to occur - and when these errors occur everything seems to get set into overdrive (the fan spins at max, the processor heats up, and the system in general warms up to what it feels like under very heavy load).
    Images:
    https://www.dropbox.com/s/cd8y9tw6qk1rop3/image1.jpeg
    https://www.dropbox.com/s/cb9ldqc2mp8zlsc/image.jpeg
    Thank you for your help in advanced.

    Verifying a disk or permissions doesn't fix anything. They must be repaired. Then you will need to do a reinstall of OS X:
    1. Restart the computer into the Recovery HD:
         Boot to the Recovery HD: Restart the computer and after the chime press and hold down the
         COMMAND and R keys until the Utilities menu screen appears. Alternatively, restart the
         computer and after the chime press and hold down the OPTION key until the boot manager
         screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    2. Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the Utilities menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu. Select Install OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Upon completion you can reinstall the 10.9.4 update: OS X Mavericks 10.9.4 Update (Combo), if required.

  • N91 4GB Users Firmware Update Needed!!! [Nokia Mod...

    Dear Nokia Moderator can u pass this topic to the N91 Firmware Update Team please?
    The N91 4GB Edition has the following faults in the v2.10.013 Firmware:
    - Ringtone Volume Low without any Headset Connected
    - Ringtone Volume Low with Heavy Bass via Nokia N91 Headset Connected
    - Ringtone output volume does not sound loud as Music Output Volume
    - Music Library unexpected freeze
    - Camera Image Quality Poor (When set to High Image Quality)
    Please N91 4GB Users please post ur problems with v2.10.013 firmware so Nokia can Update the Firmware for it.
    What needs to be added/fixed in the new Update for N91 4GB:
    - Ringtone Volume Loud as Music Player
    - Music Library Update
    - Audio Visualisations
    - Support for A2DP
    - Camera Quality Update
    - Loudness Option need to be Working
    - HDD Options ie defragment/scandisk etc
    N91 users post ur comments
    If you find my post useful then click on
    Kudos!Nokia N96 (v20.050 / RM-247)
    www.shaysoft.net | Competitions!

    If you want Nokia to get this sort of message, you're probably going to have more luck using the "Contact Us" link at the top right of this page.

  • How do I update the software of my Nokia 6101 ?

    Hello! I know that current softvare for Nokia 6101 is V 05.22 (23.05.07). At my Nokia 6101 I have V 04.10 (07.09.05). Is it possible to update software with Nokia Software Updater ? If no, please tell me when it will be possible to do with Nokia Software Updater.

    If the update is available for your Product Code then you should be able to update it using Nokia Software Updater. Just remember that not all 6101's are the same. There are many variants of the 6101 all with different Product Codes. Using Nokia Spftware updater try to update and if there is an update available for your product code, it should update. Remember to backup your phone prior to updating because the update process will wipe everything on your phone. 

  • Unable to update Software through phone in Nokia A...

    Dear Nokia,
    I checked today that there is a software update available for my Asha 200. I downloaded the software through the option given in the phone. The software was downloaded successfully but when i tried to install the software, phone prompted a diaogue box '2.7 MB Memory needed. Delete some items?'. I tried to delete some items but couldn't because all the filed were system files hence protected. Please let meknow how to update the software using phone only? I cant not update this software using PC due to non-availability of PC with me.
    Thanks!
    Aditya

    Also, i saw that people are facing problems after updating the software update by Nokia. Guys, please let me know whether i shouldupdate my phone with new firmware or should wait for the another fixed version.
    Please help.

  • How to update the AIR included in Flash Builder SDK?

    So, the Flash Builder SDK comes with a version of AIR, which it uses when you package a mobile app for iOS (Android mobile apps are run with the AIR that's downloaded from the Marketplace)...  On my Windows machine, this "built-in" copy of AIR is located in "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0\runtimes\" unless I'm mistaken.
    I'm pretty sure that it does not automatically update itself -- and I'm equally certain that it's a pretty old version of AIR, because it's the one that was included with the 4.6 SDK which was released 8 months ago...
    So how do I update this version of AIR that's built into the Flash Builder SDK?
    Thanks,
    Laurence MacNeill
    Mableton, Georgia, USA

    Oops -- never mind...  Didn't realize there was a separate AIR SDK that you could download -- I thought it was integrated into the Flex SDK, and since there hasn't been a new Flex SDK since 4.6, I thought I had to somehow grab pieces and parts of AIR to update this manually...
    But grabbing the AIR SDK from http://www.adobe.com/devnet/air/air-sdk-download.html did the trick...  Just unzipped that into the sdks\4.6.0 folder and was done...  Sweet...
    L.

  • Cant update my asha 200 by nokia pc suite

    i had downloaded latest update rm761 11.85 bt when i try to install it... it always shows error that usb cable is disconnected then within a sec it reconnect nd ready to use bt again when i start updating it shows same error i have changed 2 data cables.... and when i tranfer data by data cable it work perfectly...

    rishi24895,
    Try to download and install the latest Nokia Suite at http://nds1.nokia.com/files/support/global/phones/software/Nokia_Suite_webinstaller_ALL.exe
    Good luck

  • Firefox 3.6.17 crashes after mac updates on snow including java update - only certain pages, like ebay and google crash

    I just updated my snow leopard mac with updates including garageband, iphoto, safari, hp printer, itunes and java. After that Firefox 3.6.17, which had been working fine, crashed after I would open many pages including myebay and igoogle. I tried safe mode and disabling all plugins, but it still crashed. Other pages, like Gmail and ebay before I chose Myebay worked fine, at least on open.
    I downgraded to 3.6.13, but it did not solve the problem, so I upgraded to v4, which I am not thrilled with, but it stopped the crashing. I would rather say in v3.6 (which isn't as good as 3.5). What can I do to resolve this issue so I can return to 3.6?

    Hi Ben,
    First...
    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partition & use Disk Utility from there to Repair the Disk, then Repair Permissions.
    If no improvement on rebooting, then...
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on, Check System Preferences>Accounts (Users & Groups in later OSX versions)>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • Could not updated firmware 40.0 for nokia 5800

    Hi,
    I tried updating the firmware of my nokia5800 using ovi suite.
    1. Ovi suite showed an option New firmware available 40.0 , Install
    2. On click , it downloaded some 122 mb file
    3. Install process started, it said it ll take about 15 minutes to complete
    4. My phone restarted after few minutes
    5. In OVI suite, Your firmware is successfully updated message displayed
    But when I check my mobile, it is still in 30.0 version, I checked my product code also, firmware is available for this product code.
    I am using Windows 7 and latest version ovi (2.1.1.1)
    Please help

    I would suggest using the Nokia Software Updater (NSU) instead of the Ovi Suite. Ovi, I feel is not matured enough, and so is Win 7.
    My suggestion:
    - Use a PC running WinXP (I strongly advise against using Vista) and insatll the latest PC Suite and NSU.
    - Back up your data
    - Soft reset your phone (Type *#7370#, enter lock code when prompted)
    - Make sure you have a full battery and a good internet connection on the PC, then run NSU with the phone connected in PC Suite mode using the USB Cable.
    - Wait patiently until it finishes.
    - Once completed, restore the backup.
    Cheers,
    DeepestBlue
    5800 XpressMusic (Rock Stable) | N73 Music Edition (Never Say Die) | 1108 (Old and faithful)
    If you find any post useful, click on the Green "Kudos" Button on the left to say Thank You...

  • Font Management update. Now includes Leopard.

    I'm linking to my web site for this one instead of pasting in such a large document. Please feel free to leave suggestions, changes or whatever you think of. I'll note when when the document has been updated to let everyone know it's been changed.
    http://www.jklstudios.com/misc/osxfonts.html

    More minor text corrections/modifications, typo fixes. Included a link to download a PDF version 4-3-08.
    http://www.jklstudios.com/misc/osxfonts.html

  • IS SYMBIAN BELLE UPDATE GONNA B CUMIN FOR NOKIA C7

    Itz gonna b long tym telling bout d nokia c7 belle update...wen itz gonna officialy **bleep**...i hav been waitin for it a long....

    We expect it to come out on February. Just be patient.
    If you want to thank someone, just click on the blue star at the bottom of their post

Maybe you are looking for

  • How can I find history from a specific website on my MacBook Pro?

    How can I find history from a specific website (such as: time spent on that website and things of that nature) on my MacBook Pro?  I would also like to see if I can get a detailed history for other things done on the computer, such as: Date & Time Sp

  • ERROR WHILE INSTALLING 4.7 IDES VERSION

    Hi gurus,    I am getting an error while installing 4.7 ides version Please tell me how to go about ERROR 2007-07-01 14:24:30 MOS-01105  Processing of one or more file system node operations of table   Content of table: t_SAPComponent_Filesystem_Acti

  • LDAP and CF8

    Hi everyone, I have been unsuccessful in getting CFLDAP to query a LDAP from Site Server. I did get it to work in ASP. Could it be that ASP has a better way of connecting to the datasource? Ravi.

  • Adobe Lightroom 3.4 update process

    Apparently, Adobe Lightroom uses Adobe Camera RAW for raw image processing just like Photoshop, however unlike Photoshop, every time that a new camera is added or a bug fixed in Lightroom's raw image processor, Adobe released an entirely new Lightroo

  • AirDrop not seen on both computers

    I'm running a mid 2010 iMac with Mountain Lion installed.  My wife has an iMac (2011) in the basement, running Lion.   We both open our airdrop folders.  She sees my computer and can send me a file.  I see the file come in and see her picture in my a