The value entered does not match the format of the field

I am trying to do a simple division of profit by sales to find the profit %. Here is the script I am using and it doesn't work.
var v1 = +getField("Profit%").value;
var v2 = +getField("Contract1").value;
event.value = v2 !== 0 ? v1 / v2 : "";
I continue to get the error The value entered doesnot match the format of the field
I have attached the file. Can someone help

Are you very sure?
Using
var v1 = 0.05; // "Profit%"
var v2 = 100000; // "Contract1"
v1 / v2; // result of division;
5e-7
That is 5 * 10 exponent -7 or 0.00000005
Set the format to "None"
Also so please post the values you are using.

Similar Messages

  • Error Message - Value Entered Does Not Match Format of Field

    I keep getting an error message in Adobe Pro X: "The value entered does not match the format of the field [JF13]".
    I have JF13 programmed as follows:
    On Calculate tab:
    if(Number(this.getField("ck4").value) > 0) this.getField("JF13").value = Number(this.getField("FL019").value); else this.getField("JF13").value = " ";
    It is programmed this way so if the user checks the check box before the field, only then will JF13 populate a value, which pulls from FL019. I also have the settings set to "number" because the data needs to display as a dollar amount $xxx.xx.
    FL019 is a hidden field on the form which pulls a dollar amount from a Mainframe, and its settings are also set to "Number" :
    I get four pop up windows with the above mentioned error message, and the only way to make the message stop is to remove the "number" format from the fields. However, when this is done, if any number which ends in a zero is entered, it cuts off the zero. This is not acceptable either.
    Is there some sort of script I could add or some other way to prevent both the error message and the cutting off of the zero on JF13?
    I am not very proficient with javascript, so any assistance would be appreciated!

    Thank you so much for your response!!
    Forgive me for my lack of knowledge - but where exactly would I add that in the script?
    I tried it like this:
    if(Number(this.getField("ck4").value) > 0) this.getField("JF13").value = Number(this.getField("FL019").value); else this.getField("JF13").value = ""(empty string);
    And I got an error saying I was missing a parenthesis. Should it go somewhere else or am I completely off?

  • HT3702 When trying to purchase an app an error message comes up saying the info I entered does not match my banking info. The odd thing is, the $1.00 hold is shown immediately on my credit card acct. , so I obviously did enter it correctly. Tried 5 times.

    When trying to purchase an app an error message comes up saying the info I entered does not match my banking info. The odd thing is, the $1.00 hold is shown immediately on my credit card acct. , so I obviously did enter it correctly. Tried 5 times. Any suggestions

    When trying to purchase an app an error message comes up saying the info I entered does not match my banking info. The odd thing is, the $1.00 hold is shown immediately on my credit card acct. , so I obviously did enter it correctly. Tried 5 times. Any suggestions

  • CS4 Upgrade, the serial number you have entered does not match the product you have selected

    I have a valid CS2 premium license and have installed CS4 upgrade to a new machine but get the dreaded error "the serial number you have entered does not match the product you have selected" Now I got this error when I originally installed in 2009, back then I could call customer service and get the problem resolved but now when I phone I get an automated message saying phone support is not available for CS4? Does anyone know of a work around or a UK number where I can get this resolved? Any help would be appreciated.

    Please see: http://www.hp.com/country/us/en/mda/windows7/upgrade/index_ww.html to select your correct country or region.
    Carey Frisch
    Microsoft MVP
    Windows Expert - Consumer

  • Says "Password entered does not match the credential chosen" - but it does!

    Hi all
    I hesitate to post this question, because it seems so stupid, but I'm really stumped.
    I downloaded the latest ReaderRights credential 0004517_Exp20080430.pfx to the correct /sapmnt/N4S/global/AdobeDocumentServices/TrustManagerService/trust/credentials directory and attempted to apply it to the Visual Administrator service "Document Services Configuration".
    "The password entered does not match the credential chosen. Please enter the password for the chosen credential".
    Stopped/started J2EE server, made sure it was typed correctly, always the same. I can only imagine that the credential is not designed to be applied a second time, which is a bit a problem for a preview system.
    Any ideas appreciated.
    Thanks
    Phil

    Hi Kay-Arne
    No, no solution yet. I've waited until the next short-term credential (end of April) but that doesn't work either. (insert very sad emoticon)
    If you're not using a preview version, have you raised an OSS and could you let me what they say? I may have a name at SAP to ask, but wanted to try absolutely every else I could think of first.
    Thanks
    Phil

  • The product key entered does not match any of the Windows images available for installation. Enter a different product key.

    how do you manage to install windows 7 when the message on the screen is "The product key entered does not match any of the Windows images available for installation. Enter a different product key. "

    That's a really helpful answer and not smug at all, thanks Carey.
    I just downloaded a DVD image from my university's MSDN Academic Alliance program, named "Microsoft
    Windows 7 with Service Pack 1 Debug/Checked Build 64-bit (English)", which I wanted to use to install over an existing 32-bit version. I thought the install screen was giving this weird unskippable error described in the OP before I even entered
    a key because the 32-bit key I had used on the HDD was somehow interpreted to be used in an upgrade, but no. Even after I wiped the hard drive, this error persisted.
    Guess I'll go Google some more on how to install my legit copy of Windows, because this self-serving shit sure isn't helping.
    edit: IF YOU GOOGLED THIS AND ARE STILL LOOKING FOR YOUR ANSWER, CHECK HERE:
    http://answers.microsoft.com/en-us/windows/forum/windows_8-windows_install/the-product-key-entered-does-not-match-any-of-the/47e6f575-5792-404b-9b7f-2065bdb91011

  • Location entered does not match warehouse location of item

    Hello Experts,
    I am creating delivery through object.but I am facing this error 'Location entered does not match warehouse location of item'
    This is my code .
       SAPbobsCOM.Documents oDelivery;
                                        oDelivery = clsAddOn.LDNA_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oDeliveryNotes);
                                        ldna_Rec = clsAddOn.LDNA_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset);
                                        string saleordernumber = oMat.Columns.Item("V2").Cells.Item(i).Specific.Value;
                                        string[] ret = GetBinCode.Split('-');
                                        string whs = ret[0];
                                        oDelivery.Lines.BaseEntry = Convert.ToInt16(saleordernumber);
                                        oDelivery.Lines.BaseType = 17;
                                        oDelivery.Lines.ItemCode = oMat.Columns.Item("V7").Cells.Item(i).Specific.Value;
                                        oDelivery.Lines.ItemDescription = oMat.Columns.Item("V6").Cells.Item(i).Specific.Value;
                                        oDelivery.Lines.BaseLine = lineno;
                                        oDelivery.Lines.Quantity = qty;
                                        oDelivery.Lines.WarehouseCode = whs;                                 
                                        oDelivery.Lines.UserFields.Fields.Item("U_TotBird").Value = totalbird;
                                      // code for batch
                                        SAPbobsCOM.Items oItemD;
                                        oItemD = clsAddOn.LDNA_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems);
                                        string it = oMat.Columns.Item("V7").Cells.Item(i).Specific.Value;
                                        oItemD.GetByKey(it);
                                        if (oItemD.ManageBatchNumbers == SAPbobsCOM.BoYesNoEnum.tYES)
                                            ldna_Rec = clsAddOn.LDNA_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset);
                                            string si = oMat.Columns.Item("V7").Cells.Item(i).Specific.Value;
                                            string strBatch = "select DistNumber from OBTN where ItemCode ='" + it + "' ";
                                            ldna_Rec.DoQuery(strBatch);
                                            while (!ldna_Rec.EoF)
                                                string BatchNo = ldna_Rec.Fields.Item("DistNumber").Value;
                                                if ( BatchNo == mainbatch)
                                                   oDelivery.Lines.BinAllocations.SerialAndBatchNumbersBaseLine = 0;
                                                    oDelivery.Lines.BatchNumbers.BatchNumber = mainbatch;
                                                    oDelivery.Lines.BatchNumbers.Quantity = totalbird;
                                                    oDelivery.Lines.BatchNumbers.Add();
                                                ldna_Rec.MoveNext();
                                        //code for bin allocation
                                        ldna_Rec = clsAddOn.LDNA_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset);
                                        string strQuerybinD = "select AbsEntry from OBIN where BinCode='" + GetBinCode + "'";
                                        ldna_Rec.DoQuery(strQuerybinD);
                                        int binAbsD = ldna_Rec.Fields.Item("AbsEntry").Value;
                                        oDelivery.Lines.BinAllocations.BinAbsEntry = binAbsD;
                                        SAPbobsCOM.DocumentLinesBinAllocations binD = oDelivery.Lines.BinAllocations;
                                        binD.SerialAndBatchNumbersBaseLine =0;
                                        binD.BinAbsEntry = binAbsD;
                                        binD.Quantity = totalbird;
                                        if (oDelivery.Add() == 0)
                                            clsAddOn.LDNA_Application.StatusBar.SetText("Delivery challan created Sucessfully.", SAPbouiCOM.BoMessageTime.bmt_Medium, SAPbouiCOM.BoStatusBarMessageType.smt_Success);
                                        else
                                            BubbleEvent = false;
                                            clsAddOn.LDNA_Application.StatusBar.SetText(clsAddOn.LDNA_Company.GetLastErrorDescription(), SAPbouiCOM.BoMessageTime.bmt_Medium, SAPbouiCOM.BoStatusBarMessageType.smt_Error);
                                            return;
    Please help me
    Regards,
    Pritam

    Hi George,
    I have another question for you.  I have a column that is titled "City"  Intitally I wanted to be able to enter in the name of the city into one field and it auto populate the other fields with the same name.  Since I'm new to PDF forms I thought I would just copy and paste the same field multiple times so once I enter in the name in the first field it would fill in the rest of the fields with the same name.  This works, but in some cases I need one or two of the fields to be different and allow me to edit the name.  As you can expect every time I edit one field it changes the name for all the fields.  So my question is; Is there a way to have the column auto populate the same name that enter in the first field, but allow me to change the fields below if I need to? 
    Here is a rough idea of what I'm trying to do
    City
    CityRow1
    CityRow2
    CityRow3
    CityRow4
    This is what I had
    City
    CityRow1 - Kansas City
    CityRow1 - Kansas City
    CityRow1 - Kansas City
    CityRow1 - Kansas City
    I would like the form to initially auto populate the city to save time, but if I have an instance where its in a different city I need to be able to change the value of only that particular field.
    City
    CityRow1 - Kansas City
    CityRow2 - Kansas City
    CityRow3 - Lawrence
    CityRow4 - Kansas City
    Again I appreciate all you help thus for. Thanks again!

  • I had windows 8.1 but want to go back to windows 8 with clean install"the product key entered does not match any of the windows image available"

    I had windows 8.1 and wanted to revert to windows 8 so i by mistake formatted the c:/ drive containing os and now when i try to install windows 8 i get the error "The product key entered..."
    And i dont even have recovery image in my pc. I am using a dell laptop and i have windows 8 dvd given by dell which reads" windows 8 recovery media for windows product"
    Please guide me asap.

    OEM keys are embedded on hardware, you might not need to enter the key in your case. I would suggest you to call Dell support here. 
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • E301 Symbol type in value file does not match symbol type in layout

    Hello Experts,
    Please help me. I am getting this kind of error when I am trying to open a report in cg02 using Report From Template option.
    Regards
    Dheeraj

    Dear Dheeraj
    Regarding:I am facing this problem only with one specification. For the other specifications I am able to open the report properly from Report from Template option.
    Please compare data from one spec to the other. One spec does have more data. This "more" data yield to the result that a different WWI code is used and this WWI code is not "ok" and therefore you get problems.
    Regarding; "Maitain Parameter Values" => try to skip or write "hello world" or whatebver; parameter values are needed later; only on "rare" cases they have impact on the e.g. report from template creation so taht you get a problem
    Regarding:
    I tried creating the report but the report is not created.The status of the report is Error. i went to information tab and clicked on F6 Parameter Values. System has thrown a message saying "No Parameter Symbols found in the template". But system is trying to pass the parameter values. I think because of this I am getting error..
    Either you have used the wrong symbol type or used wrong function module to assign it to a own developped report symbol. etc. Please check; what was the last change either in WWI code or in report symbol definition.
    Some thread have shown that sometimes the report symbol is prepared as report type "01" but should be "02" (or the other way around). This is one reason for such issues
    Only by doing it step by step and checking:
    a.) what has been changed in template?
    b.) what is the difference in data on sepc 1 in comparison to spec 2
    You will succeed. Sorry to say: to debug WWI is not as simple as ABAP code. This is one reason why some developpers might get "frustrated" in WWI;
    May be check: WWI for Beginners
    as well
    C.B.

  • Method 'publishCatalog' does not match any of the valid signatures for mess

    When I run my client, I get "Method 'publishCatalog' does not match any of the valid signatures for message-style service methods" I know that it means that my web service method should conform to one of those 4 methods (http://ws.apache.org/axis/java/user-guide.html#ServiceStylesRPCDocumentWrappedAndMessage), and I made it conform, yet I still get that error.
    Here's my Service and Client code:
    import org.w3c.dom.Element;
    import org.apache.axis.client.Service;
    import org.apache.axis.client.Call;
    import org.apache.axis.message.SOAPBodyElement;
    import org.apache.axis.utils.XMLUtils;
    import java.io.File;
    import java.io.FileInputStream;
    import java.net.URL;
    import java.util.Vector;
    public class CatalogPublisherServiceClient {
         public static void main(String[] args) throws Exception{
              String endpointURL="http://localhost:8080/axis/services/CatalogPublisherService";
              org.apache.axis.client.Service service = new Service();
              Call call = (Call)service.createCall();
              call.setTargetEndpointAddress(new URL(endpointURL));
              SOAPBodyElement[] reqSOAPBodyElements = new SOAPBodyElement[1];
              File catalogFile = new File("catalog.xml");
              FileInputStream fis = new FileInputStream(catalogFile);
              reqSOAPBodyElements[0] = new SOAPBodyElement(XMLUtils.newDocument(fis).getDocumentElement());
              SOAPBodyElement[] resSOAPBodyElements = (SOAPBodyElement[]) call.invoke(reqSOAPBodyElements);
              SOAPBodyElement resSOAPBodyElement = null;
              for(int i=0; i<resSOAPBodyElements.length; i++){
                   resSOAPBodyElement = (SOAPBodyElement)resSOAPBodyElements;
                   System.out.println(XMLUtils.ElementToString(resSOAPBodyElement.getAsDOM()));
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.soap.MessageFactory;
    import javax.xml.soap.SOAPMessage;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.NodeList;
    import org.w3c.dom.Node;
    import org.w3c.dom.Text;
    import java.util.Vector;
    import java.util.Date;
    import java.text.SimpleDateFormat;
    import org.apache.axis.MessageContext;
    import org.apache.axis.utils.XMLUtils;
    import org.apache.axis.message.SOAPBodyElement;
    public class CatalogPublisherService {
         public SOAPBodyElement[] publishCatalog (SOAPBodyElement[] soapBodyElements) throws Exception {
              Element soapBody = (Element)soapBodyElements[0];
              NodeList productList = soapBody.getElementsByTagName ("PRODUCT");
         int productCount = productList.getLength();
         DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
         factory.setNamespaceAware(true);
         DocumentBuilder builder = factory.newDocumentBuilder();
         Document responseDoc = builder.newDocument();
         Element resRoot = responseDoc.createElementNS("http://www.axis03.ws", "CATALOGUPDATE");
         resRoot.setPrefix("CU");
         Element itemCount = responseDoc.createElement("ITEMCOUNT");
         Text itemCountText = responseDoc.createTextNode (String.valueOf(productCount));
         Element dateReceived = responseDoc.createElement("DATERECEIVED");
         SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
         String date = sdf.format(new Date());
         Text dateReceivedText = responseDoc.createTextNode(date);
         //Append the child elements appropriately
         resRoot.appendChild(itemCount);
         itemCount.appendChild(itemCountText);
         resRoot.appendChild(dateReceived);
         dateReceived.appendChild(dateReceivedText);
         SOAPMessage message=null;
         MessageFactory msgFactory = MessageFactory.newInstance();
         message = msgFactory.createMessage();
         SOAPBodyElement[] result = new SOAPBodyElement[1];
         result[0] = new SOAPBodyElement(resRoot);
         return(result);

    That's a really helpful answer and not smug at all, thanks Carey.
    I just downloaded a DVD image from my university's MSDN Academic Alliance program, named "Microsoft
    Windows 7 with Service Pack 1 Debug/Checked Build 64-bit (English)", which I wanted to use to install over an existing 32-bit version. I thought the install screen was giving this weird unskippable error described in the OP before I even entered
    a key because the 32-bit key I had used on the HDD was somehow interpreted to be used in an upgrade, but no. Even after I wiped the hard drive, this error persisted.
    Guess I'll go Google some more on how to install my legit copy of Windows, because this self-serving shit sure isn't helping.
    edit: IF YOU GOOGLED THIS AND ARE STILL LOOKING FOR YOUR ANSWER, CHECK HERE:
    http://answers.microsoft.com/en-us/windows/forum/windows_8-windows_install/the-product-key-entered-does-not-match-any-of-the/47e6f575-5792-404b-9b7f-2065bdb91011

  • Windows 8 error "product key does not match any of the Windows images available for installation"

    Hi Experts
    My HP Pavilion laptop came with window 8. I made the USB recovery for windows 8 using hp recovery manager. My windows was corrupted, while I was trying to install windows 7 in dual boot.
    I used above USB recovery to restore factory default. But every time it is giving me error "HP Recovery Manager Failed error code = 0xefffff08"
    Then I downloaded the OEM ISO mage for windows 8 and tried to do the clean install but now installation process is giving me error "The product key entered does not match any of the Windows images available for installation. Enter a different product key" 
    Please help me. To whom I have to contact?

    Hi ghost-rider,
    Thank you for your query, I will do my best to assist you.
    I understand you tried to do a recovery and you received this error  "oxefffff08".
    First I would suggest you run a hardware diagnostics. Testing for Hardware Failures (Windows 8)
    If no hardware failures are located, you have ruled that possibility out.
    Here is a link to Troubleshooting HP System Recovery Problems (Windows 8) that may help.
    If you are still having an issue doing a recovery, I suggest contacting HP support and explain the issue you are having with doing a recovery. They may have another option available for you.
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region  Technical Support Sitemap
    The clean install from an OEM image is looking for the product code as it does not match the one that came with the computer, You would need a new code.
    I hope this has helped.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Can not view cellular data account any more (email address does not match)

    On iPad, was originally able to go into Settings > Cellular Data > View Account and view the account info. Now cannot. If try using correct email address and password, get message that account or password are incorrect. If try entering just the email address and clicking "forgot password", get "the email address you entered does not match the email address on file for this device".
    But the 3G cellular is still working.
    Don't know if related, but this problem began after the reports of the 100,000 iPads/users hack. Leads me to wonder if I got hacked.... or more likely if the system/database that "View Account" normally accesses is offline or being reworked by AT&T.
    Any suggestions? Best AT&T contact via Internet? By phone #? By local AT&T store? Via Apple? Use iTunes to reset to factory defaults and start over (risk loss of unlimited plan?)?.
    Thanks.

    Thanks for the replies, I just had the same problem yesterday and it was a misspelled e-mail address, BUT, it did take me three calls to AT&T and more than two and a half hours. The first person didn't even know what I was talking about and gave me a number for iPad support which turned out to be Apple's, so... no help. The second person told me they were there only to solve iPhone problems until I read her your posts, then she tried and tried until the call was cut off (this is AT&T after all). But the third person finally understood, even though it took her almost an hour to get to their iPad support department (she told me it was busy all the time) not before trying with their "technical department" also. I just can't believe that Apple sells millions of these things and AT&T can't supply a direct phone number for this department, or doesn't even train their personnel.

  • Datetime value does not match the specified format

    Hi All,
    I am writing this function for a template
    case when "Employment Events (Current)"."Most Recent Hire Date" is NULL then NULL else CAST(TIMESTAMPDIFF(SQL_TSI_YEAR,cast(cast("Employment Events (Current)"."Most Recent Hire Date" as char)as timestamp),Cast(Cast(@{EndDate}{CAST('2011-01-01' AS DATE)} AS CHAR) AS TIMESTAMP)) AS CHAR)||' year(s) ' end
    but when it runs, it throws me this error
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 46046] Datetime value 2011-01-01 does not match the specified format. (HY000)
    What am I doing wrong? "Employment Events (Current)"."Most Recent Hire Date" is set to max - aggregation in the rpd.

    I found the solution as well.
    The ODBC driver on the Windows server was old (Version 6). I upgraded that to SQL Server Native Client 11.0 and everything works fine.

  • Error the entered value does not match the specified field type

    Hi,
    When I try to insert a null value to a field of the User Defined Table I am getting the error "The entered value does not match the specified field type" in SAP Business One version 2007 PL 42.
    Any help would be appreciated.
    Thanks in advance.
    Sudha.

    Hi Sudha,
    It probably have to do with how you defined the field.
    Is Null value allowed?
    What are the field definitions?
    Thanks,
    Jesper

  • [nQSError: 46046] Datetime value -09-05 does not match the specified format. (HY000)

    Hi,
    I am getting the following error while selecting the date column from Report. Please suggest the solution or work around.
    SET VARIABLE QUERY_SRC_CD='Report';SELECT
       0 s_0,
       "PPMC SA"."Dim Workplan"."Project Id" s_1,
       "PPMC SA"."Dim Workplan"."Project Name" s_2,
       "PPMC SA"."Dim Workplan"."Task Actual Start Date" s_3
    FROM "PPMC SA"
    ORDER BY 1, 2 ASC NULLS LAST, 3 ASC NULLS LAST, 4 ASC NULLS LAST
    FETCH FIRST 65001 ROWS ONLY
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS.
    [nQSError: 46046] Datetime value -09-05 does not match the specified format. (HY000)
    My Observations: Task Actual Start Date is a date column in SQL Server 2008, the column imported in obiee Physcial layer as Varchar(10). So i converted the column as Date in Physical layer.
    Thanks in Advance,
    Pradeep

    Hi Pradeep,
        One or more rows in 'Task Actual Start Date' does not have date time format which is why you will be getting this error. You may have to fix this at data level to get rid off this error.
    To test, apply a filter to see 5-10 rows of data, it should work fine as you would have excluded that data.
    Pls mark if correct/helpful.

Maybe you are looking for

  • Is it possible to have two Oracle Inventory

    Hi, I want to Install Oracle with new OraInventory in Linux - I'm using a User other the Oracle (which has already a inventory and has Oracle Homes associsted) Now I'm trying to install Oracle under user Oracle2, and I don't want this installation to

  • I need a code for Advanced Search based on my custom multi select listbox and query through programatically (jquery)with out design

    Hi, I have a grid and advanced search link buttonand search button. if i click on Advanced Search link...open a panel with 3 list boxes(multi selection) if i select multi selected items in list boxes and click on search-->show the grid with selected

  • Sun Ray 2 Screen Resolution with 16:9 Monitor

    Dear All, I'm afraid I haven't done anything with the Sun Ray servers for a while and am a little rusty. We're running SRSS 4.2 with SRWC 2.2. A user has purchased a 23-inch 16:9 monitor whose native resolution is 1280x720, however, this is not liste

  • Is there anymore updates for Nokia 5800 XM??

    Hi, I would like to know if there is anymore firmware updates for Nokia 5800 XM after V52.0.007? Can anyone provide me with the news? I am a huge fan of Nokia and their Symbian platform.. But I am getting more and more disappointed with them. I canno

  • Changing default printing shortcuts

    I want to change the default printing shortcut.  It is currently set to "General Everyday Printing".  I would like to change it to "Fast/Economical Printng".  When I go to Preferences, Printing Shortcuts tab, and click on "Fast/Economical Printing" t