BB 8320

Hai all

What is series BB 8320 on GPS can use as GPS as nokia?

Can you tell us what exactly you are looking for.

Here is a list of the devices that has GPS features...

http://NA.BlackBerry.com/eng/devices/features/GPS.jsp

Tags: BlackBerry Developers

Similar Questions

  • 8320 running Simulator 4.2.2.161 will not connect to the 4.1.4 MDS Simulator

    HI -.

    I just installed the 4.2.2.161 Simulator device 8320 and can't seem to connect to the network via the browser.  I run the 4.1.4 MDS Simulator.  I have several other simulators installed, and they can all connect fine when I run it.  When I'm trying to here, it is there for awhil, and then it times out with the message "unable to connect to the selected Mobile Data Service. Please try again later. If the problem persists please contact your administrator. »

    I noticed a strange thing is that I do not see the "arrows" flashing at the top right of the screen of the simulated device, and I see no record appears in the MDS Simulator window.

    Please notify.

    Thank you

    Mike

    Managed to get the 4.2.2.161 Simulator (8320) working on the PC with MDS 4.1.4.  The only thing I did was shut down, install the 4.2.2.163 Simulator (8310), try it (it worked), and then re-run the 4.2.2.161 Simulator (8320).  It just started working.  (If all goes well, it blocks everything works again.)

    It does not always work on another PC with MDS 4.1.0 but I guess it's just a matter of MDS version.

    Mike

  • ATT 8320 - launch the browser does not work

    8320 with v4.5.0.110

    I did have a problem with that on any other device, but I start the browser and close the app and it returns me to the Ribbon.  However, when I open the browser, the page I started to.

    On other devices, it opens the browser to the page.

    I have attached the device and this is what happens:

    Exit MyApplication (215)
    Net_rim_bb_browser_daemon (73) foreground
    Net_rim_bb_ribbon_app (80) foreground
    FocusHistory: Acquired Focus; Home screen App; Component net.rim.device.apps.internal.ribbon.launcher.RibbonIconField

    Here is the code I use the launch of the browser.  Maybe I should use System.exit (0)?

    BrowserSession browserSession = Browser.getDefaultSession();browserSession.displayPage(url);System.exit(0);
    

    Call the private showBrowser after displayPage.  This brings the browser to the forefront.

  • GPS on Curve 8320 T-Mobile capabilities

    Hello

    I am using a T-Mobile 8320 and trying to find the location of a user via the API LocationProvider.  However, it doesn't seem to work properly. When I deploy my application on the bberry, an exception is thrown indicating that I was overwhelmed.  I have 2 questions:

    1. read these message boards, I have one on an article that indicates which models of black berries have the ability to identify the location of a user.  I interpret this as meaning that the locationprovider api will not work on the 8320, although I use cell towers to determine the location of the device.  Here is the link I'm referring to http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800703/What_Is...

    2. If I'm missinterpreting article, I refer above, I have included my code base (which is a slight modification of the whereami.java class, which is located here: http://na.blackberry.com/developers/resources/LBS_LAB.zip).  Could someone please point out, where I made a mistake.

    Thanks in advance!

    public class as whereami extends UiApplication implements LocationListener {}

    Private EditField _logField.
    private screen _screen.

    _criteria private criteria;
    Private LocationProvider _provider;
    Location _Location;
       
    public WhereAmI() {}
    _logField = new EditField ("Log:", "");
    _SCREEN = new MainScreen();
    _SCREEN. Add (_logField);
           
    SingleFixMenu MenuItem = new MenuItem ("Get unique Fix", 1, 1) {}
    public void run() {}
    getSingleFix();
                   
    }
    };
                   
    MultipleFixMenu MenuItem = new MenuItem ("Start Fix multiple", 1, 1) {}
    public void run() {}
    getMultipleFix();
    }
    };

    StopMultipleFixMenu MenuItem = new MenuItem ("Stop Fix multiple", 1, 1) {}
    public void run() {}
    resetProvider();
    }
    };
    _SCREEN. AddMenuItem (singleFixMenu);
    _SCREEN. AddMenuItem (multipleFixMenu);
    _SCREEN. AddMenuItem (stopMultipleFixMenu);
    pushScreen (_screen);
    }

    Public Shared Sub main (String [] args) {}
    WhereAmI app = new WhereAmI();
    app.enterEventDispatcher ();
    }
       
    private void setupCriteria() {}
    _criteria = new Criteria();
    _criteria.setCostAllowed (true);
    _criteria.setHorizontalAccuracy (Criteria.NO_REQUIREMENT);
    _criteria.setVerticalAccuracy (Criteria.NO_REQUIREMENT);
    _criteria.setPreferredPowerConsumption (Criteria.POWER_USAGE_LOW);
    }
       
    private void createLocationProvider() {}
    try {}
    _provider = LocationProvider.getInstance (_criteria);
    } catch (LocationException e) {}
    Log ("LocationException:" + e.getMessage ());
    }
    }
       
    private void getSingleFix() {}
    New Thread() {}
    public void run() {}
    resetProvider();
    setupCriteria();
    createLocationProvider();
    try {}
    _Location = _provider.getLocation(-1);
    } catch (LocationException e) {}
    Log ("LocationException:" + e.getMessage ());
    } catch (InterruptedException e) {}
    Log (' InterruptedException: "+ e.getMessage () ');
    }
                   
    {If (_location! = null & {_location.isValid ())}
    Contact details of QualifiedCoordinates = _location.getQualifiedCoordinates ();
    Log ("Longitude:" + coordinates.getLongitude ());
    Log ("Latitude:" + coordinates.getLatitude ());
    Log ("height:"+ coordinates.getAltitude () ');
    } else {}
    Log ("error: location is not valid");
    }
    }
    }. start();
    }
       
    private void getMultipleFix() {}
    resetProvider();
    setupCriteria();
    createLocationProvider();
    _provider.setLocationListener (this, 5, -1, -1);
    }
       
    private void resetProvider() {}
    {if(_provider!=null)}
    _provider.setLocationListener (null, 0, 0, 0);
    _provider. Reset();
    _provider = null;
    }
    }
       
    {public locationUpdated Sub (LocationProvider provider, a place)
    {If (location! = null & {location.isValid ())}
    Contact details of QualifiedCoordinates = location.getQualifiedCoordinates ();
    Log ("Longitude:" + coordinates.getLongitude ());
    Log ("Latitude:" + coordinates.getLatitude ());
    Log ("height:"+ coordinates.getAltitude () ');
    } else {}
    Log ("error: location is not valid");
    }
    }

    ' Public Sub providerStateChanged (LocationProvider provider, int newState) {}
    }

    Public Sub log (final String msg) {}
    invokeLater (new Runnable() {}
    public void run() {}
    _logField.SetText (_logField.GetText () + "\n" + msg);
    }
    });
    }

    }

    In this link GPS is not checked for curve 8320.

    http://NA.BlackBerry.com/eng/devices/blackberrycurve8300/curve_specifications.jsp

  • How to use BB 8320

    Hai all,

    before thnks for attention

    I want to ask how emulator or type of emulator for blackberry for the use of series BB 8320, JDE, I mean

    concerning

    Andi

    Also, you can use 83xx Simulator with the older JDE.

    You can download a standalone here Simulator: Simulator of Blackberry

    And when cod files are compiled to transfer them to the Simulator folder and launch the Simulator.

  • How to install emulator 8320 in JDE Plugin 1.1 beta 2?

    Hello

    I have to build an app for Blackberry 8320 with os 4.5. I downloaded and installed the blackberry Simulator, but I don't have simulators in eclipse.

    There is no any apperas simulators in eclipse with component pack 4.5, so how to install one?

    Thanks in advance.

    I just moved my eclipse in a different folder, and then all the simulators got lost

  • Signature problem when you run the program BluetoothDemo on Blackberry 8320

    Hello

    I try to connect from my computer to the Blackberry 8320 using a serial Bluetooth transceiver.  The "BluetoothDemo" program is not function properly.  When I run it, I first see a white screen with "Bluetooth Sample" at the top.  I click on the trackball and I get a menu with the options 'Listening to connections' and 'Full Meno'.  I click on listen for connections and a screen pops up that says "connect to an external device and then type something...» "I type something on the Blackberry and the letters appear, but no other options appear to verify a Bluetooth connection.  I have already associated the Bluetooth with Blackberry, but the connection failed appears when I run the program BluetoothDemo. When I click the trackball again, I see the full menu with "Serial Port close',"Get DB", etc..

    In my view, that there is a problem with secure API signatures.  Obviously the 'BluetoothDemo' program is not run after the first steps.  When I debug on Blackberry, I see the following output from the console, which leads me to believe that there is a problem with signatures:

    ocusHistory: Focus lost; Home screen App; Component net.rim.device.apps.internal.ribbon.launcher.RibbonIconField
    FocusHistory: Acquired Focus; Home screen App; Component net.rim.device.api.ui.MediaController
    JVM: bklt @286061: timer
    JVM: bklt @286061: idle 15
    JVM: bklt @292270: setTimer 15
    FocusHistory: Lost Focus; Home screen App; Component net.rim.device.api.ui.MediaController
    MWC: BluetoothDemo (4738) No sig 0 x 33
    From BluetoothDemo
    MWC: BluetoothDemo (4738) No sig 0 x 33
    BluetoothDemo (167) started
    BluetoothDemo (167) foreground
    FocusHistory: Acquired Focus; Home screen App; Component net.rim.device.apps.internal.ribbon.launcher.RibbonIconField
    FocusHistory: Lost Focus; Home screen App; Component net.rim.device.apps.internal.ribbon.launcher.RibbonIconField
    FocusHistory: Lost Focus; Bluetooth demo app. NULL component
    FocusHistory: Acquired Focus; Bluetooth demo app. Component net.rim.device.api.ui.menu.DefaultMenuListField
    FocusHistory: Lost Focus; Bluetooth demo app. Component net.rim.device.api.ui.menu.DefaultMenuListField
    BT: allocSerialPort a0d729a8
    BT: sdpAddRecord
    BT: allocSdpAttributeData
    FocusHistory: Lost Focus; Bluetooth demo app. NULL component
    BT: SppWrite-1 failed: 1
    Unable to write data. Exception: java.io.IOException: BtSppWrite failed

    I was puzzled at first running the program of BluetoothDemo and initially built and generated a file alx for the com_rimbluetoothserialportdemo program, which I think is used by the BluetoothDemo program.  The com_rimbluetoothserialportdemo program is currently connected to Bluetooth tx/rx, as indicated by the status of remaining devices firmly on instead of flashing (when BluetoothDemo runs the status light flashes, indicating no connection). When I switch between workspaces in which I have these projects, the set of keys is not signed, and I have to sign in again, which seems to cause the keys in the other workspace to become not signed.  As further evidence of the strange signature problem, sometimes when I run either on the Blackberry there is an error that says that the application is not signed.

    I want to delete the workspace and the file alx com_rimbluetoothetc could be a step in the right direction.  Do I have reason to assume that the 'no sig 0 x 33' is a problem with API signature secure?  Could BluetoothDemo access to com_rimbluetoothserialport and be denied because there no signatures?  Thanks for any help you can provide.

    Not sure that your reading of the code is correct.

    _dout.writeInt (JUST_OPEN);
    _dout. Flush();

    These two statements will write out - which seems to be the first thing the code does.  Then it goes into a loop of reading, but suppose a specifically formatted data.

    In my test, I removed these and replaced with something that I thought he would be working and I'm depending on the device.  As noted yesterday picked up O the data of a GPS puck - these things just send data, they never expect anything in return.  So my code looks like this:

    byte [] buffer = new byte [1024];
    for (;;) {
        int len = _din.read(buffer);
        String justRead = "Read: " + Integer.toString(len) + " bytes: " + new String(buffer, 0, len) + '\n';
        System.out.println(justRead);
    }
    
  • Trying to install my application on the device 8320

    Hi everyone, newbie on BlackBerry: Desktop Software 6.0, Eclipse 3.5, BlackBerry Java SDK 4.5/5.0/6.0.

    I developed and tested little app on a few simulators and smartphone for the first time, I try to install it on device 8320 real (BlackBerry OS 4.5) using desktop software.

    When I click on "Import files" and choose files .alx file, he finally said 'there was an error importing files. ...".  files .alx file seems a .cod good name of file and directory.

    What could be wrong? I tried application example 'HelloWorld', so I don't think it's about siging code.

    Thank you

    bbg9507 wrote:

    In any case project HelloWorld appeared on the list of applications, I clicked on "+" button, it transformed into a green color and status became "install pending". What's next, please?

    Thank you

    Bob

    You must press the button apply, located in the lower right of the BlackBerry Destkop Manager window.

  • Convenience key on Simulator 8320 right hand side

    Hi all

    I have a Polish request to J2ME. I have converted which in COD with the CAP command. Then loaded a Java program in Simulator 8320 (present in the pack making up 4.5). It was installed successfully. The application opened correctly.

    Now I have two commands Select (left side convenience key) and the output (on the side of right key of convenience). Left button works, but the right button does not work. If I demand using the Menu-> Close. The right key is the invocation of the camera correctly.

    I tested Simulator of storm, as it has a touch interface, the output worked fine here.

    I'm not sure of what could be the problem.

    Thank you and best regards,

    Sandeep

    Hi Simon,.

    Thanks for the reply. I did more research on the issue. If I use the Web, then we keyPress() method available. Here we can check if the code is - 19 (RIGHT KEY), then perform the required functionality.

    But in the case of form, we have keyPress() function. We can add support by adding a CustomItem. But this only works when the focus is on CustomItem. So if I want to go out on right control (which works fine on Nokia phones), it seems that Blackberry does not use the RIGHT BUTTON in form directly.

    I thought that according to this link the portage would be smooth. But it seems directly on Blackberry J2ME application porting is not possible.

    Please correct if this understanding is very good.

    Best regards

    Sandeep

  • UDP connection via wifi in the name of 8320 tunnel met IOException:Invalid

    I am new to Java, trying to open a UDP connection on wifi in my BB8320 (V4.2.2.180).

    I have connected to my 8320 to a WiFi network and that you can access Web page in the browser (configuration: Wi - Fi browser).

    I tried with: Connector.open (DatagramConnection) (datagram://192.168.1.101:5009) and Connector.open (DatagramConnection) (udp://192.168.1.101:5009), but all got IOException:Invalid name of the tunnel.)

    Here's my Mobile Network Options in the camera: Data Services - on; Connection preference - Wi - Fi only.

    The same code works fine in the emulator, tested in a wired network.

    I googled this IOException, it seems that the TCP APN cannot be null, I tried with blackberry.net cmnet, wap.voicestream.com and even the name of the Wi - Fi connection, everyone met time-out problem.

    I have some questions below:

    1. is there any configuration that I missed?

    2. the UDP connection via wifi check the AFN? The APN configured in the emulator is null.

    3. do UDP and TCP connection API need permission in the device?

    Appreciate for any suggestions!

    Sam

    I did in the past, and IIRC the trick was to add: «;» interface = wifi; deviceside = true"to your connection string. for example:

    Connector.Open ("udp://192.168.1.101:5009; interface = wifi; deviceside = true ")"

  • Curve 8320 java.io.IOException: connection not writable

    Hey guys,.

    Does anyone know of specific problems with the connections involving 8320 to the images? It seems to me this error:

    java.io.IOException: connection not writable

    When I try to upload an image. I know that the code is correct, because I got it runnning on the 8830, 8900, 9000 and 9530.

    Anyone know of a particular way of dealing with that on this version?

    Thanks for your help and your time

    EDIT: It is also worth noting that I have a series of other connections to Web pages using the formats the https and http which work perfectly well with the 8320. It only occurs with the download of images.

    Apparently he has developed before, for example,

    http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=java_dev&thread.ID=16200

    You can view the code? At least that anyone happen to know of a bug that would cause this, at least consider a timing

    or weird problem because they may appear only in certain configurations.

  • BlackBerry Smartphones youtube does not not on 8320

    I bought used 8320... his t-mobile! When I bought used, and youtube worked! I think it was company cell phone with the it policy... I update its OS several times when I bought when a month ago when I refreshed his BONES... m.youtube.com stop working! I think that the video streaming is stopped working!

    whemever I click on the button look, nothing appears, not a single error!

    Please help me with this =]

    current OS: 4.5.0.81 (108)

    Hello and welcome to the community!

    First, take a step back...

    • KB05099 Steps to take before selling or after the purchase of a used BlackBerry smartphone

    Ensure that all stages of the seller were already conducted, including correct cleaning of the BB of the it policy. From what you posted, which has not happened (the operating system does not remove the it refreshing policy).

    • KB18998 How to reset the factory default BlackBerry smart phone

    Good luck and let us know!

  • BlackBerry Smartphones is 8320 software works for the 8310?

    I have recently moved and accidentally threw away my BB cd that came in the box with my BB. I am trying to download the software, but there is none for the 8310, only the 8320... Is it OK to use?

    You can download the desktop software manager since this linkto backup contacts.

    There is also software for 8310 on this link, to compare what is available for downlaod and what you have on your 8310 under Options > on

    https://www.BlackBerry.com/downloads/entry.do?code=577BCC914F9E55D5E4E4F82F9F00E7D4

  • Blackberry Curve 8320 unlocked blackBerry smartphones

    Hello

    I have not actually bought my Blackberry yet, but I'm looking into it right now. I want to buy a unlocked Blackberry Curve 8320 which was previously on AT & T or T-mobile (I'm a couple more different). Anyway, I wanted to buy a Blackberry and place it on a data plan with Rogers Canada. I'm doing this because I want to be able to use BBM, so I think I need a data plan.

    I buy the Blackberry separately because I want to be able to use overseas when I use another GSM SIM card for example. I know doing it on contract is cheaper, but I don't want to do that because I will be locked on a 3 year contract and I won't be at the Canada for 3 years.

    I just want to know if the Rogers data network will work with a Blackberry unlocked as I described above. I asked Rogers customer service and they said that they cannot confirm that the Rogers data network will be to 'connect' with the unlocked Blackberry because it once belonged to another provider and I should buy a Blackberry from Rogers. I don't know if they just said that if I would buy the Blackberry from Rogers rather than elsewhere. I know the unlocked Blackberry should work fine with a regular for calls and SMS GSM SIM card and all that but I want to know specifically about BBM - ing.

    Sorry, my question is so long. Thanks a lot for your help!

    While Canadian companies may be different from their American counterarts I do not that the differences are only significant to materially affect my response.

    When you buy a 'new' locked onto a support device will be offered the device at a price at a price significantly lower than the retail price recommended for her.  That's what prescribed contractual lock in as they recover for the duration of the contract, the difference between what you pay and the cost.  They're subsidizing the price in order to collect a healthy monthly fees for access.

    All U.S. carriers require a data plan for smartphones in addition to any general "plans" for just minutes and text packages etc.  I guess that Canadian businesses require the same.

    In order to use BBM you need a dataplan carriers which is what allows your device use the features of the BIS (Blackberry Internet service) requiring Blackberry data push, e-mail, all what is "data".

    This is a new in the box device purchased by your friends at Rogers.  They sold you a Blackberry and they dance as they listen to the registry will chaching.  This is music to their ears.  This is an item being sold and it is "locked" to Rogers.  Of course, for each month of your servitude under contract happen to dance again once the Registry continues to provide them with more chaching.

    You bought a camera from them, you can use it at this stage only with them.  They will be as you might or might not be aware subject to various and assorted penalties if you tire of their service or their absence and take your business elsewhere, or try.  Costs of early termination can easily exceed your initial cost plus for a premium, in a credit institution, violating laws governing wear.

    It's what keeps dissatisfied customers even with the carriers that are less satisfactory.  It is just too expensive to leave while allowing some, but not all carriers for you 'sell' the balance of your contract to another.  If Rogers of permits that are unknown to me.

    If you buy an "unlocked" device it is expected of the band is compatible with Rogers (GSM/CDMA as the case may be) perfectly capable to be activated on their network.

    Their after-sales service is to use a euphemism, blowing smoke.  They know perfectly well that a device unlocked regardless of its origin.  They won't make you a device for which they do not receive rewarding chaching first and make run on their network.  Since you did not pay a subsidized price for the device that you are not obliged to a three-year plan or some length Rogers requires for locked for new devices.

    While they play stupid indeed hoping you will buy them and locked himself in a service contract.  It's guaranteed money for thirty-six months.  It's a lot of money.

    Assuming you get to admit only a 8320 unlocked (GSM) will play well with their network that you can buy a phone, monthly data on the plan without being locked in a period of time.

    You will absolutely need the dataplan however, at least the minimum plan they offer will prevent access to the services that make it a Blackberry.

    Of major importance for you in as long as purchaser of a used instrument is the only one not is indeed "unlocked" but the PIN was released by the former owner and the access to its carrier, T-Mobile or AT & T.  Every Blackberry is assigned a unique PIN that lives with her forever.  For example, if I want to sell my unlocked Blackberry Storm I will have to make arrangements for the release of the Verizon PIN so that a subsequent purchaser can activate the storm on Verizon (my service provider) or such that it is unlocked any service provider, as it really is a universal device capable of activation on a CDMA/GSM/UMTS network or Global.

    I would like to buy a used if and only if it is verifiable that the PIN was released by the previous owner/carrier.  With the instrument in hand, it can be checked on the device or not it is unlocked.  The output of the SPINDLE must be verified by the previous carrier and I'm too cynical, but I wouldn't take the word of the seller unless it was a very trustworthy family member and even then, I would like to politely ask for verification.

    Rogers wants money on your part.  They want the money upfront to sell you a Blackberry and they want the contract guaranteed money for the long term for the months down the line.  For Rogers, it's win/win.

    You can, even if it's an expensive to buy a new device of Rogers at the MSRP and not you will not lock in a three-year contract.  The majority of carriers who does not advertise that the difference is more than lost long-term do not lock you in their.

    I hope this helps.  If I appear cynical, it's because I am.  Carriers are there to increase their profits and integrity is lost in the maze.

  • Data transfer Palm Pilot IIIx for Blackberry 8320 blackBerry smartphones

    Thanks to BBSingh for help posting this message. I would really appreciate help from the members of the forum to provide a remedy that is known to work with my Palm and Blackberry.

    My problem is changing my old (December 1999 vintage) Palm IIIx data to my new Blackberry 8320. Years, I have used the Palm in conjunction with a Motorola L7089 (April 2000 vintage) and their IR ports for data transfer; Unfortunately, the phone fell in water and after drying carefully, he could make and receive calls again its screen remains empty, so no need to send SMS and most of the functions. Sales team convinced me to buy the Blackberry, but I'm starting to wonder if I've been conned, as usual with sellers once they get your money that they are not prepared to do anything else. New technology has undone me. In the long task of transfer of several thousand items manually I had recourse to the expertise of this forum.

    A tip I found has been updated the Blackberry Desk Top Manager to v4.6 and it would list the Palm in its devices to transfer data from. I did, but the resulting Wizard at the point of registration of the Palm, but it wouldn't activate a greyed on the option button. DTM for Windows status options System Tray icon COM1 has been disabled. I could allow it, but as soon as this dialog box has been closed COM1 returned to the disabled state. BTW, this is a non sequitur on COM1 Hotsync of Palm transfers data to the PC via COM1 and the Palm software tools works very well also. I closed all the related applications of Palm and it made no difference. I tried DTM 4.5 with the same result. As an aside how the icon options DTM is deleted from the system tray, Windows Task Manager should be used to close the application.

    Another tip say to export data from Palm in Outlook Express, then DTM would need to be OE. I enabled OE reluctantly because it is a questionable product, a favorite oxymoron is "microsoft security", has exported the Palm data in a CSV file, but when they are imported to OE it's garbage. Repeat the exercise but exported as tab delimited and got a worse result. Try to import or the other of these abortions in my Blackberry has been a waste of time.

    Another tip say export data from Palm as VCF which can import BlackBerrys, but did not say how they did it. Palm tools allows only the comma or tab files in the delimited export formats.

    MY PC is a Dell 4600 with 2 GB of RAM and 300 GB SATA HDD, XP Pro SP3, so that all the relevant fixes SP3 post. Windows Firewall software, the AV and malware have been temporarily disabled, and I logged in as administrator too.

    RESOLVED - 98%

    A big thank you to everyone who contributed ideas. Here is the solution to most data transfer: -.

    1. install the Blackberry Desktop Manager 4.5

    2. download the latest tools of Palm Desktop Manager which is 4.1.4 (I used 3.6)

    3. perform hotsync of Palm IIIx with Palm tools

    4. disconnect the Palm Pilot from PC

    5. connect the Blackberry to the PC

    6. open Blackberry DTM and check ' device (PIN): "appears

    7. Select the device switch Wizard, grant conditions and the next screen shows active button for Palm devices, click Next

    8 calendar, addresses, etc. are read, previews of each appear for approval; with the exception of the calendar. Click OK to finish and get out

    9. close DTM, disconnect Blackberry

    10, opening relevant applications on Blackberry to check, all transferred no problem except the grille which was empty

    I can live without the old calendar entries and do not have to manually re-create handfull. So the question is settled.

Maybe you are looking for