NEED HELP! email, youtube & APPS

Hi,
Ive had my blackberry 8520 for about a month now & i really need help.
I want to set up my personal hotmail email account on my phone but i need an enterprise activation password & i do not have one! & i dont know how to get it or who i need to contact to get it ( my provider 02? or
blackberry?)
Ive tried going to advanced options on Enterprise Activation & Host Routing Table but nothing happened.
Why cant it just be simple? Im sick.....
Also having problem with internet, i cant view youtube videos because it say "XML is not well formed" so i sick of that aswell.
Furthermore i cant get any APPS because i dont have my email.
IM SICK OF THIS PHONE!
I dont even know if this is the right place to ask for help, please can somebody please help me?

What your carrier will do is set up your BIS (Blackberry Internet Service) account on their system. That will then, when you go into the email setup app, present you with a Personal Email option (in addition to the Enterprise option). So, they will set up the BIS account...then you, via the email setup app, will configure BIS with the settings necessary for your various email services. See this demo:
http://na.blackberry.com/eng/support/blackberry101/setup.jsp#tab_tab_email
But, the very first thing is to have your carrier set your BIS account up...and, yes, at whatever additional fee they require.
And, you can completely ignore the Enterprise things...never ever select anything to do with Enterprise...unless you go to work for a large firm that has BES...then they should have BES admins to take care of the Enterprise stuff.
Best.
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

  • Newbie needs help with Flex app

    Hi there. I am very new to Flex and also fairly new to
    programming although I do have a little experience.
    I am trying to create an app which stores code snippets or
    common text I tend to use every day in my documents and emails.
    So basically I need help on a design level. I can refer to
    the developer's manual for exact instructions for commands, but I
    need to know what to code first.
    The app will consist of:
    -a tree directory structure where I can create groups.
    -There will be a basic text editor where I input all my data,
    basic text formatting options (font, bullets etc) would be a bonus.
    -A search function
    -Finally it will ideally allow multiple client apps write to
    a central database file over a network
    Can anyone suggest how I should approach such a project?
    Or are there any tutorials / source files which demonstrate
    each bullet point?
    thanks.

    Hey jono,
    I'm new too. But I think I might know the right components.
    If you google any of these + flex 3 you should get some
    decent documentation
    tree - advanced dataGrid component
    basic text editor - rich text editor component
    search function - well, you're gonna need to read up on
    arrays, and arraycollection. Once you get that stuff working, you
    can write up a function to search for a string in an array.
    network functionality - HTTPService, you can dump the
    datagrid into a database, and have it load the database when you
    open up the application.
    Give these things a shot, tutorials / sources will come with
    the google searches.

  • Need help with installing app.

    I need help installing .jar file on my Droid phone.

    Oh, man, the last time I heard of a .JAR file was on a Motorola Razr!
    That ain't goin' on a Droid....
    Unless you have some more context to share about this.....
    Geri O

  • Need help to develop app to remotely add tags to iTunes music from iPhone

    Hi
    I have recently developed a simple app that sits on my desktop and allows me to add specific tags/text to the 'comment' field of the currently playing track in my iTunes library, the text added depending on the item clicked in some drop-down menus.
    This is fine for when I am sitting at my Mac, but most of the time I would like to be able to add tags from a distance, i.e. remotely, using the iPhone, so I started to develop my first iPhone app for this purpose.
    I have succesfully designed a simple Tab Bar Application, with two views, which have all the buttons I need, but now I am stumped as to how to set up the remote part of the app. On the Desktop version I simply wrote some applescript with sections for each of the menu items. On the iPhone I am not sure how I would go about this.
    Any help with this, either with the procedure I need to follow, or pointing me in the right direction of a tutorial or some such thing, would be gratefully received.
    thanks
    nick.

    Do you mean write access to the iTunes library, rather than iPod library?
    If so, if I can accomplish my task with getting the iPhone app to interact with the Desktop app that would be fine. However, I have no idea of how to go about this. Can you give me any pointers?
    The desktop app basically consists of a few drop down menus with items that are linked to sections in the project's applescript, which tell iTunes to add specific text to the comments field.
    Thanks
    Nick

  • I need help with downloading apps?

    I got an iPad 2 today and I entered all my details in and also my bank details in, but then it's saying to me to enter 'security code' in? And I don't know what it is. I have realised that a lot of people are having this problem and it obviously needs to be sorted? Please help me?????

    Thanks for your responses but when I go on app store and then on featured, I press 'free app' and then it says 'install app' and then I click on 'use existing apple id' - so then I enter my username and password, then all my bank details ans everything else, there all correct but then it comes up with... 'your payment method was declined, please enter another payment method' - all I want is FREE apps, no paid ones? Is there anyway I could get around this? - I have noticed a lot of people are having this problem HELPPPPP lol x

  • Need help with Java app for user input 5 numbers, remove dups, etc.

    I'm new to Java (only a few weeks under my belt) and struggling with an application. The project is to write an app that inputs 5 numbers between 10 and 100, not allowing duplicates, and displaying each correct number entered, using the smallest possible array to solve the problem. Output example:
    Please enter a number: 45
    Number stored.
    45
    Please enter a number: 54
    Number stored.
    45 54
    Please enter a number: 33
    Number stored.
    45 54 33
    etc.
    I've been working on this project for days, re-read the book chapter multiple times (unfortunately, the book doesn't have this type of problem as an example to steer you in the relatively general direction) and am proud that I've gotten this far. My problems are 1) I can only get one item number to input rather than a running list of the 5 values, 2) I can't figure out how to check for duplicate numbers. Any help is appreciated.
    My code is as follows:
    import java.util.Scanner; // program uses class Scanner
    public class Array
         public static void main( String args[] )
          // create Scanner to obtain input from command window
              Scanner input = new Scanner( System.in);
          // declare variables
             int array[] = new int[ 5 ]; // declare array named array
             int inputNumbers = 0; // numbers entered
          while( inputNumbers < array.length )
              // prompt for user to input a number
                System.out.print( "Please enter a number: " );
                      int numberInput = input.nextInt();
              // validate the input
                 if (numberInput >=10 && numberInput <=100)
                       System.out.println("Number stored.");
                     else
                       System.out.println("Invalid number.  Please enter a number within range.");
              // checks to see if this number already exists
                    boolean number = false;
              // display array values
              for ( int counter = 0; counter < array.length; counter++ )
                 array[ counter ] = numberInput;
              // display array values
                 System.out.printf( "%d\n", array[ inputNumbers ] );
                   // increment number of entered numbers
                inputNumbers++;
    } // end close Array

    Yikes, there is a much better way to go about this that is probably within what you have already learned, but since you are a student and this is how you started, let's just concentrate on fixing what you got.
    First, as already noted by another poster, your formatting is really bad. Formatting is really important because it makes the code much more readable for you and anyone who comes along to help you or use your code. And I second that posters comment that brackets should always be used, especially for beginner programmers. Unfortunately beginner programmers often get stuck thinking that less lines of code equals better program, this is not true; even though better programmers often use far less lines of code.
                             // validate the input
       if (numberInput >=10 && numberInput <=100)
              System.out.println("Number stored.");
      else
                   System.out.println("Invalid number.  Please enter a number within range."); Note the above as you have it.
                         // validate the input
                         if (numberInput >=10 && numberInput <=100)
                              System.out.println("Number stored.");
                         else
                              System.out.println("Invalid number.  Please enter a number within range."); Note how much more readable just correct indentation makes.
                         // validate the input
                         if (numberInput >=10 && numberInput <=100) {
                              System.out.println("Number stored.");
                         else {
                              System.out.println("Invalid number.  Please enter a number within range.");
                         } Note how it should be coded for a beginner coder.
    Now that it is readable, exam your code and think about what you are doing here. Do you really want to print "Number Stored" before you checked to ensure it is not a dupe? That could lead to some really confused and frustrated users, and since the main user of your program will be your teacher, that could be unhealthy for your GPA.
    Since I am not here to do your homework for you, I will just give you some advice, you only need one if statement to do this correctly, you must drop the else and fix the if. I tell you this, because as a former educator i know the first thing running through beginners minds in this situation is to just make the if statement empty, but this is a big no no and even if you do trick it into working your teacher will not be fooled nor impressed and again your GPA will suffer.
    As for the rest, you do need a for loop inside your while loop, but not where or how you have it. Inside the while loop the for loop should be used for checking for dupes, not for overwriting every entry in the array as you currently have it set up to do. And certainly not for printing every element of the array each time a new element is added as your comments lead me to suspect you were trying to do, that would get real annoying really fast again resulting in abuse of your GPA. Printing the array should be in its own for loop after the while loop, or even better in its own method.
    As for how to check for dupes, well, you obviously at least somewhat understand loops and if statements, thus you have all the tools needed, so where is the problem?
    JSG

  • Need Help on My App Purchase

    Hello all,
    I purchased the 'Tarot Card Reader - Easy and Quick Method .... ' Application by SRID Games via Appwold on August 20th (order number 12156770).
    While I was in the downloading process, my connection suddenly went off hence the process failed.
    Afterwards, when I was trying to download the app once again, I found out that the app was already listed under 'uninstalled' category in MyWorld. As I clicked it to reinstall, I couldn't find the 'reinstall' button.
    Can you please help me with this case as I had already paid for the app and consulted the developer. He/she then told me to ask Blackberry App Help.
    Kind Regards,
    Reco
    PS. If you don't mind, please do answer me via email directly as I'm not that often opening the forum. Thx
    Solved!
    Go to Solution.

    Hi recognara
    Welcome to the Community
    Try it and see if your Problem Resolves :
    Open App World - Go to My World - Then While pressing and holding the ALT key, type RST.
    App World will Close.
    Then Perform a battery pull restart like this While Device is Powered On remove the Battery wait for a min. then re-insert it back wait till the device take a long Reboot.
    Again Open App World and see if Reinstall Option is there or not
    Prince
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • TS1424 Need help with netflix app over wifi on iphone 4

    I have iPhone 4 which is 3G.  I used the Netflix app on this phone. I recently got a new phone. I stopped the phone service and cell data plan to my iPhone 4. The netflix app still worked fine over wifi connection.  Suddenly, I am unable to connect to netflix.  I was going to try to remove and reinstall but I now cannot connect to iTunes store.  I found something that said I need to set up the phone to sync with wifi on iTunes, which I did.  synced again.  App still won't work and still cannot connect to iTunes store from phone.  My other iPhone 5 works fine but I need the netflix on the older iPhone 4 because of connection to tv.
    any ideas?????  I've tried signing out of netflix and back in on computer...  can't get in to Netflix app to even sign out then in.

    You can change the email address of an Apple ID without creating a new account. Apparently you didn't do this. You will need to Authorize the computer using the AppleID and password that the content was purchased with.
    Try connecting the phone, but DO NOT SYNC. Go to the iTunes File menu and choose Transfer Purchases. This should put the apps and music purchased with the old account into the iTunes library. Launch of of the songs and you should be prompted for the password to authorize that account.

  • Need help understanding Background App Refresh

    I'm trying to understand how Background App Refresh works. Whether it is on or off, whenever I switch to another app it will reload the page/app. Games start back at the home screen, webpages reload, all my typing (notes etc) disappear, it's as if I'm opening the page/app for the first time over and over. I don't keep more than a few things open at once, so I'm not a multitask hog. I assumed that with the Background App Refresh on it would keep the things open and current. Is it a RAM issue? Why do things keep reloading? Even if it's only Safari with one tab and I'm typing an email, when I go back to Safari the page reloads and I need to find what I was looking at again...
    Anyone else experience this? iPhone 6 Plus with the latest iOS.

    This is the key phrase from that page: "Some apps can continue to run in the background. You can allow these apps to refresh themselves by turning on Background App Refresh. This settings lets apps check for new content and download updates, or retrieve updated content in the background when they receive push notifications."
    Only some apps can retrieve updated data through background app refresh (BAR). *All* apps can enter multitasking and be opened quickly...but this is NOT the idea behind BAR. BAR capable apps have the additional ability to refresh their data & content if they are enabled to do so. Just because an app is in multitasking, it doesn't mean it's capable of background app refresh.
    If that doesn't clarify things, check out the following page:
    http://www.scottyloveless.com/blog/2014/background-app-refresh-explained

  • Need help with downloading apps

    Hi I'm trying to upload some apps from creative cloud and it keeps saying that it has been downloaded already but won't show up on my application folder. I installed a trial version but deleted perhaps it things that it been installed already. Any help would be amazing.
    thanks!

    Hi student-panda,
    Please run Creative Cloud Cleaner tool and then launch CC Desktop apps. it should fix the issue.
    http://www.adobe.com/support/contact/cscleanertool.html
    regards,
    Abhijit

  • I need help with an app game purchase

    I recently added 20$ to my account with 2 10$ Itunes cards. I play the app called clash of clans, in the game you can buy things with itunes, I tried to make a purchase for 19.99 when there is just about 21 $ in my itunes and it's telling me I have insufficient funds. This is odd becusee a couple days ago I did the same thing with the itunes card but now I'm getting this error. I checked my itunes again and I have the money, please help!

    What country are you in ? If you are in the US then does your state's sales tax take it over what you have on your account ?

  • I need help finding an app that can take 2 pics and make into 1

    I am looking for an app for my iphone 4 or ipad that I can take two pics from my camera roll and make them into one picture so it looks like the two people are at the same place. Any help is appreciated. I have downloaded so many and none seem to have this function. Thanks !

    There should be some great ones here:
    http://appadvice.com/appguides/show/apps-to-stitch-photos

  • Need help: iTunes deletes apps every time I sync

    I have a new 3g iPhone (8GB), and every single time I connect my phone to my computer iTunes does its usual thing by backing up what's on my phone, then promptly deletes everything. Every single time. This is so frustrating.
    I had 38 apps this last time, and I am very tired of re-downloading all the apps every time.
    I have asked this question in other places, but either get ignored or get smart *** remarks which are both unhelpful and turn me off from Apple products. So far no one has been helpful even in the least. I'm new to Apple products, my iPhone is my very first Apple anything... I admit I don't have a clue what I'm doing sometimes. So please take that into consideration.
    One other thing, when iTunes deletes all my apps, it deletes them from iTunes as well. So I have nothing to put back onto my phone. I have to go back into the Apps Store and re-download EVERYTHING. Not fun. I'm tired of this and I only just bought the phone less than 2 weeks ago. Please help. Thanks.

    I had a similar problem... then I realized that iTunes somehow lost the location of the actual app files on my computer. Try this:
    In iTunes, Open the Applications Tab (if you don't see this, check Edit> Prefrences> General> make sure you have "Applications" checked) click on one of the apps and Get Info (Ctrl+Click/Right-Click).
    If iTunes reports that "The Application Could Not Be Used... Would You Like To Locate...?" Click yes and use Finder/Explorer to locat the actual application file stored on your machine (Probabably someplace like ...iTunes/Mobile Applications) and bingo - problem solved.
    For some reason, my iTunes was looking in my Temp folder, when the actual files were stored in their normal spot. In stead of moving the files from my phone back to my computer - it would just delete them from my phone. Now that I have relocated the files for itunes, they reappeared om my phone on the next sync.
    I hope this helps you remedy your problem.

  • Need Help Finding Two Apps

    There are two apps that I'm desperate to find.
    One is an app where you hold up your iPhone to a stereo or something when you want to know what song is playing, and it tells you what song it is.
    The other is an app where you speak into the phone and it converts it into a text message and sends it out to whoever you want. Not iJott.
    Any help is appreciated. Thanks.

    Shazam and midomi are the song recognition apps.
    The second one you're thinking of is called Jott most likely. I'm not sure about the sending feature you mention, but it does convert voice to text, although takes some time to do so.

  • Need help with Camera app

    Hello RIM support,
    I am a new owner of BB Playbook.  Everything seems to be working okay except camera app.  I can take a picture with it but nothing will show up in picture app.  According to the help video, the pictures taken by camera app should show up in picture app from the menu option.
    Please help.
    Thanks
    Kevin
    Solved!
    Go to Solution.

    Yes, your pictures taken with the Playbook camera certainly should show in the Pictures folder on the Playbook.
    Just for the heck of it, can you try turning your Playbook off and back on and check your Pictures app/folder again?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • HOW TO USE KRYSALIS BARCODE AS A JAVA APPLICATION

    HI I HAVE DOWNLOADED THE KRYSALIS FREE BARCODE GENERATOR. IN SAMPLE CODES THEY HAVE USED THAT AS AN APPLET. BUT I WANT TO GENERATE THE BARCODES USING JAVA APPLICATION WHILE USING KRYSALIS LOG4J LIBRARY... SOMEONE PLEASE HELP ME OUT. THANKS PIYUSH

  • Problems importing playlists

    I am trying to share my itunes library across multiple user accounts on a Windows7 64bit machine using iTunes 10. My goal is for my kids to be able to sync their ipods through their user account. I have I have managed to share the library so that eve

  • Portal integration with BW

    Hi, I have to integrate SAP EP6.0 with BW3.5. I have created the RFC destination for J2EE Engine. While I create the RFC destination for Sap BW, I am getting the error "Error opening an RFC destination." My settings under transacation SM59 ARE AS: 1.

  • Make a jar in windows 2000 or One studio

    Hi, I am trying to make a simple jar file using ONE studio from sun but I'm not too sure how to. When I use the Jar recipe thing in ONE, I can't execute it as it sais "cannot find main-class manifest attribute" Anyone know how to do this either in ON

  • Setting a tree node noneditable

    Hallo, The nodes in my JTree can come out of three classes, I need to set 2 of them noneditable and the third one editable (changing the name/text of the node). I have no idea how to achieve this, any help please? Ralf Edited by: Ralf-Meermeier on Au