Plz Help i wanna buy 5800 with GPS!!!!

Hi, I'm Wesam - live in egypt, i wanna buy nokia 5800 but when i went to buy it i found that all packages written on it (NO NAV) ?
is it means these devices don't have GPS (GPS now available in Egypt) and if i buy it i wanna know can i update my software device to have this facility in future or this is a hardware must be added in the manufacture.
Plz help me cuz i need to change my mobile and i wanna 5800 be my next mobile, thnx

I dont know really, but it seems that my phone have some sort of GPS system. and i have 5800, really great phone. but still it shuld not have been realesed so quickly. still some mayor system buggs Nokia have to take care of.

Similar Messages

  • PLZ help in interfacing my VI with NI 5640

    I am interfacing Ni 5640 PCI with the example VI of the modulation toolkit "QAM transceiver" using the instrument driver of PCI 5640 not the labview FPGA driver
    My final constellation is with lot of errors.
    I am finding problems in setting the parameters of the PCI 5640. I am using the single tone generation VI at transmiter side and Spectrum measurement example Vi at RX side.
    parameters I am setting are
    at TX: 
    sampling rate of the complex cluster I am giving to ni 5640 R write waveform is 1600k S/s
    IQ rate giving to ni 5640 R configure generation is 1600k S/s
    Symbol rate is 100k Hz
    pulse shaping root raised cosine using 16 samples per symbol
    AT RX:
    what should be the span if i see in the example spectrum measurement or the IQ rate at the ni 5640 R configure acquisition
    how much samples to acquire?
    if my transmitted bits are 1044 and applying 4 QAM on them
    how should I resample my received array of IQ data????
    PLZ help or give me any example of a transceiver system interfaced with NI 5640r using instrument driver.

    good...yaar am too from AU
    so which dept r u from???and name..am from telecom A
    we r also doing 16 qam on dsp 6713, using labview...do meet me so dat we can resolve each others issues....
    regards
    wajahat Hassan

  • PLZ HELP in interfacing NI 5640 with my VI

    I am interfacing Ni 5640 PCI with the example VI of the modulation toolkit "QAM transceiver" using the instrument driver of PCI 5640 not the labview FPGA driver
    My final constellation is with lot of errors.
    I am finding problems in setting the parameters of the PCI 5640. I am using the single tone generation VI at transmiter side and Spectrum measurement example Vi at RX side.
    parameters I am setting are
    at TX: 
    sampling rate of the complex cluster I am giving to ni 5640 R write waveform is 1600k S/s
    IQ rate giving to ni 5640 R configure generation is 1600k S/s
    Symbol rate is 100k Hz
    pulse shaping root raised cosine using 16 samples per symbol
    AT RX:
    what should be the span if i see in the example spectrum measurement or the IQ rate at the ni 5640 R configure acquisition
    how much samples to acquire?
    if my transmitted bits are 1044 and applying 4 QAM on them
    how should I resample my received array of IQ data????
    PLZ help or give me any example of a transceiver system interfaced with NI 5640r using instrument driver.
    AIRIAN

     Hi Airian,
    I think your question was answered here. Please post back
    if you need further help. Also, Please keep your posts to a single thread, as
    it helps the community to easily follow the resolution.
    David L.
    Systems Engineering
    National Instruments

  • Plz help me rooting XPERIA play with GB 2.3.4

    i dont wanna unlock the bootloader...if possible neither i wanna downgrade 2.3 to root my phone using gingerbreak....
    i want a safe rooting for 2.3.4 on xperia play...so that i can play games without getting online evrytym and install titanium back up app.....can u plz suggest some method??
    i am a newbie in dis matter so i am giving the info,i dont know if it is required at all...but...
    kernel version:
    2.6.32.9-perf
    SEMCUser@SEMCHost#1
    build number:
    4.0.2.A.0.58
    if there is some method plz explain in detail....
    Solved!
    Go to Solution.

    See how to root 2.3.4
    {GUIDE} How to Root Xperia™ Smartphones
    Discussion guidelines.
    Message me or any other moderator to seek help regarding moderation.

  • Plz help me in inter sto with cin

    Hi,
    can any help me, what Transaction codes has to be followed for inter company code with CIN .
    i know inter company sto cycle without CIN , here i have requirement that Inter company STO with excise duties.
    Thanks in advance,
    Rgds,
    K.Praveen

    Hi,
    In Inter company STO with CIN
    Create STO in recieving plant & send to Supplying plant
    Include the excise duties in the STO in the condtions.
    Supplying plant do the Outbound Delivery in VL10B for that STO with post goods issue with 641 mvt type
    Billing document will be created with reference to Delivery doc no
    Create the Excise invoice in J1IIN transaction with reference to Billing document.
    Send the Excise invoice along with material to Recieving plant
    Recieiving plant will do the Goods receipt with respect to the Outbound delivery in 101 mvt type
    Recieiving plant will Capture & post the excise invoice in MIGO or J1IEX.
    Excise registister will update as per the posting.
    rgds
    gsc

  • Plz help me create a Procedure with create view cmd

    i want to create a view from the procedure like the following one,
    It creates the proc but while running it show invalid column name please help me;
    create or replace procedure asho2005.mock_pro( fin_fr_dt in date, fin_to_dt in date) is
         ffdt date;
         ftdt date;
    begin
         select to_date(fin_fr_dt,'dd-mm-yyyy') into ffdt from dual;
         select to_date(fin_to_dt,'dd-mm-yyyy') into ftdt from dual;
    execute immediate 'create or replace view mock_vu as select a.amt from cbtran a where chq_dt > ffdt and chq_dt <ftdt';
    end;

    i want to create a view from the procedure like the
    following one,
    It creates the proc but while running it show invalid
    column name please help me;
    create or replace procedure asho2005.mock_pro(
    fin_fr_dt in date, fin_to_dt in date) is
         ffdt date;
         ftdt date;
    begin
    select to_date(fin_fr_dt,'dd-mm-yyyy') into ffdt
    t from dual;
    select to_date(fin_to_dt,'dd-mm-yyyy') into ftdt
    t from dual;
    execute immediate 'create or replace view mock_vu
    vu as select a.amt from cbtran a where chq_dt > ffdt
    and chq_dt <ftdt';
    end;Hallo,
    your problem is , that execute immediate does't recognize ffdt
    You have to concatenate literals
    create or replace procedure asho2005.mock_pro( fin_fr_dt in date, fin_to_dt in date) is
    ffdt date;
    ftdt date;
    begin
    select to_date(fin_fr_dt,'dd-mm-yyyy') into ffdt from dual;
    select to_date(fin_to_dt,'dd-mm-yyyy') into ftdt from dual;
    execute immediate 'create or replace view mock_vu as select a.amt from cbtran a where chq_dt > '''||ffdt||''' and chq_dt <'''||ftd||'''';
    end; BTW, your view doesn't return any rows
    ffdt and < ffdt :-)
    Besides that , it's a very very bad method!
    You must not create views in runtime. Use of literals results in hard parsing .
    The performance will be poor.
    You have to create view in design time, and then simply use select:
    select * from mock_vu where chq_dt > (your_date) and something else
    HTH
    Regards
    Dmytro
    corrected wrong number of quotes (no wonder ) :-)
    Message was edited by:
    Dmytro Dekhtyaryuk

  • I am not able to link my bank account with the store .... So I am not able to download anything from the store plz help

    Plz help in liking my account with the apple store     Because I am not able to download anything from apple store

    Have you called your credit card issuer? They may be able to provide a reason for the declined purchased.
    Also, you can only register for and use the App Store in the country your credit card is issued. Be sure you are buying apps from the correct App Store.

  • I can't buy anything from car town it won't let plz help me

    I can't buy anything on anything to do with my iTunes or App Store plz help me

    Are you signed in with a working Apple ID through settings/ itunes and app store? Have you entered your credit card info correctly at settings/itunes and app store?
    What message does it give when you try to buy something?
    Need a little more info to help...

  • Plz help me on JTable i still have a problem

    sir
    i tried my best to change the background of table header column
    as well as paint the image on the table.
    one kind person gave me a link to download examples of java
    releated this
    the link is as following
    http://www2.gol.com/users/tame/swing/examples/src/examples/AnimatedIconHeaderExample.java
    the code is as follows
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import javax.swing.*;
    import javax.swing.table.*;
    * @version 1.0 06/19/99
    public class Example extends JFrame {
    public Example(){
    super( "AnimatedIconHeader Example" );
    final Object[][] data = new Object[][]{
    {"Leopard","Lycaon"},
    {"Jagur" ,"Jackal"},
    {"Cheetah","Coyote"},
    {"Puma" ,"Dingo" },
    {"Lynx" ,"Fox" },
    {"Tom" ,"Hot" }};
    final String[] column = new String[]{"Cat","Dog"};
    ImageIcon[] icons = {new ImageIcon("images/smileyr.gif"),
                             new ImageIcon("images/smileyr.gif")};
    AbstractTableModel model = new AbstractTableModel() {
    public int getColumnCount() { return column.length; }
    public int getRowCount() { return data.length; }
    public String getColumnName(int col) {
    return column[col];
    public Object getValueAt(int row, int col) {
    return data[row][col];
    JTable table = new JTable( model );
    JTableHeader header = table.getTableHeader();
    JLabel renderer;
    for (int i=0;i<model.getColumnCount();i++) {
    renderer = (JLabel)(table.getColumn(column).getHeaderRenderer());
    *******renderer.setIcon(icons[i]);//give nullPointer exception here
    // If you have only one column.
    // icons[i].setImageObserver(header);
    icons[i].setImageObserver(new HeaderImageObserver(header, i));
    JScrollPane pane = new JScrollPane(table);
    getContentPane().add(pane);
    class HeaderImageObserver implements ImageObserver {
    JTableHeader header;
    int col;
    HeaderImageObserver(JTableHeader header, int col) {
    this.header = header;
    this.col = col;
    public boolean imageUpdate(Image img, int flags,
                   int x, int y, int w, int h) {
    if ((flags & (FRAMEBITS|ALLBITS)) != 0) {
    Rectangle rect = header.getHeaderRect(col);
    header.repaint(rect);
    return (flags & (ALLBITS|ABORT)) == 0;
    public static void main(String[] args) {
    Example frame = new Example();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    frame.setSize( 300, 140 );
    frame.setVisible(true);
    but this code generate a NULL pointer exception at where i mark the following symbol***.
    sir
    plz help me on this subject with a JTable example of code
    i am very thankful to u

    override the paintComponent method in JTable.
    Here is an example:
    Image bkGrndImage = new ImageIcon("images/smileyr.gif");
    * This method is over ridden to paint the table background with an image.
    protected void paintComponent(Graphics g) {
         super.paintComponent(g);
         int x=0, y=this.getRowCount() * this.getRowHeight();
         if ((bkGrndImage == null) ||
             (bkGrndImage.getWidth(this) == -1) ||
             (bkGrndImage.getHeight(this) == -1))
              return;
         this.prepareImage(bkGrndImage, this);
         while (x < this.getWidth()){
              y=this.getRowCount() * this.getRowHeight();
              while(y < this.getHeight()) {
                   g.drawImage(bkGrndImage, x, y, this);
                        y += bkGrndImage.getHeight(this);
              x += bkGrndImage.getWidth(this);
    }

  • TS1843 i am using iphone 4 ios 6.1.3, after hotmail imap setup, error showing "CANNOT GET MAIL" tHE CONNECTION TO THE SERVER FAILED. its happening since 14 aug. plz help !

    i am using iphone 4 ios 6.1.3, after hotmail imap setup, error showing "CANNOT GET MAIL" tHE CONNECTION TO THE SERVER FAILED. its happening since 14 aug. plz help !

    I have trouble with sending e-mail and syncing e-mail. Try changing to 1 day sync under settings. It's sluggish but it works for me until they resolve the issue. MS claims all is normal. If you still have a problem you should report it here: https://status.live.com/report/hotmail

  • I wanna buy LCD protection film.

    Do you have IPAD LCD protection film here?
    I'll buy IPAD, that's why I wanna buy one with LCD protection film.
    If you don't have, can I buy LCD protection film in any apple store? (ex. albany westfiled)
    and I'd like to stick film my IPAD. can I get film stick service?
    sorry. I'm poor at english speaking. I'm sure you understanded.

    Apple doesn't sell screen protectors. Just search your local electronics retailer or amazon to find a screen protector that looks good to you.

  • Plz Help With Nokia 5800 XM ...... Plz

    Hi everyone,
    I have nokia 5800 and i like it very much... But i have a problem with it ..... the problem that when i download any thing from nokia OVI Store from my mobile like: Games, apps and videos when download finished and starting to install the games or the apps it's say's: "installation failed" and when i redownload it again nothing change and keep saying "installation failed" ........ and i noted that when i install app ( themes, apps and games ) on my mobile by ovi suite or by file manager it also say's to me "Expired Certificat" even if i signed this apps but it alwyas say's "Expired Certificat"....... for this problem i did: hard reset - format my mobile - format my sd card - update my mobile to v40 - but the problem never stops to return in a few hours ..... then i find out that when i need to install any app on my mobile (by ovi suite or ovi store in my mobile or file manager) i have to switch off the mobile and turn it on again to install what ever i want ...... so Plz help me out
    PS: 1- I have 2 friends having the same problem that i have and they did what i did
           2- my mobile software v. when the problem stated v31
          3- my memory card 8 GB the orginal one
    Thanx and Please Tell Me What to Do
    Bye

    Option 1
    NOTE
    - YOU CAN ONLY INSTALL SIGNED APPLICATION WITH THIS METHOD.
    - IF YOU DONT TAKE BACKUP OF YOUR DATA OR FOLLOW THE EXACT STEPS HERE YOU WILL LOSS ALL DATA.
    1. With the phone switched on, press the power button key once.
    2. Scroll down to and select "Remove E: Memory Card".
    3. Select Yes to remove the memory card.
    4. Press OK and remove memory card from phone.
    5. Press the Dialler on the main screen.
    6. Type *#7370#
    7. Enter security code. Default is 12345 unless it has been changed.
    8. The phone will reset, wait for this to complete and power back on.
    9. Select your country and type in the correct time and date.
    10. Wait for the phone to complete its configurations, you may receive "My Nokia" or tutorial messages.
    11. Power off phone.
    12. Insert the memory card.
    13. Power on the phone.
    14. Wait for the phone to install any pre-loaded content from the memory card.
    15. Phone is ready to install applications, without "Expired Certificate" error message.
    Option 2
    Alternatively use this to apply for .CER and .KEY for signing applications / games.
    Download SignSIS & FreeSigner (Freeware)
    - http://www.2shared.com/file/10095405/d0fd4cfb/Sign​_SIS_GUI.html
    Signing Video Tutorial
    - http://www.youtube.com/watch?v=z0mZ6d1klaU
    Also, please feedback the results as the results could be useful to other members / visitors.
    Thanks & best regards,
    XM
    I'm an Xploit - Please feel free to post your issues, feedbacks in this discussion forum and I'll do my level best to help, otherwise my knowledged friends whom are around willing to help you. Thank you !

  • Problem with GPS in my 5800

    I have proble with GPS , After update my phone this service was working and I do some change in internet setting in my phone  becase it was log to net with auto way so I change the access point to wrong number to disconnect to net with auto way
    after this change  the GPS work one time and didnt work after that .
    --Dose this service need  net to work  ?
    -- If no how i get it work again ?
    PLZ  I need this service in my phone so much becase sometime I drive my car in new places and I use it very hard
    PLZ help my

    Go to Maps-->Spanner Icon-->Internet-->Connection...set to OFFLINE
    Also.. Menu-->Applications-->Location-->Positioning-->Positioning Methods.. select ONLY integrated GPS
    BTW to prevent auto connection to Internet..
    Menu-->Settings-->connectivity-->Admin Settings-->Packet Data-->Packat Data connection...set to When Needed
    ..and also..
    Menu-->Settings-->Connectivity-->Destinations-->Internet.. select the Access Point-->Use Acces Point (At extreme bottom).. set to After Confirmation..

  • Hi. Deeeep trouble here. I get overload (only 1 core working, it should manage easyly though anyway) with only 1 audio instrument playing. No other things in arrange. iMac i7 2.8, 8gb. Newest Logic Studio. Plz help, guys.

    Hi. Deeeep trouble here. I get overload (only 1 core working, it should manage easyly though anyway) with only 1 audio instrument playing. No other things in arrange. iMac i7 2.8, 8gb. Newest Logic Studio. Plz help, guys.

    TimboDJ wrote:
    Right people, I really hope you can help... here's the story:
    I produce with a friend and approx 4 months ago we both upgraded to brand new MacBook Pro's each and Logic Pro 9 each.
    I bought a 13" MacBook Pro with 4GB and the 2.53Ghz Intel Core 2 Duo processor.
    He bought a 15" MacBook Pro with 4GB and the 2.66Ghz Intel Core i7 processor.
    We both have bought the full version of Logic Pro 9, both done the upgrade to 9.1 and have both set our copies of Logic to 64 bit.
    Why? The only advantage you have from 64 bit is that Logic can use more than 4 GB RAM - which neither of you have. I would strongly recommend setting Logic to 32 bit. On both Books. It might alleviate some or even all the problems - I hope.
    Here's a list of unavailable features in 64 bit mode:
    http://support.apple.com/kb/TS3171
    My friends copy of Logic on his Mac is so buggy its sometimes unusable.
    My mate is about to throw the **** thing out of the window and buy Cubase!
    More often than not it is hard to install new software on computers that have been thrown about.
    Can anyone shed any light please??
    I think 32 bit is your answer. However, the mobile i7 processor does at least have one issue with Logic:
    http://discussions.apple.com/message.jspa?messageID=11460744#11460744
    (same topic, summary)
    http://discussions.apple.com/message.jspa?messageID=11525406#11525406
    regards, Erik.
    Message was edited by: Eriksimon

  • Hi, plz help me. i wanna store photos to sql database. so how to insert file field into insert record in dreamweaver cs3?

    I dont know how to insert file field into insert record in DW. i also want to know, insert dynamic table with image field. Plz help me anyone. Ty..

    ohh kk thank you bro. But How to store photos to server file. I wanna upload and display the photos in webpage. Can you send me the php code for this?

Maybe you are looking for

  • Saved Logic 9 projects will not open.

    Hi all, wondering how many other people are running into this issue.  Basically ever since I upgraded to Lion, none of the projects I save in Logic Pro 9 (updated to 9.1.6) will open when I double click on them.  Logic will launch just fine to my def

  • Why is the answer of the program such??

    I have a program code below. class Flag private boolean flag; public Flag() { boolean flag = true; public boolean getFlag() { return flag; public static void main(String[] args) { Flag f = new Flag(); System.out.println(f.getFlag()); When i run the p

  • Can I load pictures for a picture ring control at run time?

    Hi all, is there a way to achieve the above mentioned behaviour? Changing the graphics elements of a picture ring control or indicator at run time? Best regards, Matthias Solved! Go to Solution.

  • Need help cisco products.

    i've got an request from an ISP for a cisco product but i really can't find a solution on Cisco web site or maybe i'm to blind to see what the product is?!!! Product Description: PGW 2200 Softswitch MGC-X42K-AC216-2 PWG2000-UPG-TO-9.7.3 SFB22-upg-CC-

  • Sporadic errors in XML DB (ORA-00600: internal error code)

    We observe a sporadic error in an XML DB based application. The error message is as follows: java.sql.SQLException: ORA-00600: internal error code, arguments: [qmxMakeFake1], [], [], [], [], [], [], [] Our application uses Java / JDBC to connect to t