Any free program to work with maps and gprs

my device didn't have maps icons  
please any free software to use instead of  the orginal one 

Hello abualkhair, 
Welcome to the forums. 
Have a look at the below link which will help you in getting BlackBerry® Maps installed. 
BlackBerry Maps 
-SR
Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

Similar Messages

  • Are there any iphone 4s that work with GSM and CDMA and other carriers?where can i buy it?are apple going to produce it?

    Need to buy this kind of iphone 4s that can work with all the carriers exist

    It doesn't support any Bluetooth profile that a Remote would need. But if your audio system has the A2DP Bluetooth profile, or it could be added, you could connect via that method and just keep the Nano in your hand.

  • Working with maps and GPS tracklogs

    Hi all,
    So I've figured out how to get my photos onto a map and then import the "tracklog" from the camera's GPS to show the neat little blue line of where I've walked on that day's shoot.  But I'm having trouble switching the map display simply from one day to the next.  Is there something I can click on to get another folder from the library up on the screen with its tracklog?  I must be doing something wrong.  I seem to have to bring in the tracklog each time I go back to the library to click on a new folder.  Thanks for your help!  Here's a screenshot of a recent photowalk around Barcelona, Spain.

    <html:options collection="mapaColecao" property="key" labelProperty="lblProperty"/>
    Of course, a Map is not the best thing for this, since sort order isn't guaranteed. Well, if the Map were a TreeMap, it is by key. And maybe html:options doesn't like Maps, only Lists? Not sure on that one.
    Normally, you'd have a List collection, and each object would be an object which has "property" and "labelProperty" as methods, so...
    public List getAtributosColecao() {
       List list = new ArrayList();
       list.add(new OptionItem("colecao","Cole��o");
       list.add(new OptionItem("descricao","Descri��o");
    public class OptionItem {
       private String value;
       private String label;
       public OptionItem(String v, String l) { value = v; label = l; }
       public String getValue() { return value; }
       public String getLabel() { return label; }
    List mapa = colecaoGer.getAtributosColecao();
    request.setAttribute("mapaColecao", mapa);
                <html:select property="myBean" size="1">
                    <html:options collection="mapaColecao" property="value" labelProperty="label"/>
                </html:select>

  • Program Help, working with spaces and only letters

    I'm writing a program that takes an input string and gets the length and/or gets the number of vowels and consonants in the string. I've gotten it working except for consideration of spaces (which are allowed) and error checking for input other than letters. Here is what I've got so far. ANY suggestions would be greatly appreciated. Thank You
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class LetterStringManip extends JFrame
    {//declaring variables
         private JLabel stringOfLettersL, lengthL, lengthRL, vowelsL, vowelsRL, consonantsL, consonantsRL;
           private JTextField stringOfLettersTF;
           private JButton lengthB,vowelB, quitB;
           private LengthButtonHandler lbHandler;
           private VowelButtonHandler vbHandler;
           private QuitButtonHandler qbHandler;
           private static final int WIDTH = 750;
           private static final int HEIGHT = 150;
           public LetterStringManip()
           {// setting up GUI window with buttons
               stringOfLettersL = new JLabel("Enter a String of Letters", SwingConstants.CENTER);
                   lengthL = new JLabel("Length of String: ", SwingConstants.CENTER);
                   lengthRL = new JLabel("", SwingConstants.LEFT);
                   vowelsL = new JLabel("Number of Vowels: ", SwingConstants.CENTER);
                   vowelsRL = new JLabel("", SwingConstants.LEFT);
                   consonantsL = new JLabel("Number of Consonats: ", SwingConstants.CENTER);
                   consonantsRL = new JLabel("", SwingConstants.LEFT);
                   stringOfLettersTF = new JTextField(15);
                   lengthB = new JButton("Length");
                   lbHandler = new LengthButtonHandler();
                   lengthB.addActionListener(lbHandler);
                   vowelB = new JButton("Vowels");
                   vbHandler = new VowelButtonHandler();
                   vowelB.addActionListener(vbHandler);
                   quitB = new JButton("Quit");
                   qbHandler = new QuitButtonHandler();
                   quitB.addActionListener(qbHandler);
                   setTitle("String Of Letters");//Window title
                   Container pane = getContentPane();
                   pane.setLayout(new GridLayout(3,4)); //Window layout
                   pane.add(stringOfLettersL);
                   pane.add(stringOfLettersTF);
                   pane.add(lengthL);
                   pane.add(lengthRL);
                   pane.add(vowelsL);
                   pane.add(vowelsRL);
                   pane.add(consonantsL);
                   pane.add(consonantsRL);
                   pane.add(lengthB);
                   pane.add(vowelB);
                   pane.add(quitB);
                   setSize(WIDTH, HEIGHT);
                   setVisible(true);
                   setDefaultCloseOperation(EXIT_ON_CLOSE);
           }//closes public LetterStringManip()
           private class LengthButtonHandler implements ActionListener
               public void actionPerformed(ActionEvent e)//Length Button is clicked, getLength() method is performed
                      getLength();
                   }//closes public void actionPerformed(ActionEvent e)
           }//closes private class LengthButtonHandler implements ActionListener
           private class VowelButtonHandler implements ActionListener
               public void actionPerformed(ActionEvent e)//Vowels Button is clicked, getVowels() method is performed
                      getVowels();
                   }//closes public void actionPerformed(ActionEvent e)
           }//closes private class VowelButtonHandler implements ActionListener
           private class QuitButtonHandler implements ActionListener//Quit Buttton is pressed
               public void actionPerformed(ActionEvent e)
                       System.exit(0);
                   }//closes public void actionPerformed(ActionEvent e)
           }//closes private class QuitButtonHandler implements ActionListener
                     public void getLength()//gets the length of the string
                       String letString = (stringOfLettersTF.getText());
                       String lengthString;
                 int length;
                         length = letString.length();
                         lengthString = Integer.toString(length);
                         lengthRL.setText(lengthString);
                    }//closes public void getLength()
                     public void getVowels()//gets the number of vowels in the string
                 String letString = (stringOfLettersTF.getText());
                       String vowString;
                         String conString;
                 int countVow = 0;
                         int countCon = 0;
                         int i;
                         int length = letString.length();
                         char[] letter = new char[length];
                 for (i = 0; i < letString.length(); i++)
                     letter[i] = letString.charAt(i);
                     if (letter=='a' || letter[i]=='e' || letter[i]=='i' || letter[i]=='o' || letter[i]=='u')
    countVow++;
                        }//closes for
                        countCon = letString.length() - countVow;
    vowString = Integer.toString(countVow);
                        conString = Integer.toString(countCon);
                        vowelsRL.setText(vowString);
                        consonantsRL.setText(conString);
                   }//closes public void getVowels()
         public static void main(String[] args)
         LetterStringManip stringObject = new LetterStringManip();
         }// closes public static void main(String[] args)
    }//closes public class LetterStringManip extends JFrame

    OK, per the instructions above: I will re-post my code that I have now. I have dealt with the space not being counted now, I only need to figure out how to validate my input so that only letters are allowed. If anyone has any suggestions, or can help me out in any way, it'd be great. The suggestions with creating word and sentence objects is still a little beyond what we have gone over thus far in my Java course, I feel like I can almost grasp it to code it, but end up getting really confused. anyways, hear is my 'crude' code so far:
                     public void getLength()
                       String letString = (stringOfLettersTF.getText());
                       String lengthString;
                          int finalLength;
                          int countSpace = 0;
                                int length = letString.length();
                       char[] letter = new char[length];
                        int i;
                                 for (i = 0; i < letString.length(); i++)
                                    letter[i] = letString.charAt(i);
                                    if (letter==' ')
    countSpace++;
              finalLength = length - countSpace;
                   lengthString = Integer.toString(finalLength);
                   lengthRL.setText(lengthString);
                   public void getVowels()
    String letString = (stringOfLettersTF.getText());
                   String vowString;
                   String conString;
    int countVow = 0;
                   int countCon = 0;
                   int countSpace = 0;
                   int i;
                   int length = letString.length();
                   char[] letter = new char[length];
    for (i = 0; i < letString.length(); i++)
    letter[i] = letString.charAt(i);
    if (letter[i]=='a' || letter[i]=='e' || letter[i]=='i' || letter[i]=='o' || letter[i]=='u')
    countVow++;
                   if (letter[i]==' ')
    countSpace++;
                   countCon = (letString.length() - countVow) - countSpace;
    vowString = Integer.toString(countVow);
                   conString = Integer.toString(countCon);
                   vowelsRL.setText(vowString);
                   consonantsRL.setText(conString);

  • Free programs that work with itunes to scan/fix music for tracks that skip

    Are there any programs (preferably free) that can scan an entire itunes library for corrupt songs & fix on albums? like songs that skip that came from a scratched CD. With the amount of songs I have now, it would be impossible to go through them all & listen for skipping tracks. I have found & learned about programs or scripts that can scan a whole library for missing album artwork, so I wondered if threre was anything for skipping songs.

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • Anyone know of any greeting card program that works with OS  x?

    anyone know of any greeting card program that works with OS X?

    There is no solution. The Canon UFR2 driver used by the MF series does not work when connected to a Windows share or a wireless print server, including the Airport Extreme or Express. The problem is wholly to do with the way in which Canon has written this driver and therefore the Canon support staff should know this and tell you (although their Mac knowledge in Australia is pitiful and most likely the same in your region).
    If you had a model with Ethernet, then you could connect it to the wireless router and print via IP > LPD. But I know that your MF4150 only has USB as I mate of mine had one and he had exactly the same issue on Tiger, which I documented on the Tiger forum and the Airport printing forum.
    So, don't waste your money on a print server. Get rid of the Canon and get something that will work for all your OS's. If I can suggest, the safest purchase would be to get a model that supports Postscript. While this does cost more, it will help to avoid any limitations that can occur when using a vendors proprietary printer language, like Canon's UFR2.
    Pahu

  • I like the idea of auto back-up for my new iMac, Ipad and PC Netbook, particularly if I can access all files and data stored on any device.  But I have a Conceptronic router.  Will Time Capsule work with this and how?

    I like the idea of auto back-up for my new iMac, Ipad and PC Netbook, particularly if I can access all files and data stored on any device.  But I have a Conceptronic router.
    1. Will Time Capsule work with this and how?
    2. Can my printer USB be plugged in and then shared between the devices?
    3. Can I create a network and how?
    4.  What happend when a visitor logs onto my existing wireless router?
    I'm new to Macs (well a returning user having started with Mac Plus!!) and not very technical.  Any help / advice will be much appreciated.
    Ray

    The key to what you seem to want to do is to be able to get Apple's Time Capsule router to "join" the network that your Conceptronic router.  I believe that works with some third-party routers, but I've never seen a list of those that work in such a configuration and I have no experience with Conceptronic equipment.
    You might be better off with a Network-Attached Storage (NAS) device instead of a Time Capsule.

  • Why is my airportxpr only working with Itunes and not with another music program

    why is my airportxpr only working with Itunes and not with another music program??
    I can not select/see other outputs in my sound selector.

    You have not indicated which OS or which music program you have so I have listed a program called Airfoil to try for both Windows and Mac - it may work for you
    for Windows - http://rogueamoeba.com/airfoil/windows/
    for Mac - http://rogueamoeba.com/airfoil/mac/

  • I have just downloaded Firefox 4 and my autofill on the google toolbar is not working for any webpages it previously worked with. Is there a way to fix this? Thanks

    Question
    I have just downloaded Firefox 4 and my autofill on the google toolbar is not working for any webpages it previously worked with. Is there a way to fix this? Thanks

    Crap. That's what I was afraid of...Well, since I'm away from home and not near my pc, it sounds like I'm out of luck. The problem is that I need my phone to be at least functional for making and receiving calls. There's an apple store nearby. Perhaps I can go there and have them restore it and at least I'll be able to make and receive calls until I get home and restore from my backup. Does that sound feasible, or am I missing something?
    P.s. I tried to click "correct answer" and accidentally hit "helpful". Sorry about that...

  • My iPhoto will not work with Yosemite, and it says that it was purchased under a different account, but that's not the case.  Any ideas why I cannot update iPhoto?

    my iPhoto will not work with Yosemite, and it says that it was purchased under a different account, but that's not the case.  Any ideas why I cannot update iPhoto?

    How did you buy iPhoto? Did it come preinstalled on your computer with Lion or later, or did it come with Snowleopard on system installer disks?
    Which version of iPhoto?
    If you have a version of iPhoto '11 and it is showing on the Purchased tab of the App Store, with your Apple ID, then delete iPhoto from the Applications folder  (don't empty the Trash) and download iPhoto again from the Purchased tab.
    If that does not work, contact The App Store Support  from the Quick Links on the AppStore main page.
    Only apple Support can fix problems with apple ID.

  • ME293 is a good for programming and work with coreldraw and rhino ?

    ME293 is a good for programming and work with coreldraw and rhino ?

    No there is not. You are correct that Verizon will unlock it for international use, but they will not unlock it for domestic use. That is the way the US carriers work. Fortunately, the LTE enabled phones for Verizon are different. They are unlocked at the start on the GSM side, this was a requirement from the FCC for the allocation of additional LTE frequencies for Verizon. Not sure how long this will last, but your only choice is to use Verizon or to obtain a different phone. That 4S will not work with AT&T.

  • My computer keeps rejecting CDR's when I try to burn to them. Does anyone know of any CDs that work with iphoto and macs?

    Which brand of recordable CD's always work with Macs and iphoto - my computer keeps rejecting the discs and I've tried three brands now

    Verbatim and Taiyo Yuden are considered the best quality, but there may be other reasons why this happens, such as a fault with the superdrive.
    What Mac do you have, with what version of OS X?

  • Device not working with Log and Transfer in FCP

    I am trying to get some footage off my camera into final cut pro, but Final Cut Pro does not recognise my device when I try to use Log & Transfer
    The camera is question is a Cannon Legria FS20, here is a link
    http://www.canon.co.uk/ForHome/Product_Finder/Camcorders/flash_memory/LEGRIAFS20/
    I have looked around but can't seem to find any plug-ins to get it to work with Final Cut Pro, does anyone know any way I can get it to work with Log and Transfer
    Upon inspecting the hard drive, it saves video files in .MOD format with an .MOI file (which i assume is a metadata file
    How can I get it so that my device works with log and transfer?
    Thanks

    Hi -
    I did a little Google searching for information on your camera and it appears that it is a Standard Definition Camera that records in the MPEG-2 format.
    Log and Transfer only works with High Definition material.
    You will need to convert your video clips into a format that will work with FCP.
    I know nothing about working in PAL, but you want to download an free application called MPEG Streamclip from
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    This application will convert your MPEG-2 files into a format that you can use directly in FCP.
    Once you have converted the files to Apple DV-PAL, with the correct frame rate (25fps?) and field dominance you can either simply drag the converted files into FCP or import them using File > Import.
    Hope this helps.
    MtD

  • PC Webcam works with iChat and iSight

    Before I purchase a web cam for my PC I need to know if it will work with iChat and iSight. Will I need to install any third party software for my mac or PC?

    Hi Gene,
    You will need to make a choice between AIM and Trillian
    The AIM app is free but does not Audio only Chat to iChat users and has a very small pic.
    Trillian costs $25 for the Pro version to Video chat but has a Bigger pic and can do full screen. The Basic version can alos Audio only chat to iChat users. Trillian can also join other IM services.
    More info on setting up AIM on the PC http://www.ralphjohnsuk.dsl.pipex.com/page12.html and the XP Service Pack 2 firewall. The Firewall will need to have Trillain enabled though it as well if you use that.
    Ralph

  • Is BlackBerry HS300 Bluetooth Headset universal? Will that or any other Blackberry bluetooth work with Samsung?

    Is BlackBerry HS300 Bluetooth Headset universal? Will that or any other Blackberry bluetooth work with Samsung?
    Solved!
    Go to Solution.

    it should pair with it, there might be some advanced features that wont work but the basic ones should be fine.
    i used an HS 500 on a samsung A 358 ( i think it was the model) and it worked very well for calls.
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

Maybe you are looking for

  • How can I put music on my iPod onto my new iTunes?

    I have a bunch of music on my iPod, but I cannot copy it from my iPod onto my new current version of iTunes. I got the music from my old computer and old iTunes set up and now when I want to put the music from my iPod to my new computer iTunes, it is

  • Stuck with iPhoto 8 on Lion!

    I took my one year old iMac which is originally running Snow Leopard and I ran a clean install on it, meaning I lost my iLife package. Before I noticed that I downloaded Lion from app store and installed it. When I booted up I noticed no iLife softwa

  • Is it possible to create two correlation id's for same message in BPM

    Hi All Is it possible to define two correlation id's for the same correlation in BPM.. intially we defind one field as a correaltion id but in some rare situations we are getting two fiels at time containing the same correlation id then it is generat

  • Use files based on a date/time stamp in order

    I have a PL/SQL procedure that is using BFILE to pick-up and read a file. The file will have the same starting characters for every file followed by a date/time stamp: AAAA_09232009 I need my procedure to use the file with the oldest date first and t

  • Mirrored doors G4/ great computer, but some questions --- keep or retire?

    Would appreciate anyone who could give me some advice here. I still have the Power Mac Mirrored Door G4/1.0 GHz Dual Processor running (purchased in 2002). It's not my only mac, but I still use this one for some tasks. It's running 10.2.9. As is, wil