I need help in programming my storm2 on Etisalat Egypt

I am located in Egypt and I have purchased a Storm 2 verizon from a friedn who was coming from the states and it is verizon locked but is working as GSM phone (I did not pay that much for just GSM) my service provider is Etisalat Egypt.
Hope Anyone could guide me the way.
when I typed ##000000 I received the following:
Mobile Directory Number: ​011*******
IMSI_S: ​011*******
pESN (Dec): ​12815856172
pESN (Hex): ​80F1F22C
Mobile Country Code: ​602
Mobile Network Code: ​03
Home SID: ​21
Home NID: ​65535
MO Voice SO Home: 3
MO Voice SO Roam: 3
MT Voice SO Home: 3
BlackBerry Registration Id: 2004
Home System Registration: true
Foreign SID Registration: true
Foreign NID Registration: true
A-Key: 
SIP User ID: ​011*******@vzw3g.com
SIP Password: 
MIP User ID:  ​011*******@vzw3g.com
Reverse Tunneling Support: true
Home Address: ​0.0.0.0
Primary HA Address: ​255.255.255.25
Secondary HA Address: ​255.255.255.25
User Profile Index: ​
DMU MN Auth: ​0011111

theadampost wrote:
i have the same problem
i cant access the blackberry services because i can't  send sms
Hello theadampos,
SMS is a voice service that is not unique to BlackBerry. If you are not able to send or receive SMS, you should contact your mobile network carrier for assistance.
Thanks!
-HMthePirate
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

  • Need Help w/ Programming (Feeling Physically Weak...a little)

    I have not been able to compile my program since there is no compile option that I can choose at this time...& that I have not been able to download the appropiate components yet, but based on my program, I need to know if the program I have will excecute perfectly. This is based on the Split.java program & I am trying to extract words from article.txt. If there is an error in my program what needs to be typed & where is it shown within the program. Also, any symbols such as <>, -, etc. should not be included when article.txt is being redirected as an output.txt. I'm completely stumped & do not know where to go from here!
    P.S. - At this time, I am still feeling a little dizzy after donating blood, so I really need help in this program. Don't worry, I'll be physically fine in a couple of hours! :)
    - Split.java (actual program)
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.IOException;
    import java.util.StringTokenizer;
    public class Split
    public static void main(String[] args)
    throws IOException
    BufferedReader console = new BufferedReader(
    new InputStreamReader(System.in))
    boolean done = false;
    while (!done)
    String inputLine= console.readLine();
    if (inputLine == null)
    done = true;
    else
    // break input lines into words
    StringTokenizer tokenizer =
    new StringTokenizer(inputLine);
    while (tokenizer.hasMoreTokens())
    // print each word
    String word = tokenizer.nextToken();
    System.out.println(word);
    - Analyzer.java (my program)
    CS46A Homework #5: Part 2
    @author Mark P. De Guzman
    import java.io.BufferedReader;
    import java.io.FileReader;
    import java.io.IOException;
    import java.util.StringTokenizer;
    public class Analyzer
         public static void main(String[] args)
         throws IOException
              Statistician s = new Statistician();
              BufferedReader console = new BufferedReader(
                   new FileReader(System.in));
              boolean done = false;
              while (!done)
                   String inputLine = console.readLine(firstLine);
                   if (inputLine == null)
                   done = true;
                   else
                        // break input lines into words
                        StringTokenizer tokenizer =
                        new StringTokenizer(inputLine);
                        while (tokenizer.hasMoreTokens())
                             // print each word
                             Char ch = word.CharAt(i)
                             if(character.isLetter(char);
                             Stat.nextWord();
    - article.txt (document I need to extract the words from)
    The desktop publishing <industry> is today a multi-million-dollar
    business-much of it being conducted out of home offices by graphic
    designers and {writers} who embraced desktop publishing early on as a
    viable adjunct to their other skills. Although systems using Apple
    "Macintosh" technology still dominate the high-end graphics market,
    improvements in the Windows! operating environment have made
    personal computers a viable component of many DTP systems as well!

    public class Analyzer
    public static void main(String[] args)
    throws IOException
    THIS LINE IS WRONG:
    Statistician s = new Statistician();
    OBJECT NEVER USED - GET RID OF IT.
    BufferedReader console = new BufferedReader(new FileReader(System.in));
    boolean done = false;
    while (!done)
    THIS LINE IS WRONG:
    String inputLine = console.readLine(firstLine);
    firstLine IS NOT DEFINED
    BufferedReader.readLine() DOES NOT ACCEPT ARGUMENT
    if (inputLine == null)
    done = true;
    else
    // break input lines into words
    ======
    REWRITE YOUR READLINE FUNCTIONALITY LIKE THIS:
    String inputLine;
    while ((inputLine = console.readLine()) != null) {
    ======
    StringTokenizer tokenizer = new StringTokenizer(inputLine);
    while (tokenizer.hasMoreTokens()) {
    // print each word
    THIS LINE IS WRONG:
    Char ch = word.CharAt(i)
    Char SHOULD BE char
    word IS NOT DEFINED - NEED TO INCLUDE "String word = tokenizer.nextToken()"
    i IS NOT DEFINED - NEED TO CREATE A LOOP
    THE LINE DOES NOT END WITH ";"
    THIS LINE IS WRONG:
    if(character.isLetter(char);
    character SHOULD BE Character
    char IS NOT DEFINED
    MISSING ")"
    THE LINE ENDS WITH ";"
    WHAT DO YOU WANT TO DO IF IT IS A LETTER?
    THIS LINE IS WRONG:
    Stat.nextWord();
    COMPLETELY MEANINGLESS - GET RID OF IT.

  • Need help with program for Inner join

    Hello Experts,
    I need to create a list from table sbook containing booking number (sbook-bookid), customer number (sbook-customid), customer name (scustom-name) , customer class (sbook-class) and ticket price (sflight-price). I am new to ABAP and am very confused I tried reading up some examples and came up with the attached program
    Attached is my program for inner join
    Kindly Help
    Thanks Su

    Hi Su K
              You May use key fields , Foreign keys for joining , Here
    SELECT SBOOK~BOOKID SBOOK~CUSTOMID SBOOK~CLASS
      SCUSTOM~ID SCUSTOM~NAME  FROM SFILGHT
       INNER JOIN SBOOK ON   SBOOK~CARRID EQ SFILGHT~CARRID
                                              SBOOK~CONNID EQ SFILGHT~CONNID
                                              SBOOK~FLDATE EQ SFILGHT~FLDATE
      INNER JOIN SCUSTOM ON SCUSTOM~ID = SBOOK~ID

  • Rookie needs help with program!!

    Hi everyone,
    I am new to JAVA programming and am trying to figure out my first progam. Any suggestions? Here's what I have to come up with...
    This program will test your ability to code a loop function and some work with the strings methods.
    INPUT
    A SENTENCE OF UNKNOWN LENGTH.
    OUTPUT
    THE NUMBER OF WORDS IN THE SENTENCE AND EACH WORD ON A SEPARATE LINE. Two spaces are not a word; "a" is a word.
    HINT
    Use a loop until the end of the sentence and count each word that is removed from the front of the sentence (one at a time). Each time the sentence should be shortened.
    I know I need to use a string method...Here's what I have so far...
    public class jmstr
    public static void main (String[ ] args)
    System.out.println ("Please enter a sentence starting with some spaces ");
    inputline = SavitchIn.readLine ( ) ;
    System.out.println (inputline);
    I'm not really sure what to do next....?
    Any help would be appreciated!
    materman

    http://java.sun.com/j2se/1.4.2/docs/api/java/util/StringTokenizer.html
    look at the example on the page, then scroll down to the Methods section and click on
    countTokens()

  • Need Help Bad, Program Monitor Troubles

    Ive reinstalled windows 7 5 times in the last 3 days, my problem that im having is when i opening up premiere everything is find i think seems to be running fine. but when i try to color correct anything and i select any peramater in an effect im not seeing the updated in the program monitor.
    I dont know what this is doing this. its like trying to color correct and guessing. the video updates if i stop and give it a sec to load. in other version of PM ive done this with no problems. i just got this system its an i7, 16gb ram with 2gb nvidia video cards. I dont know the tearm of whats happening only thing i can think to call it is the program monitor is out of sync. im pulling my hair out over here. can someone help me please here is a video so u can see what im saying.  http://www.youtube.com/watch?v=tkN33DQNZag&feature=plcp
    please help me here ive been looking for help for 2weeks and have gotten nowhere ive been to youtube and copied people settings inside of the nvidia control pannel. i just need someone that knows what this can be.

    >2gb nvidia video cards
    Do you really have more than one nVidia card?
    Did you know that 2 cards does not always work well in PPro?
    Dual Card SLI http://forums.adobe.com/thread/872941
    -problem http://forums.adobe.com/thread/872103
    Also, More information needed for someone to help... click these links and provide the requested information
    -http://forums.adobe.com/message/4200840
    -http://forums.adobe.com/thread/416679
    -http://forums.adobe.com/thread/419406
    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037
    Report back with the codec details of your file, use the programs below... a screen shot works well to SHOW people what you are doing
    http://forums.adobe.com/thread/592070?tstart=30
    For PC http://mediainfo.sourceforge.net/en or http://www.headbands.com/gspot/
    http://blogs.adobe.com/premiereprotraining/2011/02/red-yellow-and-green-render-bars.html

  • Need help please programs to stop DDOS attacks

    hi all sorry if this is off topic but i play jedi knight jedi academy multiplayer and my server and my internet connection, or my i.p i'm not sure which or if it's both but i'm being DDOSed. is there a way to stop my connection/i.p from being attacked and making my connection so slow? is there a program i can buy or download for free that will 100 percent protect my ip/connection from DDOS attacks without a question of a doubt?. thanks

    If your IP is being obtained from people on skype because they know your Skype IP then you need to enable the following.  It will protect you as long as your contacts are not the one's doing it.  If they are, they would no longer be my contacts to protect myself and on a personal level.
    If your IP is being obtained by the games you play or you are hosting a server by IP, then there really is nothing you can do.  Even if you utilize a proxy server paid or free, it will only stop you from being knocked completely offline, but won't stop your server from going down.  Only your ISP may be able to help you and all they might be able to do is block the offending party or change your IP, but that doesn't solve the end problem.  
    The real-world solution against DDoS attacks is a combination of software, hardware or cloud, offering psuedo DDoS protection, which may be out of anyone's normal/comfortable price range.  You can do a web search for DDoS protection and you may be able to find something that will work for  you.

  • Need help with Program Please!

    // Name: John Weir 02/03/2006
    Please read the comments as they will explain what help I need.
    All help greatly appreciated! Am new to working with GUI.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class FeverDiagnosis extends JFrame
         // diagnoisis constants
         private final String MENIGITIS = "menigitis";
         private final String DIGESTIVE_TRACT_INFECTION = "digestive tract infection";
         private final String PNEUMONIA_OR_AIRWAYS_INFECTION  ="pneumonia or airways infection";
         private final String VIRAL_INFECTION = "viral infection";
         private final String THROAT_INFECTION = "throat infection";
         private final String KIDNEY_INFECTION = "kidney infection";
         private final String URINARY_INFECTION = "urinary tract infection";
         private final String SUNSTROKE_OR_HEAT_EXHAUSTION = "sunstroke or heat exhaustion";
         // symptom constants
         private final String FEVER = "fever";
         private final String COUGHING = "coughing";
         private final String HEADACHE = "headache";
         private final String BREATHING_WITH_DIFFICULTY = "shortness of breath, wheezing, or coughing up phlegm";
         private final String ACHING_BONES_JOINTS = "aching bones or joints";
         private final String RASH = "rash";
         private final String SORE_THROAT = "sore throat";
         private final String BACK_PAIN_AND_CHILLS_AND_FEVER = "back pain just above the waist with chills and fever";
         private final String URINARY_DIFFICULTY = "pain urinating or are urinating more often";
         private final String TOO_MUCH_SUN = "sun overexposure due to spending the day in the sun or in hot conditions";
         public final String VOMITING_OR_DIARRHEA = "vomitting spell or diarrhea";
         private final String MENIGITIS_POSSIBILITIES =
                          "pain when bending your head forward,\n"
                        + "    nausea or vomiting, eye ache from \n"
                        + "    bright lights, drowsiness or confusion";
         // GUI varibles
         private JTextArea textArea;
         private JFrame theFrame;
         private JLabel stuff2;
         private JButton b1;
         private JButton b2;
         // instance variable
         private String symptoms = "";
         private Scanner cin = new Scanner (System.in);
         char response;
         String input;
         public FeverDiagnosis()
              JFrame.setDefaultLookAndFeelDecorated(true);
              JFrame theFrame = new JFrame("John Weir");
              theFrame.setSize(650, 400);
              Dimension frameSize = theFrame.getSize();
              Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
              theFrame.setLocation((screenSize.width - frameSize.width)/2,(screenSize.height - frameSize.height)/2);
              theFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              Container contentPane = theFrame.getContentPane();
              theFrame.getContentPane().setLayout(new FlowLayout());
              JLabel stuff2 = new JLabel("Test");
              textArea = new JTextArea(12,50);
              textArea.setEditable(true);
              textArea.setBackground(Color.black);
              textArea.setForeground(Color.green);
              textArea.setFont(new Font("Serif", Font.ITALIC, 16));
              textArea.setLineWrap(true);
              textArea.setWrapStyleWord(true);
              b1 = new JButton("Yes");
              b2 = new JButton("No");
              contentPane.add(stuff2);
              contentPane.add(new JScrollPane(textArea));
              contentPane.add(b1);
              b1.setEnabled(true);
              contentPane.add(b2);
              b2.setEnabled(true);
              ActionListener l = new ActionListener()
                public void actionPerformed(ActionEvent e)
                   if((e.getSource() == b1))
                   //   HELP NEEDED
                   //   NEED BUTTON TO PASS
                   //   STRING VALUE "Y" TO
                   //   METHOD: have(String s)
                   input.equals("y");
                   else
                   if((e.getSource() == b2))
              b1.addActionListener(l);
              b2.addActionListener(l);
              theFrame.setVisible(true);
              theRules();
    public void theRules()
         displayNote();
         if (! have(FEVER) )
              displayUnsure();
         else
         if(are(COUGHING))
              if( are(BREATHING_WITH_DIFFICULTY))
                   addSymptom( PNEUMONIA_OR_AIRWAYS_INFECTION );
                   displayDiagnosis(PNEUMONIA_OR_AIRWAYS_INFECTION);
              }else
              if(have(HEADACHE))
                   addSymptom( VIRAL_INFECTION );
                   displayDiagnosis(VIRAL_INFECTION);
              }else
              if(have(ACHING_BONES_JOINTS))
                   addSymptom( VIRAL_INFECTION );
                   displayDiagnosis(VIRAL_INFECTION);
              }else
              if(have(RASH))
                   displayUnsure();
              }else
              if(have(SORE_THROAT))
                   addSymptom( THROAT_INFECTION );
                   displayDiagnosis(THROAT_INFECTION);
              }else
              if(have(BACK_PAIN_AND_CHILLS_AND_FEVER))
                   addSymptom( KIDNEY_INFECTION );
                   displayDiagnosis(KIDNEY_INFECTION);
              }else
              if(have(URINARY_DIFFICULTY))
                   addSymptom( URINARY_INFECTION );
                   displayDiagnosis(URINARY_INFECTION);
              }else
              if(have(TOO_MUCH_SUN))
                   addSymptom( SUNSTROKE_OR_HEAT_EXHAUSTION );
                   displayDiagnosis(SUNSTROKE_OR_HEAT_EXHAUSTION);
              }else
                   displayUnsure();
              else
              if(have(HEADACHE))
                   addSymptom(VIRAL_INFECTION);
                   displayDiagnosis(VIRAL_INFECTION);
              }else
              if(are(MENIGITIS_POSSIBILITIES))
                   addSymptom( MENIGITIS );
                   displayDiagnosis(MENIGITIS);
              }else
              if(are(VOMITING_OR_DIARRHEA))
                   addSymptom( DIGESTIVE_TRACT_INFECTION );
                   displayDiagnosis(DIGESTIVE_TRACT_INFECTION);
              }else
              displayUnsure();
         public void displayNote()
              textArea.append("\n\n"
                   + "Fever Diagnostic Tool\n"
                   + "---------------------\n\n"
                   + "Please note that this program performs no true diagnostic activity.\n"
                   + "No decisions should be made based upon the tool's analysis. If users\n"
                   + "have a fever, they should contact their doctor.\n\n");
         public boolean have(String s)
              // prompt and extract
              textArea.append("Do you have you " + s + " (y, n): " + "\n");
              // NEED BUTTON TO PASS STRING  FROM ActionPerformed
              // AND HAVE IT RETURNED AS A CHAR RESPONCE!
              input = cin.nextLine();
              response = (char) Character.toLowerCase(input.charAt(0));
              while ( (response != 'y') && (response != 'n') )
                   textArea.append("Are you " + s + " (y, n): " + "\n");
                   input = cin.nextLine();
                   response = (char) Character.toLowerCase(input.charAt(0));
              textArea.append("");
              return response == 'y';
         private boolean are(String s)
              textArea.append("Are you " + s + " (y, n): " + "\n");
              input = cin.nextLine();
              char response = (char) Character.toLowerCase(input.charAt(0));
              while ( (response != 'y') && (response != 'n') )
                   textArea.append("Are you " + s + " (y, n): " + "\n");
                   input = cin.nextLine();
                   response = (char) Character.toLowerCase(input.charAt(0));
              textArea.append("");
              return response == 'y';
         public void addSymptom(String s)
              symptoms += "*   " + s + "\n";
         public void displayDiagnosis(String diagnosis)
              textArea.setText("");
              textArea.append("\nSymptoms:\n" + symptoms + "\n" + "Diagnosis"
                   + "\n   Possibilities include " + diagnosis  + "\n");
              textArea.append("\n");
              //System.exit(0);
         public void displayUnsure()
              textArea.append("\nInsufficient information to make a diagnosis" + "\n");
              textArea.append("\n");
              //System.exit(0);
         public static void main(String[] args)
              new FeverDiagnosis();
    }

    If you're looking to use a JTextArea as a console you can use these two classes
    you are free to use and modify these classes but please do not change the package or take credit for it as your own work.
    TextAreaReader.java
    =================
    * Created on Jul 7, 2005 by @author Tom Jacobs
    package tjacobs;
    import java.awt.TextArea;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import java.awt.event.TextEvent;
    import java.awt.event.TextListener;
    import java.io.BufferedInputStream;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.Reader;
    import javax.swing.JFrame;
    import javax.swing.JTextArea;
    public class TextAreaReader extends Reader implements KeyListener {
         JTextArea mJArea;
         TextArea mAWTArea;
         Object mKeyLock = new Object();
         Object mLineLock = new Object();
         String mLastLine;
         int mLastKeyCode = 1;
         public TextAreaReader(JTextArea area) {
              super();
              mJArea = area;
              mJArea.addKeyListener(this);
         public TextAreaReader(TextArea area) {
              super();
              mAWTArea = area;
              mAWTArea.addKeyListener(this);
         public void keyPressed(KeyEvent ke) {
              mLastKeyCode = ke.getKeyCode();
              synchronized(mKeyLock) {
                   mKeyLock.notifyAll();
              if (ke.getKeyCode() == KeyEvent.VK_ENTER) {
                   if (mJArea != null) {
                        String txt = mJArea.getText();
                        int idx = txt.lastIndexOf('\n', mJArea.getCaretPosition() - 1);
                        mLastLine = txt.substring(idx != -1 ? idx : 0, mJArea.getCaretPosition());//txt.length());
                        synchronized(mLineLock) {
                             mLineLock.notifyAll();
                   else {
                        String txt = mAWTArea.getText();
                        int idx = txt.lastIndexOf('\n', mAWTArea.getCaretPosition() - 1);
                        mLastLine = txt.substring(idx != -1 ? idx : 0, mAWTArea.getCaretPosition());//txt.length());
                        synchronized(mLineLock) {
                             mLineLock.notifyAll();
         public void keyReleased(KeyEvent ke) {
         public void keyTyped(KeyEvent ke) {
         public int read(char[] arg0, int arg1, int arg2) throws IOException {
              throw new IOException("Not supported");
         public String readLine() {
              synchronized(mLineLock) {
                   try {
                        mLineLock.wait();
                   catch (InterruptedException ex) {
              return mLastLine;
         public int read() {
              synchronized(mKeyLock) {
                   try {
                        mKeyLock.wait();
                   catch (InterruptedException ex) {
              return mLastKeyCode;
         public void close() throws IOException {
              // TODO Auto-generated method stub
         public static void main(String args[]) {
              JFrame f = new JFrame("TextAreaInput Test");
              JTextArea area = new JTextArea();
              final TextAreaReader tar = new TextAreaReader(area);
              f.add(area);
              Runnable r1 = new Runnable() {
                   public void run() {
                        while (true) {
                             int code = tar.read();
                             System.out.println("read: " + code);
              Runnable r2 = new Runnable() {
                   public void run() {
                        while (true) {
                             String line = tar.readLine();
                             System.out.println("read line: " + line);
              Thread t1 = new Thread(r1);
              Thread t2 = new Thread(r2);
              t1.start();
              t2.start();
              f.setBounds(100, 100, 200, 200);
              f.setVisible(true);
         public InputStream toInputStream() {
              return new MyInputStream();
         private class MyInputStream extends InputStream {
              public int read() {
                   return TextAreaReader.this.read();
    ==================
    TextAreaOutputStream
    ==================
    * Created on Mar 13, 2005 by @author Tom Jacobs
    package tjacobs;
    import java.io.IOException;
    import java.io.OutputStream;
    import javax.swing.JTextArea;
    import javax.swing.text.JTextComponent;
    public class TextAreaOutputStream extends OutputStream {
         public static final int DEFAULT_BUFFER_SIZE = 1;
         JTextArea mText;
         byte mBuf[];
         int mLocation;
         public TextAreaOutputStream(JTextArea component) {
              this(component, DEFAULT_BUFFER_SIZE);
         public TextAreaOutputStream(JTextArea component, int bufferSize) {
              mText = component;
              if (bufferSize < 1) bufferSize = 1;
              mBuf = new byte[bufferSize];
              mLocation = 0;
         @Override
         public void write(int arg0) throws IOException {
              //System.err.println("arg = "  + (char) arg0);
              mBuf[mLocation++] = (byte)arg0;
              if (mLocation == mBuf.length) {
                   flush();
         public void flush() {
              mText.append(new String(mBuf, 0, mLocation));
              mLocation = 0;
              try {
                   Thread.sleep(1);
              catch (Exception ex) {}
    }

  • I need help with programs from my MacBookAir.

    Hello. I've intalled programs on my MacbookAit that I don't need anymore and I have no idea how to remove them from my laptop. I've been a PC user and I knew there how to remove them but here I just don't know. I know that dragging them to the trash won't work. I want to remove them and free the space that is taking. I hope you guys can help me with this. Thank you Very Much!!!

    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash.  Applications may create preference files that are stored in the /Home/Library/Preferences/ folder.  Although they do nothing once you delete the associated application, they do take up some disk space.  If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application.  In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder.  You can also check there to see if the application has created a folder.  You can also delete the folder that's in the Applications Support folder.  Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item.  Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder.  Log In Items are set in the Accounts preferences.  Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab.  Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS.  Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term.  Unfortunately Spotlight will not look in certain folders by default.  You can modify Spotlight's behavior or use a third-party search utility, Easy Find, instead.  Download Easy Find at VersionTracker or MacUpdate.
    Some applications install a receipt in the /Library/Receipts/ folder.  Usually with the same name as the program or the developer.  The item generally has a ".pkg" extension.  Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications.  Here is a selection:
    AppZapper 2.0.1
    AppDelete 3.2.6
    Automaton 1.50
    Hazel
    AppCleaner 2.1.0
    CleanApp
    iTrash 1.8.2
    Amnesia
    Uninstaller 1.15.1
    Spring Cleaning 11.0.1
    Look for them at VersionTracker or MacUpdate.
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • Still needing help downloading program and using the redemption code given to me on the card I purchased at Home Depot two days ago.

    Still need ing help downloading and installing program from card I purchased at Home Depot two days ago.

    It isn't a good idea to start a second thread on the same topic. You have had responses under the first post. I suggest you go there and continue this discussion.

  • Beginner needs help with programming assignment

    So I have been working on it and it is reading everything and posting everything to the output file, but it looks like this
    MonthlyRainfall(cm)
    Average: 3.66
    January 7.29, above averageApril3.55, below averageNovember0.15, below average
    When instead it should look like this. Don't know what I need to do to get it to work like this. If I have to much regarding the IF Else statements or I just don't have it laid out right. Any help is appreciated. Thanks.
    Monthly Rainfall (cm)
    Average: 3.66
    January 7.29, above average
    April 3.55, below average
    November 0.15, below average
    Here is the code I have so far:
    package assign4;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.PrintWriter;
    import java.util.Scanner;
    import javax.swing.JOptionPane;
    public class Rainfall2 {/** main method
    * This is where the program starts.
    * @param args
    public static void main(String[] args) throws FileNotFoundException {
    * Title: Assignment 4
    * Description: CS 161 Assignment #4
    * date: October 27th 2008
    final String fileName = "src/assign4/rain2.txt";
    Scanner myFile = new Scanner( new FileReader( fileName ) );
    PrintWriter outFile = new
    PrintWriter ("src/assign4/rainfalloutput.out");
    //declares variables
    String title;
    String subtitle;
    String units;
    String date;
    int month1, month2, month3;
    double rain1, rain2, rain3;
    double average;
    * Read 6 lines from the input file
    title = myFile.next();
    subtitle = myFile.next();
    units = myFile.next();
    month1 = myFile.nextInt();
    rain1 = myFile.nextDouble();
    month2 = myFile.nextInt();
    rain2 = myFile.nextDouble();
    month3 = myFile.nextInt();
    rain3 = myFile.nextDouble();
    myFile.close(); //close the input file
    average = (rain1 + rain2 + rain3) / 3.0; //computes the average rainfall from data points
    outFile.println( title + subtitle + units);
    outFile.printf ("Average: %5.2f %n", average);
    if (month1 == 1)
    outFile.print ("January ");
    else if (month1 == 2)
    outFile.print ("February");
    else if (month1 == 3)
    outFile.print ("March");
    else if (month1 == 4)
    outFile.print ("April");
    else if (month1 == 5)
    outFile.print ("May");
    else if (month1 == 6)
    outFile.print ("June");
    else if (month1 == 7)
    outFile.print ("July");
    else if (month1 == 8)
    outFile.print ("August");
    else if (month1 == 9)
    outFile.print ("September ");
    else if (month1 == 10)
    outFile.print ("October");
    else if (month1 == 11)
    outFile.print ("November");
    else if (month1 == 12)
    outFile.print ("December");
    if (rain1 > average)
    outFile.print ( rain1 + ", above average");
    else
    if (rain1 == average)
    outFile.print ( rain1 + ", average");
    else
    if (rain1 < average)
    outFile.print ( rain1 + ", below average");
    if (month2 == 1)
    outFile.printf ("January");
    else if (month2 == 2)
    outFile.printf ("February");
    else if (month2 == 3)
    outFile.printf ("March");
    else if (month2 == 4)
    outFile.printf ("April");
    else if (month2 == 5)
    outFile.printf ("May");
    else if (month2 == 6)
    outFile.printf ("June");
    else if (month2 == 7)
    outFile.printf ("July");
    else if (month2 == 8)
    outFile.printf ("August");
    else if (month2 == 9)
    outFile.printf ("September");
    else if (month2 == 10)
    outFile.printf ("October");
    else if (month2 == 11)
    outFile.printf ("November");
    else if (month2 == 12)
    outFile.printf ("December");
    if (rain2 > average)
    outFile.printf ( rain2 + ", above average");
    else
    if (rain2 == average)
    outFile.printf ( rain2 + ", average");
    else
    if (rain2 < average)
    outFile.printf ( rain2 + ", below average");
    if (month3 == 1)
    outFile.printf ("January");
    else if (month3 == 2)
    outFile.printf ("February");
    else if (month3 == 3)
    outFile.printf ("March");
    else if (month3 == 4)
    outFile.printf ("April");
    else if (month3 == 5)
    outFile.printf ("May");
    else if (month3 == 6)
    outFile.printf ("June");
    else if (month3 == 7)
    outFile.printf ("July");
    else if (month3 == 8)
    outFile.printf ("August");
    else if (month3 == 9)
    outFile.printf ("September");
    else if (month3 == 10)
    outFile.printf ("October");
    else if (month3 == 11)
    outFile.printf ("November");
    else if (month3 == 12)
    outFile.printf ("December");
    if (rain3 > average)
    outFile.printf ( rain3 + ", above average");
    else
    if (rain3 == average)
    outFile.printf ( rain3 + ", average");
    else
    if (rain3 < average)
    outFile.printf ( rain3 + ", below average");
    outFile.close();
    }

    The printf method does not inlcude a LF/CR. You will have to add it yourself.
    In future when you post code, highlight it and click the CODE button to retain formatting.

  • I need help removing programs please im new to mac

    how do i go about removing programs permantly i have a ibook g3 clamshell osx 10.3 i downloaded windows media player for osx and it dont work and i have no idea how i uninstall that or any other application or files can someone please help. im new to this i never had a mac before.thanks alot i appreciate it

    lyle6068, welcome to Apple Discussions & the Mac community.
    Generally you can drag the app to the Trash. You can also use the freeware AppDelete @ http://reggie.ashworth.googlepages.com/appdelete
    Suggest you buy the book by David Pogue - Mac OS X The Missing Manual Panther Edition.
    Includes everything you need to know about installing OS X, using OS X & maintaining OS X.
     Cheers, Tom

  • Need Help Recording Programs from my DVR to my VCR

    Can someone please tell to reocrd a program from DVR to my VCR without getting  all snow
    Here is my set up 
    TV- Sony
    VCR/DVD- Sony  SLV-D300P
    DVR- QIP7200

    How many threads do you need for the same question?  This was asked HERE and answered, but you seem incapable of taking the instructions given successfully.
    Yellow from DVR Video Out to VCR Video In
    White from DVR Audio Left Out to VCR Audio Left In
    Red from DVR Audio Out  Right to VCR Audio Right In
    The inset color of the RCA jacks (color inside the silver ring) matches the cables.
    Set VCR to LINE INPUT, play the DVR recording and record on the VCR.  If that is too difficult then get Geek Squad or someone who understands how to connect components.  The connections are also shown in the DVR manual.
    I have been using this exact set of connections for 2 years and it works fine.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.

  • Need Help writing program

    very new to java, i conceptually know what i want to do, but it is hard to apply that to writing the program. this is very introductory so i'd appreciate all and any help.
    i am trying to write a program such that if I select an integer, n, as in input, the program can convert that integer into it's binary representation. for example, if the integer is 4, then the program would output 001 as the binary representation of 4.
    that is the first part, the second part is to have the binary representation go from most significan bit to least significant bit, so for the integer 4 it will come out as 100 (or 000100 or 00100).
    ok basically i know i want the program to divide the chosen integer by 2 and take the remainder (n%2), which will be 1 or 0. i then want the program to take the value (n/2) and have that be the new n value, then repeat the steps over and over till my n just becomes 0. i am trying to do this with a while loop, but if there is an easier way to do this, please let me know. so far wha ti have is below, kinda stuck on how to write this program, please help. the output just keeps giving me 0 and doesn't end.
    import java.util.*;
    class Q3a{
    static Scanner console = new Scanner (System.in);
         public static void main(String args[]){
              int n;
              n = console.nextInt();
              System.out.print("Choose an integer value :");
              while (true) {
              System.out.println("Remainder on dividing " + n + " by 2 is " + n%2);
              n = n/2;}
              System.out.println("New value of n is n/2 which is " + n);
              System.out.println("Remainder on dividing " + n + " by 2 is " + n%2);
              n = n/2;
              System.out.println("New value of n is n/2 which is " + n);
              System.out.println("Remainder on dividing " + n + " by 2 is " + n%2);
              n = n/2;
              System.out.println("New value of n is n/2 which is " + n);Message was edited by:
    kribraider414

    consider
    while (n != 0){
      System.out.println(n%2);
      n = n/2;
    }put the reverse of the stoping condition in the parens for the loop
    This loop will run while n is NOT zero. It wil stop when n is zero. Try it for a few numbers and see what it does.
    Pay particular attention to what it does if the number you supplied is zero (which is the one binary number that does not have a single one in it.)
    Also take a look at what it does for negative numbers and decide what you want to do in that case.

  • Need help terminating program

    Hi, I'm just about satisfied with a rough draft of my program, but I've found now it will enter into an infinite loop.  This is what I want the program to do:
    1. enter money
    2. press a button for selection
    3. calculate change
    4. reflect calculated change at the input
    5. terminate program
    I've got 1-3 to work, but when I reflect the change at the original input this is where it enters a crazy loop.  Is there an easy way to terminate from a case structure?  When I tried doing this, as you can see in my code, it terminates the program but it doesn't calculate change at all.  I'd like it go in sequential order, then terminate.  Sorry if my code is messy too, it's rough draft so far.  I'm using verison 8.2
     **edit: this version I've put the stop commands on each case structure that calculates change, and the program just terminates.  Without these added it enters the crazy loop.
    Message Edited by JJJOndae on 05-17-2010 10:58 AM
    Attachments:
    Untitled 3 (reflect change input).vi ‏71 KB

    Piece of donut? Not a fan of cake huh? 
    A
    few pointers for the OP:
    - Try to avoid the 'Stop' function, it doesnt do exactly what you think
    it does. It will literally halt your program, instead of stopping just
    the current loop. This is not generally a good idea, because usually
    after a loop there are some loose ends (punn intended) that should be
    cleaned up.
    - You have too many local variables. This will cause
    race conditions in your code if you are not careful.
    - As Jim said, you should think about re-writing the code using a state-machine architecture. This will help avoid your a lot of your boolean acrobatics Feel free to ask questions if you are unsure how to set up a state-machine.
    Edit: tbob pretty much beat me to the punch on this one haha
    Message Edited by Cory K on 05-17-2010 01:34 PM
    Cory K

  • Need help with Programming.

    Input:
    Write a Java inventory application program that will accept the following input values from the user:
    a.     An inventory item number consisting of two upper-case letters followed by three numbers (eg. AB123)
    b.     An inventory item description.
    c.     An inventory unit price (2 decimals).
    d.     An item quantity-on-hand (no decimals).
    Use the TextIO.class to accept the values from the user.
    Processing:
    The input must be validated as follows:
    Item number - must be not more than 6 characters in length. Then, of those six characters, the first two must be letters only, followed by a dash (-) and then three numbers. Eg. AB-456.
    Inventory item description � must contain a value and be less than or equal to 20 characters in length.
    Unit price � between 0 and 5,000.00 inclusive.
    Quantity-on-hand � between 0 and 500 inclusive.
    The letters of the item number must be converted to upper-case for display purposes.
    Count the number of inventory transactions entered.
    Accumulate the calculated inventory cost of each item.
    Your program will contain six error messages as follows:
    **ERROR01** - Item number must be five characters
    **ERROR02** - Item number must start with 2 letters
    **ERROR03** - Item number must be numeric in last 3 positions
    **ERROR04** - Item description is required and must be max 20 chars
    **ERROR05** - Unit price must be between 0 and 5,000.00
    **ERROR06** - Quantity on hand must be between 0 and 500
    Note: there is no �persistent� storage of the data in this program. In other words, once the new data has been entered, the program �forgets� the old data. We will learn how to keep the data in memory in a later assignment.
    Output:
    After each transaction is entered, display the results to the user (as in the previous assignment). Prompt the user for additional inventory transactions after the information is displayed.
    If there are no more transactions to enter, display the number of inventory transactions entered during the session as well as the total cost of the inventory items processed. Your output must match that shown in the example screen shots shown on the next page.
    Please E-mail me back the answer.

    I would suggest,
    - Make a serious attempt yourself. We may be will to help you learn but we are not going to help someone cheat in your assignments.
    - After making a serious attempt ask a specific question on "New To Java" as this forum is for beginners. Be ready to provide the code as an example of your problem. Make sure the code at least compiles or you will not be taken seriously. (Unless this is your problem)

Maybe you are looking for

  • My Macbook Pro keeps freezing up every 5 minutes

    I got my MacBook Pro new in late July and I have never had any sort of trouble with it. Since yesterday, my MacBook has been freezing up. At first it happened every once in awhile and then I started to notice it happened every ten minutes, like clock

  • I cannot install iTunes on Windows 7 I receive the Error 7 (Windows Error 193).

    I cannot install iTunes on Windows 7 I receive the Error 7 (Windows Error 193).  I have uninstalled and reinstalled a few times but with no luck.  Does anyone have another option?

  • How can I play files that are possibly corrupt (play fine in other apps)?

    I have these three mp3 files that I am trying to add to itunes so that I can add them to my ipod. They play fine on winamp and I've listened to the entire song on each track without any problems. Itunes will not let me add them to the library though.

  • How do I open Microsoft Word documents?

    When i double-click. Word documents there is an unspecified error in opening the documents on myniPad 1.  any suggestions?

  • IDOC: HRSM_D01

    I maked migration from non SAP system to the SAP R3 via XI (IDOC HRMD_A07).Export file from non SAP system in .csv file. Now I need store Attendences/Absences data into IT2001 (IDOC HRSM_D01), but I dont know structure of the IDOC and I need to fill