Map problem,need someone to solve it!!!!

Map can't find the routes for bus,sometimes car or walker, it's been like that for a few weeks, it used to work before, it always shows that transit locations could not be found between these locations, and it's really weird that even though I searched on google map online, either phone or my mac , it didn't work , so sad:( can someone who's really pro can help me??? Thanks:)

Maybe vendor took it off?
Are you regulary updating yout Tablet OS?
Leader of Ljubljana BlackBerry Developer Group
BlackBerry Certified Builder for Native Application Development

Similar Messages

  • Audigy SE and AL ADA885 problem needs to be solved once and for

    I just purchased the Audigy SE (I'm on a budget) and installed it. I have the Altec Lansing ADA885 THX 4. digital surround speakers. This sound card DOES NOT work correctly with them. I have been all over the net trying everything that I have seen suggested to make it work. The specs say it should work. It does not. I have tried every possible wiring configuration to no avail. One thing that I find rather annoying is that I have seen several people say that changing the SPDIF to passthrough fixes the problem, yet I cannot find anywhere to change that setting, as I cannot find Audio HQ on the driver CD or on the net to install and change that setting. Can someone, for the love of god, please come up with a valid solution to this problem? I have seen so many people with this same problem who get the run around and answers that just don't help at all. What is needed is "Here, do a, then do b, download c, and BAM! problem solved". Not "Here, do f, do h, download c, j, k, m, and p, then go back and do f again, then a, then b, then come back here and let us know that none of it fixed the problem". I don't wish to be a whiner or a jerk about this, but it is a bit frustrating to be "upgrading" to a card that won't even work right. On behalf of all those with the same problem, thanks in advance to anyone who has a valid solution to this very big, very real problem.

    OK...
    . Do you have the complete application suie of the Audigy SE installed?
    2. If so, in Control Panel do you have the Audio Console or Audio Control Panel?
    3. If you do, change the settings for Decoder Settings to SPDIF passthrough. (THis is however only of AC-3 content, it doesn't affect other formats) (I am not sure the Audigy SE does have a decoder, if not, you need to change the setting in the AC-3 decoder you use)
    4. Then go to Device settings and change the Digital Output sampling rate to 48kHz.
    Now if you cannot find Audio Console, then you should download the latest drivers. They specifically state they allow you to change the "SPDIF output Sampling rate", so you should be able to access the option. I believe your problem lies to the fact your SPDIF is configured for 96kHz output and most probably these very old speakers do not support more than 48kHz.
    PS: The instruction I posted above, are based on an Audigy 2 ZS setup, so the naming of the settings and access programs could be different on the SE, but nevertheless present.

  • Dynamic Programming Change Making Problem - Need Someone to Review

    I've created a dynamic program in which you can input any amount with any given coin denominations and it should output the least amount of coins needed to solve, HOWEVER, there are some glitches I was hoping some of you could point out and correct. Here's the code for my main method and the code for my instance methods.
    public class Changemaker
    public static void main (String args[])
              int amt = Integer.parseInt(args[0]); // Initialize the method in which the program will be invoked
              Tuple[][] t = new Tuple[args.length - 1][amt + 1]; // Create the matrix
              int [] coins = new int [args.length - 1]; // Create empty array that stores the amount of coin denominations
              for (int i = 0; i < coins.length; i++) // Store input values into array called coins
                   coins[i] = Integer.parseInt ( args[i+1] );
              for (int i = 0; i < coins.length; i++) // Establish a 0 value in the first column of every row
                   t[0] = new Tuple (coins.length);
              for (int i = 0; i < coins.length; i++) // Create a tuple that checks if the given coin denomination can create the amount
                   for (int j = 0; j < amt + 1; j++)
                        if (j - coins[i] < 0) // Create a null tuple if the amount is less than the arguments
                             t[i][j] = new Tuple (coins.length);
                        else // Mantra
                             int remainder = j - coins[i]; // Take the coin out of the amount
                             t[i][j] = new Tuple (coins.length); // Create a new blank tuple of coin length
                             t[i][j].setElement(i, 1);// Change the tuple location from 0 to 1 to keep track of it
                             t[i][j].add(t[i][remainder]); // Add the tuple in the remainder cell to the existing tuple
                        try
                             if (t[i][j].total() > t[i - 1][j].total()) // Return total elements in tuple directly above
                                  if (t[i - 1][j] != null)
                                       t[i][j] = t[i - 1][j];                    
                        catch (ArrayIndexOutOfBoundsException e)
                        System.out.println(t[i][j].toString());
    }Class for Instance Methodspublic class Tuple
         private int [] change;
         public Tuple (int n) // Constructor class, elements initialized at zero
              this.change = new int [n];
              for ( int i = 0; i < this.change.length; i++)
                   this.change[i] = 0;
         public Tuple (int [] data) // Constructor class that creates a n-tuple from given data
              this.change = new int[data.length]; //Initialize the array change to incorporate data into each element
              for (int i = 0; i < this.change.length; i++)
                   this.change[i] = data[i];
         public void setElement (int i, int j) // Set element i to value j
              this.change[i] = j;
         public int getElement (int i)
              return this.change[i];
         public int length()
              return this.change.length;
         public int total() // Return total of elements in tuple
              int sum = 0;
              for (int i = 0; i < this.change.length; i++)
                   sum += this.change[i];
              return sum;
         public void add (Tuple t) // adds a tuple t to tuple
              * Make a new "change" array that equals the current one
              * Create another array called tuple t
              * Add the new "change" array with the tuple t
              for (int i = 0; i < this.change.length; i++)
                   this.change[i] = this.change[i] + t.getElement(i);
         public boolean equals(Object t) // Return true if tuple identical to t
              * Determine if object is a tuple t
              * Check to see if tuple t is the same size of change
              * If true, loop both and compare
              for (int i = 0; i < this.change.length; i++)
                   if (this.change[i] != getElement(i))
                        return false;
              return true;
         public Tuple copy() //Return an exact copy of tuple
              Tuple copy = new Tuple(this.change);
              return copy;
         public String toString() // Returns a string of the tuple
              String s = "";
              for (int i = 0; i < this.change.length; i++)
                   s += this.change[i];
              return "<," + s + ",>";
              /* Add for loop
              * Add value at each index of array into string
    *Output:*
    *java ChangemakerTest 5 1 2 3*
    <000>
    <100>
    <200>
    <300>
    <400>
    <500>
    <000>
    <000>
    <010>
    <010>
    <020>
    <020>
    <000>
    <000>
    <000>
    <001>
    <001>
    <001>
    *The correct output using the above execution line should be:*
    <000>
    <100>
    <200>
    <300>
    <400>
    <500>
    <000>
    <100>
    <010>
    <110>
    <020>
    <120>
    <000>
    <100>
    <010>
    <001>
    <101>
    <011>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    A bit of advice on getting advice.
    1) Ask a specific question, nobody is going to debug your program for you
    2) Avoid the word "Dynamic", especially if you don't know what it means.

  • I need someone to solve it plz

    hi all 
    i had this issue for long time and i need solution for it 
    so why this massage in alot of apps that this apps is not supported in the playbook ???? how is that plz can anyone solve it !!

    Maybe vendor took it off?
    Are you regulary updating yout Tablet OS?
    Leader of Ljubljana BlackBerry Developer Group
    BlackBerry Certified Builder for Native Application Development

  • Easy but tough problem needs to be solved

    Hi,u guys!
    I got a very tough problem here.
    I have an xml , for example,
    <doc>
    <Location value= "abc"/>
    </doc>
    I need to print this xml.(e.g. I would use System.out.println to print the result, which will be exact the same as the example above. How can I do.
    I have tried
    Element DocEl=doc.getDocumentElement();
    NodeList nl=DocEl.getChildNodes();
    System.out.println("nl" + nl.toString());
    but the result is:nl [doc null]. And the parse of this xml is going well.
    No idea what happens.
    Plz help me!
    Thanks

    Hi, thanks for ur reply.
    I know what u mean here. In fact, the program is running well in my laptop , and the result is correct too. The problem is the program can not be running in my desktop, with the same java vision and IDE. That is the point of the problem. I was wonderring that the java sentence I posted above is not correct, and that is possible anyway.
    Forget what I said. How can I make this come true?
    Thanks.

  • Unique Problem, Need someone smart

    I connected my iPod shuffle to my Xbox, and my Xbox formattted it and put new firmware on it, making it useless on Windows. I tried restoring it via the newest iPod updater, but it says "iPod service error." iPod service.exe is NOT on task manager's processes. On My Computer, it showed as a removeable disk. I clicked it and it said "Drive not Formatted. Format Drive?" I formatted it and now it is back to the FAT32 File system, but iPodservice.exe still isn't running resulting in no iPod Updater ALSO resulting in I CAN'T RESTORE IT!!!
    HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1
    Gateway   Windows XP  

    Im have the same problem. I do not even have the original software disc anymore, but I doubt that will help.
    Laptop   Windows XP   None

  • Odd ipod problem needs someone smarter then me

    i plugged in my ipod to charge and update it and that was about 4 days ago. i keep getting two different results. either it just stays at the "do not disconnect" stage, or "please wait, battery is very low". and then sometimes i get a "charged" screen and i disconnect only to find its not charged at all and when i connect it again and it says ipod or itunes file is corrupt. i can't do any of the 5 R's because the battery is dead and it won't let me. i've searched the support pages but can't seem to find anything that works. does anyone have any ideas or suggestions. thanks so much

    Was this by any chance the first time you have connected your iPod since upgrading to iTunes 7 because if it is the new software is causing havoc to any iPod it comes in contact with.

  • I need someone to take over my computer and fix this problem for me

    pls help i need someone to fi this problem for me my j4680 will not go wireless can someone take over my computer and find out what is wrong plsssssssssssssss

    Try HP's diagnostic utilities:
    http://h30434.www3.hp.com/t5/Printer-networking-and-wireless/Network-Printer-Problems-Try-the-HP-Hom...
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • I am having a Startup problem. Someone comes on the screen with Open Firmware to Startup. How can I reset the PRAM myself to solve this problem?

    I am having a Startup problem. Someone comes on the screen with Open Firmware to Startup. How can I reset the PRAM myself to solve this problem?

    Read these.
    http://support.apple.com/kb/HT1431
    http://reviews.cnet.com/8301-13727_7-10330118-263.html

  • IOS6... How do I see the full screen when watching youtube videos and second the map quality is very poor, foggy most of the time and images overlap to each other... Can I restore to IOS6 if these problems can not be solved?

    I just upgraded to IOS6 and I have some difficulties that I never had on IOS5:
    How can a see the full screen when watching youtube. Address bar is always in view.
    Maps are foggy and some images overlap to eachother.
    If these problems can not be solved, how do I downgrade back to IOS5?
    Regards,
    Luis

    Luis757 wrote:
    If these problems can not be solved, how do I downgrade back to IOS5?
    Regards,
    Luis
    No, there is no legitimate way to downgrade iOS to an earlier version.
    Be patient, Apple will eventually get around to fixing the "bugs" in iOS 6.
    You can leave feedback here: Apple Feedback.

  • Need Help In Solving Positioning Problem

    Hi Guys,
    I have a 3 X 3 grid of JLabels of images. I constructed the grid using the grid layout.
    I would like to move a round object which represents a car and place that object in a particular cell. So the grid will be like a background.
    My questions are these:
    1) How can i position this object in a specific cell based on the rows and column values? for instance if i want to put the object in [1][0].
    2) How do i move this object to a different cell using the rows and column values. for instance if i want to move the object in [1][0] to [2][1]
    Thank you all for your help

    This question has nothing to do with Java 2D. I've removed the second thread you started in that forum.
    Thank you for providing a link to this thread in the cross post.
    db
    kap wrote:
    Hi Guys,
    I have posted a question in the Java Programming forum. This is the link :
    [positioning object|http://forums.sun.com/thread.jspa?threadID=5447680&tstart=0]
    I added the link to avoid double posts
    I am asking if someone can help me out because i need an urgent help. Some people have giving some ideas but i don't understand what they mean.
    Need help in solving it.
    Thanks.
    Edited by: kap on Aug 14, 2010 6:59 PM

  • Need guidance to solve the problem.

    my internal hard drive is not showing up on mac. need guidance to solve the problem. thanks

    Hi,
    First make the finder the Front app.
    The Finder Menu > Preferences > General Section should have the Hard Drive item ticked to show the Hard Drive on the Desktop.
    The Name of the drive should not have a . at the beginng  as in .Mactinosh HD as this will make te file Invisible.
    There are also other characters that cause this.
    If you go to the Finder > Go Menu and select My Computer it should have opened a window displaying the Volumes ( Hard Drives and storage devices) that are connected.
    10:17 PM      Sunday; April 14, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Digital Life and ATT Retail Store problem needs solving.

    I need help in solving a dispute i have with the local San Diego Retail store regarding my Digital Life acount  *** commitments they made when i signed up. Please have a responsible executive of ATT listen to my experience and solve my problem. Thanks... 
    [Edited for privacy-please do not post personal or unique information such as but not limited to full names, employee ID numbers, email addresses, phone numbers, account numbers, etc.]

    Private message and ask them for help.

  • Need Help In Solving Writing To Queue Problem

    Hi Guys,
    I have two threads that are adding to the same message queue. The first one is suppose to add four integers consecutively. Meanwhile the second thread add an integer in between the four integers. Because of that my application is not working properly. I would like that when a thread is adding then the other must wait before it adds. The method that the threads call to add to the queue are all synchronized, but it is still behaving like that.
    I need help in solving it.
    Thanks.
    Edited by: kap on Aug 9, 2010 5:22 AM

    kap wrote:
    Please what do you mean by synchronizing on the same object? Can you explain it to me?
    When you synchronize a block of Java code, you synchronize on a particular object, which is called the Monitor.
    The effect is only to prevent another thread running this, or another block of code synchronized on the same object.
    If you use synchronized methods, then the monitor is the object to which the method belongs (or the class if the method is static). The same synchronized method can be executed simultaneously on a different instance of the object.

  • Mapping problem with XML scheme

    Hi All,
    I have a scenario which I am trying to send a XML file through SFTP (Advanco) to a Z RFC.
    I created the message mapping, but I am dealing with a issue that I would like to see if it already happened with someone else and which is the best way to solve it.
    In the message mapping - test tab - source view we can find this xml tag regarding the messagetype (see that my MT is called ROOT)
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:ROOT xmlns:ns0="http://www.post.ch/schemas/dfu/2006/20/Report6">
    the problem is, when I am testing the interface the original file comes like this below
    <?xml version="1.0" encoding="UTF-8"?>
    <ROOT xmlns="http://www.post.ch/schemas/dfu/2006/20/Report6">
    without ns0:
    And if I test in message mapping without ns0: I have the problem.
    Shouldnt it be equivalent ? I mean, as far as I know the ns0: shouldnt be a problem
    Does someone have any suggestion regarding my issue above ?
    Thank you
    Regards
    Diego
    Edited by: Diego Crespo on Feb 10, 2011 10:01 AM

    Shouldnt it be equivalent ? I mean, as far as I know the ns0: shouldnt be a problem
    when you have a namespace in the message then you need to associate it with some prefix....since ns0 (or any other prefix) is not present you are getting the error....having the namespace but not ns0 is the problem.
    XMLAnonymizer bean may help you to add the namespace prefix...

Maybe you are looking for