Hello please i need some information about the blackberr...

hello please i need some information about the blackberry instant messenger is how does it work , i heard that i send messages for free from a blackberry to a blackberry is it true ? does it need internet ? and does it matter if the other phone is in another country'
thank you alot

Hello,
Here is a page with much information about BBM:
http://na.blackberry.com/eng/devices/features/im/blackberry_messenger.jsp
Hope that helps! If not, Please come to:
http://supportforums.blackberry.com/rim/
and register an account. Then post to the applicable forum.
Thanks!
Occam's Razor nearly always applies when troubleshooting technology issues!
If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
Join our BBM Channels
BSCF General Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • I need some information about jre 1.5 and jre 1.6.

    Hello guys,
    I need some information about jre 1.5 and jre 1.6.
    Suppose if i have jre 1.5 customized with "additional language support" installed in my my desktop, and later on i install jre 1.6. will this jre over write all the esisting settings which was present in jre 1.5?
    In short will the version upgrades disable the features of the old Version even though the old version is present in the desktop?
    Thanks in advance for your answers.

    In <2j_j3.1889$[email protected]> =?iso-8859-1?B?VG9t4XMgU3XhcmV6?= writes:
    > Hi all, I am developing an acquisition data system for biomedical
    >signals and I need to transmit this data from my hardware to PC using the
    >USB port. For this, I am writing a device driver for Windows 98
    ^^^^^^ ^^^^^^ ^^^^^^^ ^^
    That's not a trivial step. I would write a small C/C++ program that
    exercises your driver (for robustness) just to be sure it's working
    right first without crashing your system.
    >The problem is that I don't know to use this driver in LabView.
    >For now, I think to use a "code interface node" with code writen in C or a
    >"call library function" with a DLL.
    That's correct. _After_ you got your C/C
    ++ test program (and USB
    driver) above working, then you can convert this little test program
    into a DLL or CIN, which can interface with LabView. A DLL might be
    easier (slightly) to write, but the CIN will work faster with LabView
    and can be designed to be reentrant. The Code Interface Reference
    Manual should guide you. Remember, this is a task for an _experienced_
    C programmer. You'll need to use handles to pointers into all your
    dynamic arrays and such passed into LabView.
    After you got your CIN or DLL written, you can use a special CIN
    function node to "link" (or bind) your CIN object into LabView's VI
    diagram.
    SOME THOUGHTS:
    There are many hardware devices already on the market today that come
    with Windows 98 drivers and DLL (or even CIN) libraries that would work
    immediately with LabView. Why don't you save yourself three months of
    work and simply buy one of these?
    /\ Mark M Mehl, alias Superticker (Supertickler to some)
    <><> Internet: [email protected]
    \/ Preferred
    UUCP: uunet!iastate.edu!mehl
    Disclaimer: You got to be kidding; who would want to claim anything I said?

  • I need some info about the Document Class.

    Hi,
    I need some information about the Document Class, can anybody
    tell me where I can find it.
    thanks

    Emad Zedan,
    > I need some information about the Document Class, can
    > anybody tell me where I can find it.
    The concept of the document class was introduced in Flash
    CS3. What it
    does is allow you to optionally associate a custom AS3 class
    with your FLA
    in the Flash authoring tool. Your document class effectively
    *becomes* the
    main timeline. This is your chance to influence the
    underlying behavior of
    the MovieClip or Sprite instance that serves as the
    foundation for your SWF.
    If you don't associate a custom document class with your
    FLA, the FLA is
    associated automatically with a default document class called
    MainTimeline,
    which extends MovieClip.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • I need some information about File Download & File Upload

    Hi  All,
    Can any one help me on this, I need some information about File Download & File Upload.
    I read tutorial abt file upload and download but some of methods in tutorial are deprecated so i need clear information abt File upload and Download, if possible Code examples.
    Thanks
    Ragards
    Ravi Golla

    Hi Ravi
    Check out thses links for examples:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00062266-3aa9-2910-d485-f1088c3a4d71
    /docs/DOC-8661#22 [original link is broken]
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/202a850a-58e0-2910-eeb3-bfc3e081257f
    Otherwise you can simply follow this code for file download
    Use the code like this.
    1) Create the button and bind the action for it.
    2)then write this code in the action.
    3) do not write any thing in the init method.
    try {
    final byte[] content = this.getByteArrayFromResourcePath("C:
    xyz.properties");
    final IWDCachedWebResource resource = WDWebResource.getWebResource(content, WDWebResourceType.UNKNOWN);
    try {
    final IWDWindow window = wdComponentAPI.getWindowManager().createExternalWindow(resource.getAbsoluteURL(), "WD_Filedownload", false);
    window.open();
    catch(Exception e)
    wdComponentAPI.getMessageManager().reportException(new WDNonFatalException(e), false);
    5) writr the method getByteArrayFromResourcePath
    //@@begin others
    private byte[] getByteArrayFromResourcePath(String resourcePath)
    throws FileNotFoundException, IOException {
    FileInputStream in = new FileInputStream(new File(resourcePath));
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    int len;
    byte[] part = new byte[10 * 1024];
    while ((len = in.read(part)) != -1) {
    out.write(part, 0, len);
    in.close();
    return out.toByteArray();
    //end
    Similarly for file upload
    Similarly for upload in to server path also do the same
    IWDAttributeInfo attInfo =
    wdContext.getNodeInfo().getAttribute("upload");
    binaryType =
    (IWDModifiableBinaryType) attInfo.getModifiableSimpleType();
    uploadedName = binaryType.getFileName();
    File filename =new File("
    <server name>
    <folder name>
    "+uploadedName ); );
    try {
    FileOutputStream out = new FileOutputStream(filename);
    out.write(b);
    out.close();
    } catch (FileNotFoundException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();

  • I need some advice about the macbook pro and iPhone 5. I took a video on my iPhone and tried to email it it said it was too big to send? So i downloaded it to my macbook pro and tried to mail it to no avail? The macbook tells me the server won't let it th

    I need some advice about the macbook pro and iPhone 5.
    I took a video on my iPhone and tried to email it it said it was too big to send? So i downloaded it to my macbook pro and tried to mail it to no avail? The macbook tells me the server won't let it through other mail goes through any ideas how to resize it or what it might take to send it?

    I agree with LowLister, the best option for you to share the video online is to upload it to your online storage account for example : Box, Dropbox, SkyDrive (All of them provide free storage beginning from 2GB).
    You can upload the files which you want to share in this online storage and then they have sharing options in which you'll will get the link of the file to be sent and send the email. You're good to go!
    Tip : You can store multiple files for backup purposes.

  • I need some information about scripts

    hi,
    i need detailed information about scripts.tell me where it will available.
    bye
    sreenu.

    Hi,
    Posting in the ep forum,I believe you require Information on javascripts and client side eventing(EPCF).
    Here is the link that you need with regard to this:
    http://help.sap.com/saphelp_erp2005/helpdata/en/ce/3e98408d953154e10000000a1550b0/frameset.htm
    (Or go to SAP NetWeaver Developer’s Guide->
    IT Scenario-Driven Enhancements to Applications->Running an Enterprise Portal->Core Development Tasks->Creating and Managing Content->Client-side Eventing)
    The below document can also be useful.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/enterprise portal client.pdf
    If you need an illustration of how epcf can be used , you can refer to this blog
    /people/arulraja.ma/blog/2004/12/18/how-to-include-loading-message-in-a-portal-iview-ep6-sp2
    Regards,
    Harish
    (Please award points for helpful answers)

  • HT5025 I need an information about the voiceover utility. In Israel the Iphone comes with the VoiceOver/Siri in hebrew? Would be possible to a blind israeli use the Iphone? How?

    I need an information about VoiceOver/Siri in hebrew...
    Would be possible to a blind israeli use the Iphone? How?
    I ask you because the VoiceOver is not translated to hebrew...

    If what you are asking is whether additional languages can be added to iPhone Voiceover, the answer is "no".
    You can ask Apple to add Hebrew via
    http://www.apple.com/feedback/iphone.html

  • I need some information about drivers

    Hi all, I am developing an acquisition data system for biomedical
    signals and I need to transmit this data from my hardware to PC using the
    USB port. For this, I am writing a device driver for Windows 98 that receive
    data and put it in a memory buffer. I have a VI which graphs this data in
    LabView 5.0. The problem is that I don´t know to use this driver in LabView.
    For now, I think to use a "code interface node" with code writen in C or a
    "call library function" with a DLL. But I need some help with the "code
    interface node" because this VI don´t use a .c file. Shortly, I apreciate
    some help with this VI or some idea for use the USB port in LabView. Thanks.
    Tomás

    In <2j_j3.1889$[email protected]> =?iso-8859-1?B?VG9t4XMgU3XhcmV6?= writes:
    > Hi all, I am developing an acquisition data system for biomedical
    >signals and I need to transmit this data from my hardware to PC using the
    >USB port. For this, I am writing a device driver for Windows 98
    ^^^^^^ ^^^^^^ ^^^^^^^ ^^
    That's not a trivial step. I would write a small C/C++ program that
    exercises your driver (for robustness) just to be sure it's working
    right first without crashing your system.
    >The problem is that I don't know to use this driver in LabView.
    >For now, I think to use a "code interface node" with code writen in C or a
    >"call library function" with a DLL.
    That's correct. _After_ you got your C/C
    ++ test program (and USB
    driver) above working, then you can convert this little test program
    into a DLL or CIN, which can interface with LabView. A DLL might be
    easier (slightly) to write, but the CIN will work faster with LabView
    and can be designed to be reentrant. The Code Interface Reference
    Manual should guide you. Remember, this is a task for an _experienced_
    C programmer. You'll need to use handles to pointers into all your
    dynamic arrays and such passed into LabView.
    After you got your CIN or DLL written, you can use a special CIN
    function node to "link" (or bind) your CIN object into LabView's VI
    diagram.
    SOME THOUGHTS:
    There are many hardware devices already on the market today that come
    with Windows 98 drivers and DLL (or even CIN) libraries that would work
    immediately with LabView. Why don't you save yourself three months of
    work and simply buy one of these?
    /\ Mark M Mehl, alias Superticker (Supertickler to some)
    <><> Internet: [email protected]
    \/ Preferred
    UUCP: uunet!iastate.edu!mehl
    Disclaimer: You got to be kidding; who would want to claim anything I said?

  • I need some information regarding the Enable-SPSessionStateService commandlet

    I am our TFS Admin and by default a pseudo SharePoint 2010 admin as well.  We have a couple users who can design and build pages, portals, web parts, etc..  Anyway, one of those users tried to add a web part for SQL Reporting Services
    and in doing so caused an error to occur any time someone attempts to access that page/portal (It is actually a dashboard for TFS).
    After some digging around, the real error (behind the unexpected error with correlation ID) is "Microsoft.Reporting.WebForms.SessionDisabledException: Session state has been disabled for ASP.NET.  The Report Viewer control requires that session
    state be enabled in local mode."
    As a potential solution to this error I found this: 
    http://geekswithblogs.net/naijacoder/archive/2010/06/14/140408.aspx
    among others referencing the same commandlet.
    To my actual questions.
    1.  This commandlet creates a state service database.  Where?  Locally or on the DB server SharePoint is using?  In my case this is a separate machine.
    2.  I noticed on my server running SharePoint 2010 I have an ASP.Net State Service running and a state DB on my DB server.  Do I need to create a new one?  I restarted the service without errors, this did not correct my error.
    3. This commandlet alters the web.config files for the farm. In what way? Is there an easy revert which will change them back should this not solve my problem or make my problem worse somehow?
    I tried to find some deeper documentation on this but couldn't, so maybe a link to that is all I need. 
    Thanks Everyone,  Stu

    The database is created on the default SQL Server/Instance in use by SharePoint, unless you use the -DatabaseServer parameter to specify the server/instance.
    Do you have a State Service Service Application in Manage Service Applications in Central Admin?
    I believe it adds session state to enabled. Just disable or remove the State Service Service App to revert.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Please tell me some information about gmail

    hi, everybody. I'm a long time OSX user but I never used the "mail." Now, I want to try mail with my gmail account but I found it's not that easy. First of all, what type of account is the gmail? IMAP, POP, or Exchange? Next, what is incoming mail server and outgoing mail server? Thanks so much!

    Gmail offers POP, which means you can use Mail.app like a regular ISP account. If you need an invite to GMail email me at the address on http://Gnarlodious.com/
    Once yiou have a Gmail address you need to enable POP (which includes SMTP). There is a help link on the GMail page that allows you to enable POP and other features.
    Once that is turned on, you need to set up the Mail.app for downloading your mail (and uploading). There are excellent instruction pages on Gmail, which I believe someone else gave you.

  • Need some information about TM 8.1and 9.0

    Hello all,
    our customer maybe wants to use TM 9.0. all other versions were not useable from their point of view becausethere are to many customer developments in the integrated LE-TRA TM.
    Now I want to see the masks of TM 8.0 or 8.1 or also 9.0. The problem is that we get the installation earliest  at the end of January.
    Is anyone here who can send me screenshots of all masks? I know that this takes time which we all need to staff our projects.
    A list like a mapping between the fields and functions of "old" and "new" TM would also be very very helpful and great.
    Or do I have the possibility to connect to a TM 8.0/1/9.0? A dummy system would be enough.
    Thanks a lot for your help. Your can also contact me by mail. Maybe we can take a call and talk about my problem.
    Have a nice weekend and a good time these days before Christmas. I hope to hear something from all the experts here.
    Regards
    Michael

    Hi Michael,
    TM 8.0 is released GA (Generally Available).  TM 8.1 is in RKT (Rampup Knowledge Transfer) with GA not yet determined.  TM 9.0 is not yet fully in testing.  What is it that you need for the different versions?
    A better source of information may be found through your AE, but if that is difficult due to the season, please contact me and I will see what I can do to help connect you with the correct group.
    Regards,
    Mike Appleby

  • I need some information about using multiple toggle groups??

    Hi,
    I am trying to implement multiple toggle groups in javafx(one for radio button and one for toggle buttons).
    On selecting one of the radio buttons , the toggle buttons appear and I need to perform some operation based on the selected toggle button value.
    But for me only the radio button toggling is working.
    The toggle button is coming as disabled.
    Please help me out.

    Can you post a short, self-contained, correct example demonstrating the problem? The following example works fine for me:
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.RadioButton;
    import javafx.scene.control.ToggleButton;
    import javafx.scene.control.ToggleGroup;
    import javafx.scene.layout.HBox;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class MultipleToggleGroupExample extends Application {
      @Override
      public void start(Stage primaryStage) {
      final ToggleGroup radioButtonGroup = new ToggleGroup();
      final RadioButton rb1 = new RadioButton("Choice 1");
      final RadioButton rb2 = new RadioButton("Choice 2");
      rb1.setToggleGroup(radioButtonGroup);
      rb2.setToggleGroup(radioButtonGroup);
      final ToggleGroup toggleButtonGroup = new ToggleGroup();
      final ToggleButton tb1 = new ToggleButton("Choice A");
      final ToggleButton tb2 = new ToggleButton("Choice B");
      tb1.setToggleGroup(toggleButtonGroup);
      tb2.setToggleGroup(toggleButtonGroup);
      final HBox root = new HBox(10);
      final VBox radioButtons = new VBox(5);
      radioButtons.getChildren().addAll(rb1, rb2);
      final VBox toggleButtons = new VBox(5);
      toggleButtons.getChildren().addAll(tb1, tb2);
      root.getChildren().addAll(radioButtons, toggleButtons);
      toggleButtons.visibleProperty().bind(rb2.selectedProperty());
      primaryStage.setScene(new Scene(root, 600, 400));
      primaryStage.show();
      public static void main(String[] args) {
      launch(args);

  • Hello,i just need some information

    Hy,i just have some questions...First,i am in project for creating some website with streaming video.The connection to the host is bad and i need to know if Flash media server can reconnect if connection is lost during playback and second,is there some kind of plugin for subtitles,this is very important,If there is a positive answers on those two questions,the third would be "where can i buy it and how"?

    First question: Yes very much. You can write simple logic for reconnection. Also there is new feature called Smart Reconnect which you can use for this purpose.
    Smart Reconnect links: -
    http://help.adobe.com/en_US/FlashMediaServer/3.5.3/FeaturesGuide/flashmediaserver_3.5.3_fe atures.pdf
    http://aspexamples.adobe.com/flash/streamreconnect.html
    Second question: - I am not aware of such plug-in personally but there are high chances that it might be available. But i want to know first how you want to achieve it - are you sub titles not embedded in movie itself or is it separate from movie content and if yes in what format. Even if one is not available for ready to use - i think developing one should not be big deal - it can simple as overlay on your client side which gets populated with text at runtime.
    Third question: You can download it from http://www.adobe.com/products/flashmediaserver/ (just choose your edition & on that page you should have download link) - OR once you decide to buy you can send your contact details(Name,Email,Phone,Geo Location) to me via private message and i can help you get in touch with right person.

  • Need some information about SCM - Module

    dear freiends i have a small doubt,
    sd, mm, this all modules are came under  SCM.
    IS THERE ANY ANOTHER MODULE LIKE '' SCM'' IN SAP.
    Thanks inadvance
    narasimha

    Hi,
    SAP has business suite with some new dimensional products, SAP SCM is part of it. Previously all were emphasizing on the indivisual modules like SD, MM, PP, PM etc., but now SAP is changing direction and talking more about End to ENd Solutions.
    On this road way they came up with these new dimension products.
    SAP SCM,
    SAP PLM,
    SAP CRM,
    SAP ERP
    SAP HCM
    For more details
    http://www.sap.com/solutions/business-suite/scm/index.epx
    Thanks,
    Raja

  • We need some information about Photoshop CS4 and Other Adobe Products Purchase

    We purchased Photoshop CS4 Extended for our educational use as Volume License...
    When we purchased the following products:
    1. Adobe Photoshop CS4 Extended
    2. Adobe Dreamweaver CS4
    3. Adobe Page Maker 7.0
    4. Adobe Flash CS4 Professional
    we only got the "SERIAL NO. (VL) with Licence Certificate". We didn't get any Application CD/DVD media or Manuals.?
    Then we downloaded and installed the product with the serial supplied. product is working fine.. but if Adobe is charging such amount for their product, then the Applicatio Media & Manuals should be issued for the client.
    Why?
    kindly send your valuble feedback about this to us on : [email protected]
    Message was edited by: SJCETPALAI2010

    For the past several years, manuals come as PDF files, even if you buy the retail license. Do you hate the environment and want to kill trees?
    Downloaded files should be backed up on a blank DVD.
    Your purchasing agent should have been aware that a license and media are two separate purchases for volume customers.
    SJCETPALAI2010 wrote:
     ...but if Adobe is charging such amount for their product, then the Applicatio Media & Manuals should be issued for the client...
    Adobe is not 'charging such amount'. You have the cheapest license available and have the same product as a retail user. Appreciate it.

Maybe you are looking for

  • Unable to access the content of a Window (PopUp)

    Hi, I am trying to access the contents of a MovieClip I placed inside a PopUpWindow component, but can't figure how to do that. I have created the window with something like this: var SAedit_win:MovieClip = mx.managers.PopUpManager.createPopUp(_root,

  • Time series function TODATE is VERY slow

    While creating a report with data at different aggregation levels I run into serious performance problems. The situation is as follows. The datamart consists of a basic star with one fact table, containg sales amounts and three dimensions: - Product

  • Installing Creative Cloud causes Error 207

    Hi all, I try to install CC on an new clean Win7 PC. The Setup takes long and end's with the Error 207. Retrying doesn't help it ends with a new 207 Error a few minutes later... Here are some log enties: 07/26/14 17:04:22:467 | [WARN] |  | ASU | PIM

  • Flash plugin with firefox 3, no sound [SOLVED]

    Good morning.   I would like to report a problem that I have with the flashplugin in firefox. I installed it using the nspluginwrapper-flash 9.0.124.0-1 in AUR. It works, but I get no sound at all. I nstalled the suggested lib32-alsa-lib package, but

  • Search Interface

    I am about to pull my hair out one strand at a time.  I am trying desperately to create an advanced recordset. I need this explained to me in the simpliest of terms.  I have a table that has nine columns:  posting title, size, dress condition, dress