Re: E71 gap in case body

Opening the case or disassembling your Nokia E71 will invalidate your warranty.
However, the problem that the original poster has is indeed to do with the chassis assembly at the top of the handset.
The metal prongs that the handset is held together with need to be returned to their correct position and this will then allow the casing to sit correctly.
I had the dust removed from inside my handset at a care point and they didnt put the keypad mat in correctly on reassembly I also noticed that the casing was also open at the top, when I returned it, they said they will adjust the prongs to sit tightly, and install the keymat correctly.
Take it to a care point and get it rectified, they could have assembled the handset in the factory, and it failed a QA test, where upon they may have repaired it and hence reopened the case, causing the prongs to get bent out of shape.
Shunts...
I will mostly be communicating with a Nokia E72 Zodium Black
Nokia E72-1 with Vr 051.018.207.04 Software
If this post helped... Add some kudos!!

The unlocked phones do not have any type of factory seal at all, at least mine does not.
There is no way to detect that I fixed the problem myself.
I live in south east Wisconsin and there is no care center nearby, there may be one in Chicago, but no way I will be driving down there to drop off a phone :-)
I am not concerned about it and I didn't have to send the phone in where someone probably less qualified than me would attempt to fix it anyway.

Similar Messages

  • E71 - downloading full email body

    I've just got my E71 but so far, it seems when I setup Google Mail, I only have the option to 'download headers'.
    I'd like to have my phone download the entire mail in the background so when I do get around to reading them, I don't have to wait (what seems a very long time) for the full message body to be downloaded.
    Can anyone help point me to a solution?
    Many thanks!

    With a POP set-up you can still set the phone to download e-mail automatically in the options. The least amount of time between connections is 15min though...
    The e-mail will be downloaded as plain text by default but if you want to see HTML content you can select the attachments option and click on the WEB logo which open the HTML content
    iPhone 5 32GB
    MacBook Pro Retina 15" Mac OS X Mountain Lion 10.8.4

  • CASE STATEMENTS AND CASE EXPRESSIONS IN ORACLE9I PL/SQL

    제품 : PL/SQL
    작성날짜 : 2001-11-13
    CASE STATEMENTS AND CASE EXPRESSIONS IN ORACLE9I PL/SQL
    =======================================================
    PURPOSE
    아래의 자료는 Case 문에서 oracle 8.1.7과 Oracle 9i의 New Feature로 8.1.7에서는
    sqlplus 에서만 가능했고, 9i 부터는 pl/sql 까지 가능하다.
    Explanation
    1. Oracle 8.1.7 Feature
    Oracle 8.1.7 에서 Case 문은 Decode 문과 유사하지만, 기존의 decode 문을 쓰는 것보다
    더 많은 확장성과 Logical Power와 좋은 성능을 제공한다. 주로 나이와 같이 category 별로
    나눌때 주로 사용하고 Syntex는 아래와 같다.
    CASE WHEN <cond1> THEN <v1> WHEN <cond2> THEN <v2> ... [ELSE <vn+1> ] END
    각각의 WHEN...THEN 절의 argument 는 255 까지 가능하고 이 Limit를 해결하려면
    Oracle 8i Reference를 참조하면 된다.
    The maximum number of arguments in a CASE expression is 255, and each
    WHEN ... THEN pair counts as two arguments. To avoid exceeding the limit of 128 choices,
    you can nest CASE expressions. That is expr1 can itself be a CASE expression.
    Case Example : 한 회사의 모든 종업원의 평균 봉급을 계산하는데 봉급이 $2000보다 작은경우
    2000으로 계산을 하는 방법이 pl/sql을 대신하여 case function을 사용할 수 있다.
    SELECT AVG(CASE when e.sal > 2000 THEN e.sal ELSE 2000 end) FROM emp e;
    Case Example : 나이를 column으로 가지고 있는 customer table을 예로 들어보자.
    SQL> SELECT
    2 SUM(CASE WHEN age BETWEEN 70 AND 79 THEN 1 ELSE 0 END) as "70-79",
    3 SUM(CASE WHEN age BETWEEN 80 AND 89 THEN 1 ELSE 0 END) as "80-89",
    4 SUM(CASE WHEN age BETWEEN 90 AND 99 THEN 1 ELSE 0 END) as "90-99",
    5 SUM(CASE WHEN age > 99 THEN 1 ELSE 0 END) as "100+"
    6 FROM customer;
    70-79 80-89 90-99 100+
    4 2 3 1
    1 SELECT
    2 (CASE WHEN age BETWEEN 70 AND 79 THEN '70-79'
    3 WHEN age BETWEEN 80 and 89 THEN '80-89'
    4 WHEN age BETWEEN 90 and 99 THEN '90-99'
    5 WHEN age > 99 THEN '100+' END) as age_group,
    6 COUNT(*) as age_count
    7 FROM customer
    8 GROUP BY
    9 (CASE WHEN age BETWEEN 70 AND 79 THEN '70-79'
    10 WHEN age BETWEEN 80 and 89 THEN '80-89'
    11 WHEN age BETWEEN 90 and 99 THEN '90-99'
    12* WHEN age > 99 THEN '100+' END)
    SQL> /
    AGE_G AGE_COUNT
    100+ 1
    70-79 4
    80-89 2
    90-99 3
    Example
    2. Oracle 9i Feature
    Oracle 9i부터는 pl/sql에서도 case문을 사용할 수 있으면 이것은
    복잡한 if-else 구문을 없애고, C언어의 switch문과 같은 기능을 한다.
    아래의 9i pl/sql Sample 및 제약 사항을 보면 아래와 같다.
    Sample 1:
    A simple example demonstrating the proper syntax for a case
    statement
    using a character variable as the selector. See the section entitled
    'Restrictions' at the end of this article for details on which PLSQL
    datatypes may appear as a selector in a case statement or
    expression.
    - - - - - - - - - - - - - - - - Code begins here - - - - - - - - - - - -
    set serveroutput on
    declare
    achar char(1) := '&achar';
    begin
    case achar
    when 'A' then dbms_output.put_line('The description was Excellent');
    when 'B' then dbms_output.put_line('The description was Very Good');
    when 'C' then dbms_output.put_line('The description was Good');
    when 'D' then dbms_output.put_line('The description was Fair');
    when 'F' then dbms_output.put_line('The description was Poor');
    else dbms_output.put_line('The description was No such Grade');
    end case;
    end;
    - - - - - - - - - - - - - - - - Code ends here - - - - - - - - - - - -
    Sample 2:
    A simple example demonstrating the proper syntax for a case
    expression
    using a character variable as the selector. See the section entitled
    'Restrictions' at the end of this article for details on which PLSQL
    datatypes may appear as a selector in a case statement or
    expression.
    - - - - - - - - - - - - - - - - Code begins here - - - - - - - - - - - -
    set serveroutput on
    declare
    achar char(1) := '&achar';
    description varchar2(20);
    begin
    description :=
    case achar
    when 'A' then 'Excellent'
    when 'B' then 'Very Good'
    when 'C' then 'Good'
    when 'D' then 'Fair'
    when 'F' then 'Poor'
    else 'No such grade'
    end;
    dbms_output.put_line('The description was ' || description);
    end;
    - - - - - - - - - - - - - - - - Code ends here - - - - - - - - - - - -
    NOTE: The above simple samples demonstrate two subtle differences in the
    syntax
    required for case statements and expressions.
    1) A case STATEMENT is terminated using the 'end case' keywords; a
    case
    EXPRESSION is terminated using only the 'end' keyword.
    2) Each item in a case STATEMENT consists of one or more
    statements, each
    terminated by a semicolon. Each item in a case expression
    consists of
    exactly one expression, not terminated by a semicolon.
    Sample 3:
    Sample 1 demonstrates a simple case statement in which the selector
    is
    compared for equality with each item in the case statement body.
    PL/SQL
    also provides a 'searched' case statement as an alternative; rather
    than
    providing a selector and a list of values, each item in the body of
    the
    case statement provides its own predicate. This predicate can be any
    valid boolean expression, but only one case will be selected.
    - - - - - - - - - - - - - - - - Code begins here - - - - - - - - - - - -
    set serveroutput on
    declare
    achar char(1) := '&achar';
    begin
    case
    when achar = 'A' then dbms_output.put_line('The description was
    Excellent');
    when achar = 'B' then dbms_output.put_line('The description was Very
    Good');
    when achar = 'C' then dbms_output.put_line('The description was
    Good');
    when achar = 'D' then dbms_output.put_line('The description was
    Fair');
    when achar = 'F' then dbms_output.put_line('The description was
    Poor');
    else dbms_output.put_line('The description was No such Grade');
    end case;
    end;
    - - - - - - - - - - - - - - - - Code ends here - - - - - - - - - - - -
    Sample 4:
    This sample demonstrates the proper syntax for a case expression of
    the
    type discussed in Sample 3 above.
    - - - - - - - - - - - - - - - - Code begins here - - - - - - - - - - - -
    set serveroutput on
    declare
    achar char(1) := '&achar';
    description varchar2(20);
    begin
    description :=
    case
    when achar = 'A' then 'Excellent'
    when achar = 'B' then 'Very Good'
    when achar = 'C' then 'Good'
    when achar = 'D' then 'Fair'
    when achar = 'F' then 'Poor'
    else 'No such grade'
    end;
    dbms_output.put_line('The description was ' || description);
    end;
    - - - - - - - - - - - - - - - - Code ends here - - - - - - - - - - - -
    Sample 5:
    This sample demonstrates the use of nested case statements. It is
    also
    permissable to nest case expressions within a case statement (though
    it
    is not demonstrated here), but nesting of case statements within a
    case
    expression is not possible since statements do not return any value.
    - - - - - - - - - - - - - - - - Code begins here - - - - - - - - - - - -
    set serveroutput on
    declare
    anum1 number := &anum1;
    anum2 number := &anum2;
    answer number;
    begin
    case anum1
    when 1 then case anum2
    when 1 then answer := 10;
    when 2 then answer := 20;
    when 3 then answer := 30;
    else answer := 999;
    end case;
    when 2 then case anum2
    when 1 then answer := 15;
    when 2 then answer := 25;
    when 3 then answer := 35;
    else answer := 777;
    end case;
    else answer := 555;
    end case;
    dbms_output.put_line('The answer is ' || answer);
    end;
    - - - - - - - - - - - - - - - - Code ends here - - - - - - - - - - - -
    Sample 6:
    This sample demonstrates nesting of case expressions within another
    case
    expression. Note again the absence of semicolons to terminate both
    the
    nested case expression and the individual cases of those
    expressions.
    - - - - - - - - - - - - - - - - Code begins here - - - - - - - - - - - -
    set serveroutput on
    declare
    anum1 number := &anum1;
    anum2 number := &anum2;
    answer number;
    begin
    answer :=
    case anum1
    when 1 then case anum2
    when 1 then 10
    when 2 then 20
    when 3 then 30
    else 999
    end
    when 2 then case anum2
    when 1 then 15
    when 2 then 25
    when 3 then 35
    else 777
    end
    else 555
    end;
    dbms_output.put_line('The answer is ' || answer);
    end;
    - - - - - - - - - - - - - - - - Code ends here - - - - - - - - - - - -
    Although PL/SQL anonymous blocks have been used in all of the examples
    so far,
    case statements and expressions can also be used in procedures,
    functions, and
    packages with no changes to the syntax.
    The following samples are included for completeness and demonstrate the
    use of
    case statements and/or expressions in each of these scenarios.
    Sample 7:
    This sample demonstrates use of a case statement in a stored
    procedure.
    Note that this sample also demonstrates that it is possible for each
    of
    the items in the case body to consist of more than one statement.
    - - - - - - - - - - - - - - - - Code begins here - - - - - - - - - - - -
    set serveroutput on
    create or replace procedure testcasestmt ( anum IN number ) is
    begin
    case
    when anum = 1 then dbms_output.put_line('The number was One');
    dbms_output.put_line('In case 1');
    when anum = 2 then dbms_output.put_line('The number was Two');
    dbms_output.put_line('In case 2');
    when anum = 3 then dbms_output.put_line('The number was Three');
    dbms_output.put_line('In case 3');
    when anum = 4 then dbms_output.put_line('The number was Four');
    dbms_output.put_line('In case 4');
    when anum = 5 then dbms_output.put_line('The number was Five');
    dbms_output.put_line('In case 5');
    else dbms_output.put_line('The description was Invalid input');
    dbms_output.put_line('In the else case');
    end case;
    end;
    exec testcasestmt(&anum);
    - - - - - - - - - - - - - - - - Code ends here - - - - - - - - - - - -
    Sample 8:
    This sample demonstrates the use of a case statement in a stored
    package.
    - - - - - - - - - - - - - - - - Code begins here - - - - - - - - - - - -
    set serveroutput on
    create or replace package testpkg2 is
    procedure testcasestmt ( anum IN number );
    function testcasestmt_f ( anum IN number ) return number;
    end testpkg2;
    create or replace package body testpkg2 is
    procedure testcasestmt ( anum IN number ) is
    begin
    case
    when anum = 1 then dbms_output.put_line('The number was One');
    dbms_output.put_line('In case 1');
    when anum = 2 then dbms_output.put_line('The number was Two');
    dbms_output.put_line('In case 2');
    when anum = 3 then dbms_output.put_line('The number was Three');
    dbms_output.put_line('In case 3');
    when anum = 4 then dbms_output.put_line('The number was Four');
    dbms_output.put_line('In case 4');
    when anum = 5 then dbms_output.put_line('The number was Five');
    dbms_output.put_line('In case 5');
    else dbms_output.put_line('The description was Invalid input');
    dbms_output.put_line('In the else case');
    end case;
    end;
    function testcasestmt_f ( anum IN number ) return number is
    begin
    case
    when anum = 1 then dbms_output.put_line('The number was One');
    dbms_output.put_line('In case 1');
    when anum = 2 then dbms_output.put_line('The number was Two');
    dbms_output.put_line('In case 2');
    when anum = 3 then dbms_output.put_line('The number was Three');
    dbms_output.put_line('In case 3');
    when anum = 4 then dbms_output.put_line('The number was Four');
    dbms_output.put_line('In case 4');
    when anum = 5 then dbms_output.put_line('The number was Five');
    dbms_output.put_line('In case 5');
    else dbms_output.put_line('The description was Invalid input');
    dbms_output.put_line('In the else case');
    end case;
    return anum;
    end;
    end testpkg2;
    exec testpkg2.testcasestmt(&anum);
    variable numout number
    exec :numout := testpkg2.testcasestmt_f(&anum);
    print numout
    - - - - - - - - - - - - - - - - Code ends here - - - - - - - - - - - -
    Sample 9:
    This sample demonstrates the use of a case expression in a stored
    package.
    - - - - - - - - - - - - - - - - Code begins here - - - - - - - - - - - -
    set serveroutput on
    create or replace package testpkg is
    procedure testcase ( anum IN number );
    function testcase_f ( anum IN number ) return number;
    end testpkg;
    create or replace package body testpkg is
    procedure testcase ( anum IN number ) is
    anumber number := anum;
    anothernum number;
    begin
    anothernum :=
    case
    when anumber = 1 then anumber + 1
    when anumber = 2 then anumber + 2
    when anumber = 3 then anumber + 3
    when anumber = 4 then anumber + 4
    when anumber = 5 then anumber + 5
    else 999
    end;
    dbms_output.put_line('The number was ' || anothernum);
    end;
    function testcase_f ( anum IN number ) return number is
    anumber number := anum;
    anothernum number;
    begin
    anothernum :=
    case
    when anumber = 1 then anumber + 1
    when anumber = 2 then anumber + 2
    when anumber = 3 then anumber + 3
    when anumber = 4 then anumber + 4
    when anumber = 5 then anumber + 5
    else 999
    end;
    dbms_output.put_line('The number was ' || anothernum);
    return anothernum;
    end;
    end testpkg;
    variable numout number
    exec testpkg.testcase(&anum);
    exec :numout := testpkg.testcase_f(&anum);
    print numout
    - - - - - - - - - - - - - - - - Code ends here - - - - - - - - - - - -
    제약 사항
    다음의 databasetype은 case 문에서 지원되지 않는다.
    BLOB
    BFILE
    VARRAY
    Nested Table
    PL/SQL Record
    PL/SQL Version 2 tables (index by tables)
    Object type (user-defined type)
    All of these types except for object types face a similar restriction
    even for if statements (i.e. they cannot be compared for equality directly) so this is unlikely to change for these types. Lack of support for object types is simply an implementation restriction which may be relaxed in future releases.
    Reference Ducumment
    Oracle 8.1.7 Manual
    NOTE:131557.1

    I have done the following code but doesn't
    like the statement of - "case(butNext)". What do you mean "doesn't like" -- did you get an error message?
    I'm guessing it won't compile because you're trying to switch on a Button.
    I tried something
    like "g.fillOval(100,50,70,90, BorderLayout.NORTH)"...no that doesn't make sense. You only use BorderLayout.NORTH when you're adding components to a BorderLayout layout manager. An oval is not a component and fillOval isn't adding a component and Graphics is not a Panel or layout manager.
    Would appreciate it if someone could tell me how to position
    shapes using the graohic method. I think the problem is that you're confusing shapes with components.

  • How 2 run .flv files on nokia e71

    I have some .flx files in my e71.
    Can any body guide me how 2 run them.
    Thanx
    Message Edited by haarun on 03-Aug-2009 11:56 AM

    ur sybject says .flv but body text says .flx. I am not sure abt flx files but for .flv there are many apps available, emtube, mobitubia and some other. There could be a codec difference though.
    Thanks
    Aditya 

  • My brand new E71 and my disappointments, please he...

    Hello,
    I just purchased a brand new E71, the US version. I've been playing with it the past few days and I'm not very happy with it. I primarily bought the phone for e-mail/WEB, GPS & maps. However, I'm seeing the following issues:
    1- My first and foremost problem is the GPS lock times. No matter where I am, downtown Boston with a lot of buildings, or suburban Massachusetts with no buildings around and clear view of the sky in all directions, E71 takes a long time (5+ minutes) to get the first position. I find this simply unacceptable. Are there any other e71 users out here? What are your experiences? Are there any settings that I need to change (positioning server, etc)? In the settings, currently all the GPS positioning methods are enabled, including AGPS. But even without AGPS, shouldn't I be getting a lock quickly if I don't have any obstructions in the sky (tall buildings, etc)? My experience with iPhone GPS has been so much better.
    2- WLAN connections appear to be very slow during web surfing. Again my comparison is with an iPhone. I've tried connecting an iPhone and E71 to the same WLAN network and load up a few web pages. There was no comparison, the iPhone killed my E71 in all cases This was very disappointing. Is there a web page or an application that can help me measure my phones download/upload speed in my WLAN at home?
    I have not been able to get past the above two issues during the past week and I'd appreciate help and advice. I had high hopes for this device (been a Nokia fan for 15+ years now), but I'll have to return this if I can't get past these issues.
    Sincerely

    I have an E71-2, and I can tell you two things.
    1) The GPS in this device is very unstable.  In fact, mine never worked, but I bought this phone in US and I live in Venezuela, so try to send it to warranty exchange is a little expensive (and/or time-consuming).  I prefer to buy a $40 external GPS, has better reception than ANY internal GPS in any phone, and works in the E71 and in my laptop I know it's a matter of taste, some people prefer to have the GPS in-device, but I see that the integrated GPS in any phone is worse than any external GPS.  I compared mine with the external GPS against an E71 side-to-side, and the difference was: mine: 9-10 satellites locked, the E71 using internal GPS: 6.Precision in mine was 8 meters (CLEP at 90%) while internal GPS was 20-30 meters (Nokia doesn't inform about the CLEP)
    2) The WLAN issues could be solved via a firmware update.  I remember I had the 110 version and is not as stable as now (I'm still using the 210 version).  I tested against a BB Pearl and the difference is incredible... The BB is still connecting to RIM's server, while my E71 is already playing a video via Flash Lite 3.
    Concluding: do a firmware update.  The GPS? Forget it... or buy a external inexpensive GPS, you will note the difference

  • E71 use desktop internet

    After searching for a while i have not found a conclusive answer to my question.
    Is it possible to share the desktop internet with my mobile phone (E71 in this case) using PC Suite?
    I want to use internet true my pc on my mobile whenever is it connected with pc suite (usb / bluetooth)
    I know its possible to use the Mobile phones internet from the desktop by using the Pc suite software.
    It is even possible???
    I know i can get it to work with my old Windows Mobile 5 phone within seconds...............

    Not possible. The USB connection only allows for data transfer between the computer and the device, it cannot function as a gateway to the Internet.
    tt2

  • How can I connect dots across missing data points in a line chart?

    Hi all!
    I have a table in Numbers that I update every few days with a new value for the current date (in this case body metrics like weight, etc.), which looks something like this:
    Column 1              Column 2      Column 3
    Aug 16, 2011         87.1             15.4
    Aug 17, 2011         86.6
    Aug 18, 2011         86.1
    Aug 19, 2011              
    Aug 20, 2011         85.7             14.6
    Aug 21, 2011         85.3
    Every once in a while there will be a missing value for a given date (because I didn't take a reading on that day). When I plot each column against the date on a line chart, there is a gap where there are missing data points. The line does not connect "across" missing data points. Is there a way to make the line connect across missing data points?
    Thanks for any help. This thing has been driving me nuts!

    Leave your nuts in peace.
    Don't use line charts but scatter charts.
    These ones are able to do the trick.
    Of course to do that you must study a bit of Numbers User Guide.
    In column D of the Main table, the formula is :
    =IF(ISBLANK($B),99999,ROW())
    In column E of the Main table, the formula is :
    =IF(ISBLANK($C),99999,ROW())
    Now I describe the table charter.
    In column A, the formula is :
    =IFERROR(DAY(OFFSET(Main :: $A$1,SMALL(Main :: $D,ROW())-1,0)),"")
    In column B,the formula is :
    =IFERROR(OFFSET(Main :: $A$1,SMALL(Main :: $D,ROW())-1,1),"")
    In column C, the formula is :
    =IFERROR(DAY(OFFSET(Main :: $A$1,SMALL(Main :: $E,ROW())-1,0)),"")
    In column D, the formula is :
    =IFERROR(OFFSET(Main :: $A$1,SMALL(Main :: $E,ROW())-1,2),"")
    In this table, select the range A1 … D5
    and ask for a Scatter chart.
    You will get what you need.
    I asked that points are joined by curves
    I just edited the parameters of Xaxis and Yaxis to get a cleaner look.
    I repeat one more time that knowing what is written in the User Guides is useful to be able to solve problems with no obvious answer.
    Yvan KOENIG (VALLAURIS, France) samedi 27 août 2011 15:59:20
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • THE WORST EXPERIENCE I've ever had with a phone co...

    So, where do I start. I will give you a summary to start with...
    Bought an L920 from EE in late December and took it in to repair mid January. Got it back today with original problems still present plus a whole load of scratches and dents in the body and screen. Poor customer service from EE throughout the whole process. 
    Now for a more in depth explanation.
    Bought an £330 L920 on PAYG on 24th Dec from an EE store in Cardiff. Actually I bought two, one for me and one for my brother (which is pretty much problem free). I was happy with the phone for the first week until I noticed a few problems while comparing it to my brother's.  
    The first problem was the bezel not sitting flush with the screen on the left hand side. There is a gap spanning approx 1mm and a noticeable bulge halfway down the screen, where the gap is the widest. I did notice this a couple days in but thought nothing of it as it wasn't emphasised by the collection of dust and was so excited about having the phone that I didn't want to have to deal with taking it back in. Over the course of just over 2 weeks before taking in for repair, the build up of dust was very annoying and unsightly.
    Another problem with the screen is that the whole display doesnt sit flush with the body and the raised lip can be seen by eye and felt. It is easily noticeable. Not only does it not sit flush, when pressing down on the screen you can see the whole screen sink into the body. This problem was not noticed until the days leading up to me taking it in for repair.
    There is light leaking into the screen from the search button. This is easily seen with a black screen.
    There was creaking on the bottom left and top left of the body, which got very irritating and non-associative of a supposed premium handset. If it was a cheap handset I would feel more comfortable with this problem and just put up with it.
    Into the second week I noticed that there was the dust under the front facing camera. I did blow into the ear piece a few times and it did seem to move the dust, but reappeared almost instantly. This was the last straw, I couldn't ignore the problems anymore as they were constantly playing on my mind everytime I picked up the phone.
    Hardware problems aside I had a few freezes and crashes here and there where I had to reset the phone.
    Took it to the EE store in Leicester as this is one of the closest stores to Market Harborough. The fare was £10 by train and had to do this twice. I know this may seem petty but it was £20 that I didn't need to spend if I wasn't given a faulty phone. Took it in for repair on the Sat 13th Jan and was told that the turnaround for repairs is usually a week (2 weeks at most) and that it was likely I could pick it up the following weekend. I was surprised by this and took it with a pinch of salt. 
    I described most of the problems, the only problem I omitted was the freezing and crashing as its the OS which is I assume a Windows problem.
    At the time of speaking with the EE rep I was told that Nokia would be dealing with this repair from thereonin and I could visit their site to track the repair. This was inaccurate as it was sent to EE's repair centre. I discovered this after posting a problem on this forum in regards to going 9 days without any update. He made it explicitly clear that if I wanted any updates I was to go through the Nokia site not EE as he wouldn't be able to tell me anything that the Nokia tracking service couldn't. Anyway after finding out it was with EE's repair centre I proceeded to try contacting them. Near impossible to get through. Phoning numerous times every hour their lines were constantly busy and they do not give you the option of waiting in a queue (I think if it is above a certain volume). From about 20th Feb (after discovering it was with EE not Nokia) to today Tues 5th Feb I was only able to get through twice. I must have called them in excess of 100 times.
    The two occasions I did get through I was greeted with incompetence. Unhelpful in all respects. The second time I got through the lady over the phone basically lied to me. She told me that the problems I had listed in the report were fixed and that it would be dispatched by the end of the day. This was Thurs 31st Jan and I received it today Tues 5th Feb. 6 days to post within the UK? I'd already waited over 3 weeks so what the hell what's another couple days on top. I was reassured that the handset would not leave the repair centre without the repairs being addressed and if it didn't pass their strict quality control standards. Load of b*******!
    Went to EE Leicester after work this evening and things just didn't go to plan. At the first instance I had problems with the manner in which I was dealt with but we soon made amends and this leads me to THE MAIN PROBLEM.
    After waiting over 3 weeks to get my phone back from repair I was shocked and utterly disappointed as soon as I laid my eyes on it. Same bulge and gap in the body, same sinking screen, same light leakage, different dust in the FFC and with added extras i.e. scratches and dents around bezel and edge of body. And of all the things for them to repair they stopped the creaking!
    Was offered unacceptable solutions, the only acceptable solution in my eyes is to get a brand new handset from back store. I bought the phone especially for its camera performance (which I'm lukewarm about anyway and I swear is producing softer shots post repair) with the intent of bringing it on holiday to take some beautiful shots. 
    The first solution was to leave the phone there and have it sent back to the repair centre. No way was I giving my phone back to them. It would probably come back with a cracked screen.
    Second was to take it up with Nokia. So Nokia what can you do for me? Will I get a new phone by 23rd Feb so I can take it on holiday with me where I will be proposing to my girlfriend???
    Sorry the stupidly long post but I need something done. Now
    Also forget to mention that the metal Nokia camera plate on the back is not flush with the body. I don't know if this is bad design but the raised lip is annoying when holding it in hand.

    The offer from EE was presumably to fix the phone , which they are entitled to do, you turned it down.
    You can either go back to them and take up their offer to repair or you can try the Nokia warranty which will involve you contacting Nokia direct either by taking it to an authorised/approved Nokia care centre or submitting an online claim under the warranty to Nokia and following whatever instructions they issue for sending the phone to them.
    You have not so far contacted Nokia as you have dealt only with EE.
    I'm surprised the EE assistant told you the phone was being sent to Nokia rather than their inhouse technicians although I think that was simply a mistake on the assistant's part.
    How did you get a PAYG phone from EE? I thought EE were offering contracts only.
    So far as time scales EE don't post phones backwards and forwards on an individual basis. The shops use courier services and the frequency of deliveries and collections will depend on the number of shops in a town and the level of goods going back and forth.

  • Styles are broken in Pages 5

    I just upgraded to Pages 5.
    I opened a document that I'd been working on in the previous version of Pages. It has several styles, incuding a bulleted list style called "main bullet".
    I attempted to apply that style to a section of text, and while it did indent the text properly, it did not add bullets. (Also, in the Style panel a bullet does not appear next to the "main bullet" style as it does in Pages 4. This was my first clue that something was wrong.)
    So I went back in the text to a bulleted list that uses the "main bullet" style. I selected the text, then went to the Style panel and chose "main bullet" > update style. This did not seem to help. The "main bullet" style still has no bullet next to it in the Style panel, and when I tried again to apply it to some text, the bullet doesn't appear.
    I decided to try a different style, in this case "body". I went to a section that has the "main bullet" style, selected it, and applied "body". The indentation changed, but it did not remove the bullet as it was supposed to.
    Is this a bug, or do styles work differently in Pages 5?
    It appears that styles do not include formatting like bullets, which, if true, is a huge problem.
    I was also upset to learn that once I've opened a document in Pages 5, I can no longer open it in Pages 4. So I'm essentially stuck with Pages 5 whether I like it or not.

    I have exactly the same problem but I found that Pages '09 was still installed on my system after the Pages/Mavericks update - search for Pages in Spotlight.
    So, I just deleted the Pages 5 document that I had been working on and started all over again with trusty Pages '09.
    You are correct styles are severely broken! How disappointing for this new, much vaunted, update.
    I guess I'll carry on using '09 until Apple come up with a 5.1 version...
    Other bugs I found:
    1. Resizing an image so that it just fits on a page - when it jumps to the new page (because it's stretch too far) and you make it smaller to fit the space on the page, the preview stops updating so you have no idea how big it's going to be...
    2. Headers and Footers don't carry over properly from an '09 document
    3. Empty boxes have the word 'Text' in them rather than empty when you carry over from an '09 document
    4. It is very slow to update headers...
    5. Oh and did I mention styles are completely destroyed and are a BIG FAIL in Pages 5 IMO

  • Character styles in Pages 5

    Can't find Character styles in Pages 5. After a couple of hours of work I am about ready to jump back to Microsoft Word, which annoys me beyond belief. At least Pages 09/11 had Character styles, AND hot keys for styles (even if they were limited to F-keys).
    I use several different styles constantly through my documents, including character styles, and Pages 5 is letting me down BIG time.
    OK, it's cool to have object styles - I can dig that.
    BUT WHY ELIMINATE CHARACTER STYLES?
    Sorry for shouting.
    What a pity. Maybe the iWork software engineers don't actually work for Apple . . . yeah, that could be it. Or they don't actually USE the products they design.
    I encourage everyone to make liberal use of Apple's feedback page, http://www.apple.com/feedback/

    I posted this in another thread before I discovered this one:
    I just upgraded to Pages 5.
    I opened a document that I'd been working on in the previous version of Pages. It has several styles, incuding a bulleted list style called "main bullet".
    I attempted to apply that style to a section of text, and while it did indent the text properly, it did not add bullets. (Also, in the Style panel a bullet does not appear next to the "main bullet" style as it does in Pages 4. This was my first clue that something was wrong.)
    So I went back in the text to a bulleted list that uses the "main bullet" style. I selected the text, then went to the Style panel and chose "main bullet" > update style. This did not seem to help. The "main bullet" style still has no bullet next to it in the Style panel, and when I tried again to apply it to some text, the bullet doesn't appear.
    I decided to try a different style, in this case "body". I went to a section that has the "main bullet" style, selected it, and applied "body". The indentation changed, but it did not remove the bullet as it was supposed to.
    Is this a bug, or do styles work differently in Pages 5?
    It appears that styles do not include formatting like bullets, which, if true, is a huge problem.
    I was also upset to learn that once I've opened a document in Pages 5, I can no longer open it in Pages 4. So I'm essentially stuck with Pages 5 whether I like it or not.
    Is anyone else noticing this?

  • Modifying a Template will not update the pages

    I have a template that is having problems to update all the
    pages built with the template. When I edit > save > Update
    template used in these files, everything looks fine- the updates
    log shows that it has updated 12 of 12 pages, BUT, when I check the
    pages, they won't have the changes made. Here are some things that
    I have being trying:
    1. When I created each page based on the template - In the
    new document log > page from template, I checked the option
    "update page when template changes"
    2. I tried changing the area that I edited (Menu Botons) to
    repeat region, then to editable region, and so on... But the
    problem persist.
    3. I chose modify > Templates > Apply Template to
    page.... and nothing.
    4. I re-read the DW Help, tutorials and watch the adobe
    videos on this topic...
    If somebody can tell me what I might be doing wrong, I will
    appreciate your help

    Why are you using the gotoURL behavior on your menu images
    instead of an
    ordinary hyperlink? In other words, you have this -
    <img src="
    http://www.prueba.turocpr.com/images/boton_sa_sobreturoc.gif"
    name="sobre_turoc" width="195" height="24" vspace="2"
    id="Image6"
    onclick="MM_goToURL('parent','index.html');return
    document.MM_returnValue"
    onmouseover="MM_swapImage('Image6','','images/boton_sa_sobreturoc2.gif',1)"
    onmouseout="MM_swapImgRestore()" />
    and you should have this -
    <a href="index.html"
    onmouseover="MM_swapImage('Image6','','images/boton_sa_sobreturoc2.gif',1)"
    onmouseout="MM_swapImgRestore()"><img
    src="
    http://www.prueba.turocpr.com/images/boton_sa_sobreturoc.gif"
    name="sobre_turoc" width="195" height="24" vspace="2"
    id="Image6" /></a>
    Anyhow, since you are using IMAGES for the menu buttons it
    complicates your
    solution a bit, but you can use this method -
    Put this in script tags in the head of the document -
    function P7_downImage() {
    var g7="<imagename>"
    var g7url="<pathname>"
    if ((g7=MM_findObj(g7))!=null) {g7.src=g7url;}
    and this on the <body> tag
    onload="P7_downImage()"
    Then on each page you would need to make two edits:
    Set g7 to the *name* of the button (not the file name but the
    HTML name -
    e.g., "productsbutt"), and g7url to the pathname to the
    button (e.g.,
    "images/nav/button3.gif"), and bada bing, bada boom!
    There is an excellent tutorial here -
    http://www.projectseven.com/support/answers.asp?id=126
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Pablo163" <[email protected]> wrote in
    message
    news:[email protected]...
    > Ok, I just uploaded the layout to this address:
    >
    http://www.prueba.turocpr.com
    > You will notice that the menu is in gray color, when
    they land in a
    > particular
    > topic/page, that page button will be in blue: Example:
    >
    http://www.prueba.turocpr.com/layout2.jpg
    I just don't know where and
    > how is
    > done in the CSS, - Here is the external code, just in
    case:
    > body {
    > background-color: #FFFFFF;
    > font-family: Verdana, Arial, Helvetica, sans-serif;
    > font-size: small;
    > font-style: normal;
    > color: #424242;
    > line-height: 20px;
    > }
    >
    > body, td, th {
    > color: #424242;
    > }
    >
    > h1, h2, h4 {
    > color: #000099;
    > font-family: "Times New Roman", Times, serif;
    > font-style: normal;
    > }
    >
    > h3, h5, h6 {
    > color: #000099;
    > font-size: small;
    > }
    >
    > a {
    > color: #000099;
    > }
    > a:link {
    > }
    >
    >
    >

  • How can i make a background color linear?

    i want to put a background color have a linear effect, but im not sure how to do that. i want it so that it will fit the entire browser screen. i dont know a lot about backgrounds, i know that i can make a background color fill the entire browser and make a image repeat itself to fit the browser, but thats all i know.

    WOW...this is exactly what i have been searching for over tha last 2 weeks but i finally found out how to do it perfectly.
    I found the solution after analyzing a site i visited that had the effect i wanted.
    Herez a sample of the page i created with the effect...exactly as you drew it....but with diferent colours,lol.
    http://edutchz.freehostia.com/sample/
    I have also attached bg.jpg with this post as well as the CSS i used; but to see them in action use the above link
    Now all u need to do is create a sinlge strip of image....say 1000px wide by 10px high. On both exterior sides of this image place your linear colurs from outside inwards to cover say 100 or 150px....now do this exactly on the other side.....this will leave a central region with white colour.
    Now name it bg,jpg.....use CSS to place it on your page....in my case;
    body { margin : 0px;
    background-color: #eeeeee;
    background-image:
    url(bg.jpg);
    background-position: top center;
    background-repeat: repeat-y
    also change the background-color to one that nearly matches your linear img color.
    Hope this helpd

  • WIN/Vista, PSE 7.0:  Organizer problems with dates

    Im working with our scanned photos now, so there is no EXIF data and the only dates are the scanned date and any later corrections in Photoshop CS3 before or after importing into PSE 7.0. I now have two date related problems that I didnt have with PE 5.0.
    1) In the Organizer view, when I right click on the date to bring up the Adjust Date and Time screen, then click on Change to a specified date and time and click OK the day automatically changes to a day earlier, which has caused much confusion since all I am wanting to do is set a time to sequence photos from multiple cameras. How do I keep it from automatically changing the date?
    2) Also, Ive had multiple times that Ive changed the date on a couple of photos and PSE 7 will place them incorrectly so that they are non-chronological. Specifically I now have two photos from a string of many on Dec 24 & 25, and some on Dec 26 and after. These two photos belong on Dec 26 chronologically, as well as where they fit in my file naming system. If I change the date on these to 12/26/1976, though, they are placed in my 12/25/1976 photos, not 12/26 where they should be. I have another photo dated 1/17/1977 that PSE has placed between 1/16 and 1/9/1977.
    I thought these were quirky enough that I actually removed and reinstalled PSE 7.0, but these issues are unchanged.
    FYI: Settings in Edit>Preferences:
    General/Display Options/Date (Newest First): Show Newest First within Each Day is selected
    Files/File Options: Use Last Modified Date if EXIF . . . is unchecked.

    > In the Organizer view, when I right click on the date to bring up the "Adjust Date and Time" screen, then click on "Change to a specified date and time" and click "OK" the day automatically changes to a day earlier, which has caused much confusion since all I am wanting to do is set a time to sequence photos from multiple cameras. How do I keep it from automatically changing the date?
    When a photo has a date but unknown time, PSE 6 and 7 (and perhaps 5 too) behave this way. Its a bug thats been reported to Adobe.
    > 2) Also, I've had multiple times that I've changed the date on a couple of photos and PSE 7 will place them incorrectly so that they are non-chronological. Specifically I now have two photos from a string of many on Dec 24 & 25, and some on Dec 26 and after. These two photos belong on Dec 26 chronologically, as well as where they fit in my file naming system. If I change the date on these to 12/26/1976, though, they are placed in my 12/25/1976 photos, not 12/26 where they should be. I have another photo dated 1/17/1977 that PSE has placed between 1/16 and 1/9/1977.
    When this happens, which view are you in? Display > Thumbnail View or Display > Folder Location view? Is this using Smart Albums to search by date? If this is still happening, can you upload a screen shot, the incorrect 12/26/1976 photo, and the adjacent 12/25/1976 photo? You can post these for free at www.pixentral.com. Ill take a look at their metadata.
    There are a number of problems with time unknown, so Ive stopped using it:
    http://www.adobeforums.com/webx?128@@.59b6aaa0
    In particular:
    - Search with date ranges doesnt properly handle time unknown.
    - Other tools, such as Vista Explorer, dont correctly handle dates with time unknown in metadata written by PSE.
    - If you have a series of slides youve scanned, you know their relative time ordering (due to the slide numbering) but not their absolute time. Theres no convenient way of preserving that ordering within PSE thumbnail view if you use time unknown.
    So instead of unknown, I assign the times 12:00 AM, 12:05 AM, 12:10 AM, etc. (leaving gaps in case I need to insert another scan later).

  • Older Software ? or Developer Question ?, ?

    Mathematica as does w3-org, & the WEB have the XML for Transforming & Visualising a Simple Methane Atom
    its this :
    But You Need this block :
    << Graphics`Shapes`
    ModLToGraphics3D[modl_] := Block[{defs [ Cases[modl, XMLElement["DEFINE", __], Infinity], body = First[Cases[modl, XMLElement["body", __], Infinity]],
    gr, moldef, themols, theatoms},
    ProcessDefinition /@defs; themols }
    Flatten@Cases[body, XMLElement["molecule", {"type" →t_, ___}, __] :> moldef[t], Infinity]; theatoms = Cases[body, XMLElement["atom", {___, "type" → t_, "position" → p_, __}, __] :>
    Append[moldef[t], MolPosToList[p]], Infinity];Graphics3D[MolToGraphics
    /@ Join[themols, theatoms], Boxed → False]
    ProcessDefinition[XMLElement["DEFINE", {"name" → name_String},
    {XMLElement["molecule", {}, subdef___]}] := (moldef [name] = ProcessSubdef /@ subdef);
    Off[General::spell1]
    ProcessDefinition[XMLElement["DEFINE", {"name" → name_String},
    {XMLElement["atom", {a__}, {}]}]]:= (moldef [name] = Atom[GetRad[a], GetColor[a]]); ProcessSubdef[XMLElement["atom", {"type" → t_, "id" → id_, pos___}, {}]] :=
    (moldef [id] = Append[moldef[t], GetPos[pos]]);
    ProcessSubdef [XMLElement["bond", {"atom1" → a1_, "atom2" → a2_}, { } ]]:=
    Bond[moldef[a1][[3]], moldef [a2] [[3]]]
    MolStringListToList [molstringlist_String] :=  Module[{stream = StringToStream[molstringlist], thelist},
    thelist = Read[stream, {Number, Number, Number}]; Close[stream]; thelist];
    MolColorToRGBColor[molcolor_String] := RGBColor @@ MolStringListToList[molcolor];
    MolPosToList[molpos_String] := MolStringListToList[molpos];
    GetPos[___, "position" → p_, ___]:= MolPosToList[p]; GetRad[___, "radius" → r_, ___]:= ToExpression [r];
    GetColor[___, "color" → c_, ___] := MolColorToRGBColor[c];
    GetColor [___] := GrayLevel[1];
    MolToGraphics[Bond[pts__]] := {Thickness[0.04], Line[{pts}]}
    MolToGraphics[Atom[r_, col_, pos_]] :=
    {SurfaceColor[ RGBColor[0, 0.501961, 0] , RGBColor[0, 0.501961, 0] ],
    EdgeForm[], TranslateShape[Sphere[r, 20, 20], pos}];
    MoDLToGraphics3D[modl_] := Block[{
    defs = Cases[modl, XMLElement["DEFINE", ___], Infinity], body = First[Cases[modl, XMLElement["body", ___], Infinity]], moldef, themols, theatoms},
    ProcessDefinition /@ defs; themols }
    Flatten@Cases[body,
    XMLElement["molecule", {___, "type" → t_, ___}, __
    ] : → moldef[t], Infinity];
    theatoms = Cases[body,
    XMLElement["atom", {___, "type" → t_, ___, "position" → p_, ___},
    __] : → Append[moldef[t], MolStringListToList[p]], Infinity];
    Graphic3D[MolToGraphics/@Join[themols,theatoms,],Boxed →False]
    Question is How to turn the center atom from green to black which the oroginal was red hydrogens and a yellow carbon in the center   I want to change it to a Phenathrene mole which is center carbon black outer hydrogens green  Thank You Emile

    I only see question marks for the images you embedded.
    If you are referring to the information in section Creating a 3D Graphic from an XML File on this page:
    http://www.mathematica-journal.com/issue/v9i1/contents/XMLFeatures/XMLFeatures_3 .html
    The color of each atom is defined by the atom element color attribute in methane.xml, which is an R G B value.
    <DEFINE name="C">
         <atom radius="0.3" color="1 1 0" />
    </DEFINE>
    "1 1 0" is yellow, as appears in the methane graphic on that page.  Change to "0 0 0" for black.

  • Coloring of Particular Cells in a dynamic internal table(field symbols)

    Hi,
         I have a requirement to introduce color into some particular cells in a dynamic internal table(Field symbol) based on some conditions.I know that color can be introduced at cell level in the case of static internal table.But, can anybody tell me whether it is possible to introduce color to particular cells in the dynamic internal table(Field Symbol) .Please suggest me on this issue.
    Thanks in advance,
    Rajesh

    Hi,
    This is the sample coding for the colour cell report.
    Kindly go through it. It will helps u.
    REPORT YMS_COLOURTEST .
    DATA: BEGIN OF TP OCCURS 10, ID, NR(8), TEXT(255), END OF TP.
    DATA: LENGTH TYPE I VALUE 8, " Length of list
    TESTSTRING(15) TYPE C VALUE '012345678901234',
    WIDTH TYPE I. " Width of list
    DATA: TXT_REPORT LIKE DOKHL-OBJECT.
    START-OF-SELECTION.
    PERFORM HEADING.
    PERFORM OUTPUT_BODY.
    FORM HEADING.
    FORMAT INTENSIFIED OFF. " Remove any INTENSIFIED
    ULINE AT (WIDTH). " Upper frame border
    FORMAT COLOR COL_HEADING INTENSIFIED." Title color
    WRITE: / SY-VLINE. " Left border
    WRITE: 'No |Colour |intensified |intensified off|',
    'inverse' NO-GAP.
    WRITE: AT WIDTH SY-VLINE. " Right border
    ULINE AT (WIDTH). " Line below titles
    FORMAT COLOR OFF.
    ENDFORM.
    FORM OUTPUT_BODY.
    DO LENGTH TIMES.
    PERFORM WRITE_LINE USING SY-INDEX.
    ENDDO.
    ENDFORM.
    FORM WRITE_LINE USING COUNT TYPE I.
    DATA: HELP(14) TYPE C,
    COUNT1 TYPE I.
    COUNT1 = SY-INDEX - 1.
    WRITE: / SY-VLINE NO-GAP.
    WRITE: (4) COUNT1 COLOR COL_KEY INTENSIFIED NO-GAP.
    WRITE: SY-VLINE NO-GAP.
    CASE COUNT1.
    WHEN '0'.
    HELP = 'COL_BACKGROUND'.
    WHEN '1'.
    HELP = 'COL_HEADING'.
    WHEN '2'.
    HELP = 'COL_NORMAL'.
    WHEN '3'.
    HELP = 'COL_TOTAL'.
    WHEN '4'.
    HELP = 'COL_KEY'.
    WHEN '5'.
    HELP = 'COL_POSITIVE'.
    WHEN '6'.
    HELP = 'COL_NEGATIVE'.
    WHEN '7'.
    HELP = 'COL_GROUP'.
    ENDCASE.
    WRITE: HELP COLOR COL_KEY INTENSIFIED NO-GAP.
    WRITE: SY-VLINE NO-GAP.
    WRITE: TESTSTRING COLOR = COUNT1 INTENSIFIED NO-GAP.
    WRITE: SY-VLINE NO-GAP.
    WRITE: TESTSTRING COLOR = COUNT1 INTENSIFIED OFF NO-GAP.
    WRITE: SY-VLINE NO-GAP.
    WRITE: TESTSTRING COLOR = COUNT1 INVERSE NO-GAP.
    WRITE AT WIDTH SY-VLINE NO-GAP.
    ENDFORM.
    Thanks,
    Shankar

Maybe you are looking for

  • Questions on PROMPT() in DM

    Hi, a couple of questions regarding the PROMPT() options in a data manager package: 1)  is it possible to refer to a dimension member list of an existing dimension when using TEXT of COMBOBOX option? I only succeed to hard coding the possible values

  • Setup tabel

    Hi all, Can anybody tell me the concept of Setup tables in bw . Before filling setup table what steps i should have to follow ?Is there any common t-code for filling setup table for data sources?how can i delete setup table data ?Is there any common

  • Updated to Mavericks - Now dropping WiFi connections like crazy

    The title says it all. On an early 2013 MacBook Pro retina. Running perfect until the day I upgraded to Mavericks. Now my WiFi drops anywhere from once an hour to every 5 minutes, and also has trouble reconnecting after waking up from sleep. I've tri

  • XP System process uses port 1099

    XP process "System" with PID "4" uses port 1099 for listening TCP connection. I need 1099 for RMI. I don't want to kill "System" every time. Any clue about asking "System" not to use port 1099? Thanks in advance.

  • Mouseover Actionscript 3.0 thingy for Buttons?

    He guys, I've got a Problem: I wanna do an animated Button in flash. I'm new to it, and i'm done with the "graphical" work now. But I've got a Problem with the Actionscript now, I know how to set it up that the Animation of the Button will start to p