* pseudocode help if possible!!

Hi.
I could really use your help on this.
TY!
http://i13.photobucket.com/albums/a267/spauldingchris/File0001.jpg

I don't even know why they offer Java courses at colleges. Students see it and think it will be like other classes (something that they have a chance in hell of understanding let alone passing).
I think Java 101 is the "flunk course" for computer science majors.
Like calculus is for business majors.
That way they know everyone will not pass and it will lend credability (in theory) to the degree.

Similar Messages

  • Pseudocode help

    PSEUDOCODE... i got the following pseudocode:
    This is what iv got done but its not looking correct:
    apart from the indentations could someone help me edit it appropriately?
    RoomTest
    driver CLASS
    double roomStore
    Set valid to false
    WHILE (not valid)
    TRY
    New DecimalFormat(“0.00”)
    CREATE rectangle1
    Prompt operator for roomW
    Parse roomW to roomStore
    rectangle1.setWidth(roomStore)
    Prompt operator for roomL
    Parse roomL to roomStore
    rectangle1.setLength(roomStore)
    CREATE rectangle2
    Prompt operator for roomW
    Parse roomW to roomStore
    rectangle1.setWidth(roomStore)
    Prompt operator for roomL
    Parse roomL to roomStore
    rectangle1.setLength(roomStore)
    Print “Room Area Calculator Program”
    Print “****************************”
    Print rectangle1 width
    Print rectangle1 length
    Print rectangle2 width
    Print rectangle2 length
    Print “Room1”
    Print rectangle1 width, length, area
    Print “Room2”
    Print rectangle2 width, length, area
    Print "************End of program************"
    Valid = true
    CATCH (NumberFormatException)
                   Display error message
              END
    END
    END
    Room
    PRIVATE variables width and length
    Set width to 0
    Set length to 0
    VOID setMethod
    Set width to objectWidth
    END METHOD
    VOID setMethod
    Set length to objectLength
    END METHOD
    DOUBLE getMethod
    RETURN width
    END METHOD
    DOUBLE getMethod
    RETURN length
    END METHOD
    DOUBLE findAreaMethod
    Set roomArea to 0
    roomArea = width * length
    return roomArea
    END METHOD
    END
    Could someone is possible maybe edit it appropriately please?
    Thanks

    Why not continue in this thread:
    http://forum.java.sun.com/thread.jspa?threadID=5120469
    I asked you a question there.

  • Help if possible for smart editor

    Hello java gurus,
    Presently Iam building my own editor for a new language.I want to make this an efficient editor.
    By an efficient editor i mean that when a very big file is opened into it, the whole file should not be there in the memory.I want only a part of it which is presently shown in the editor to be in memory.
    I want to make a secondary storage based editor.
    For that iam trying with java.nio 's memory mapped buffer.But i ve problems when mapping it with the scrollpane.
    Hope u could understand the problem.
    Please help me as soon as possible.
    Thanks.

    Crosspost!
    http://forum.java.sun.com/thread.jsp?thread=562559&forum=57
    http://forum.java.sun.com/thread.jsp?thread=562875&forum=57

  • Need Quick Help if Possible

    I have two big questions that I need urgent help with.
    1. Can you reference a background image in flash that will
    change montly?
    2. Can you reference Microsoft Reporting Services to publish
    reports through a flash interface in SharePoint?
    I know these are crazy questions, but I am working with a
    client and need to know whether this is possible ASAP as I have to
    get it completed by COB tomorrow if it is possible.
    Thanks so much!

    Remove all the videos that won't play from your iPod. Go to the Store menu in iTunes, Deauthorize your computer, play one of the videos in question and when prompted enter your Apple ID and password. Resync the videos.

  • Urgent ..please help asa possible

    hey SDNs,
    is it possible to   color to DATA Display without using exception value.
    i have a data display and want to change the color of  two perticular columns so that they will become easy to read.
    any help in this respect will be rewarded ..
    Thx And Regards.
    Anoop Gupta

    Hai Anoop,
    Open your WAD and on the left side you have the Web items and Properties new template.
    In properties new template you have General Tab and Webitem Tab.
    under general tab you can see the stylesheet.
    click on the button which is right to the stylesheet where you can see plenty of stylesheets with different options.
    Let me know if you dont find it.
    let me know which version you are using.
    Regards,
    Rama

  • Help on (Possibly) false sharing on Multithreaded Java Programs

    I encountered performance degrade going from 1 thread to 2 thread for embarrassing parallel programs.
    Each thread heavily accesses (read/write) some object fields, but one object is not accessed by both threads.
    However, because the hotspot JVM does not necessarily align the object according to cache line, it is possible to
    have two objects share the same cache line. For example, o1 and o2 are two objects of class Foo:
    class Foo {
    Object A;
    Object B;
    Foo o1 = new Foo();
    Foo o2 = new Foo();
    The JVM may layout part of o1 (o1.B) and part of o2 (o2.A) in the same cache line ( --cach line  2 as shown below).
    1111AAAA11111111111111111 -- cache line 1
    1111BBBB11112222AAAA2222 -- cache line 2
    22222222222222222BBBB2222 -- cache line 3
    1: o1 2: o2
    This cause a significant performance degradation due to false sharing between o1.A and o2.B.
    Due to the indeterministic nature of the layout, I am not hit by the impact of false sharing for every run.
    For some runs, I get 2x speedup as where were no false sharing. But occasionally, I get very bad performance.
    The penalty of false sharing can be reduce by binding the two threads to cores that share the same L2 cache.
    But this is not an acceptable solution because I want scalability beyond 2 threads and want to remove the
    false sharing at all.
    Traditional solution to avoid false sharing is either to align each object at the cache line boundary, or to pad the object
    to have extra space at the beginning and the rear of each object.
    I don't know how to do the alignment on the HotSpot JVM, if it is not impossible at all. Does anyone know to do achieve this?
    For padding, I don't know the exact correct way to do this: I want to ensure that the padding fields inserted are
    at the VERY beginning and the VERY rear of the object memory layout, instead of in the middle. I know JVM is free to
    reorder the fields. Does anyone know how to pad a object correctly?
    It would also be very helpful if anyone have any other opinions to avoid this kind of false sharing or whatever reason the bad performance might be.
    Thanks,
    Edited by: Grant@FDU on May 5, 2009 9:14 PM
    Edited by: Grant@FDU on May 5, 2009 9:15 PM
    Edited by: Grant@FDU on May 5, 2009 9:16 PM
    Edited by: Grant@FDU on May 5, 2009 9:17 PM
    Edited by: Grant@FDU on May 5, 2009 9:17 PM

    You cannot guarantee that two objects will be consecutive in memory or that they will stay consecutive (as the object can be moved around to compact memory usage)
    This sort of optimisation could be very premature. You are likely to find other factors are much more important. I suggest you write a realistic program and use a profiler to see where time is being consumed.

  • Help if possible

    I am VERY VERY VERY new to Java Programming and I am trying to make a program in which I encrypt a 4-digit integer. I am supposed to have the user enter the four digit integer, and then change each digit to (the sum of the integer and 7) Mod 10. Then replace the first number with the third and the second with the fourth. I just can't figure out how to get each number to work on individually.
    If it helps in "Java: How to Program Third edition" it is problem 4.31. I don't want the whole code because this is for a class and I don't want to cheat, I just want a little push in the right direction. Thanks to anyone who can help me.

    Hi,
    "number /= 10" is the same as "number = number/10". I assume you know what the / operator does, but remember that if you use / on two ints, it returns an int,
    i.e. 19/10 = 1, and 19/10 != 1.9
    Because of this, "third = number%10" will assign a different value to third than the value in fourth: fourth contains number's last digit, third contains number's 2nd last digit.
    "reset number" is pseudocode, i.e. code intended to convey to humans what needs to be done, without actually writing all the messy code that the computer needs. The compiler would not understand it. I think what Svetlana meant was that the variable 'number' no longer holds your original number, but you may want your program to remember the unencrypted value, in which case you could reset 'number' to hold the original value when you've finished. But this isn't an essential part of the program, it depends on what you want.

  • HELP! possible to load images into a component?

    wanna load a help file that has pictures in it and display using a dialog. what component shld i use? the dialog shld have a vertical scroll pane n the user shld be able to read the info from the file. the pictures will be inserted at random in the file(cos its a help file, need pics for illustrations). how shld i go abt doing this?

    that's the answer i'm afraid of getting. I want to LOAD FROM A FILE(the help file, say a word doc) the contents for display in the dialog, i that possible? i know abt jlabels etc but its gona be another big chunk in my source code and it wont be effective when the help file needs changes->will have to find the method n change the contents manually, really not effective...

  • Title bar with help button possible? (like in windows)

    is that possible with java?

    I don't have 1 of them :/ or is this a ghay XP thing?no, it is'nt. just have a look on some dialogs in word!
    1% of users need help 1% of the time, so the other 99%
    of users have to suffer the annoyance of having the
    option there 100% of the time >:[that's what i should tell this my boss 8-))
    anyway, thanks,
    micha

  • Can you take a look at my code.. help if possible..

    hi,
    i need help on my address book.. im trying to make an addressbook gui..
    it should:
    - save the info inputed by the user from a textbox to a .txt file
    - display the names of saved persons from the txt file to the jlist, so even if i close the program and run it again, it should display the names of the persons saved so far
    - display the info when you click on the person on the jlist via the given textboxes
    - a working scrollbar
    here is my code, there could be lines that does nothing, probably caused by me trying stuffs and forgot to remove them:
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.JList;
    import java.awt.event.ActionListener;
    import java.io.*;
    import javax.swing.event.*;
    import java.io.FilterInputStream;
    public class AddressList extends JPanel implements ActionListener
         JTextField txt1 = new JTextField();
         JTextField txt2 = new JTextField();
         JTextField txt3 = new JTextField();
         DefaultListModel mdl = new DefaultListModel();
         JList list = new JList();
         JScrollPane listScroller = new JScrollPane(list);
         ListSelectionModel listSelectionModel;
         File fob = new File("Address3.txt");
         String name;
         char[] chars;     
         public void ListDisplay() //*this one should display the saved names whenever i run the gui, doesnt seem to work
              try
                   RandomAccessFile rand = new RandomAccessFile(fob,"rw");
                   BufferedReader br = new BufferedReader(new FileReader("Address3.txt"));
                   if(fob.exists())
                         while((name = rand.readLine()) != null)
                              chars = name.toCharArray();
                              if(chars[0] == '*')
                                   mdl.addElement(name);
                                   list.setModel(mdl);
                              if(chars[0] == '#')
                                   continue;
                    else
                        System.out.println("No such file..");
              catch(IOException a)
                         System.out.println(a.getMessage());
         public AddressList()
              this.setLayout(null);
              listSelectionModel = list.getSelectionModel();
            listSelectionModel.addListSelectionListener(new ListInfo());
              list.setBounds(10,40,330,270);
              listScroller.setBounds(320,40,20,100);
              add(list);
              add(listScroller);
              JLabel lbl4 = new JLabel("Name: ");
              lbl4.setBounds(400,10,80,30);
              add(lbl4);
              JLabel lbl5 = new JLabel("Cellphone #: ");
              lbl5.setBounds(400,50,80,30);
              add(lbl5);
              JLabel lbl6 = new JLabel("Address: ");
              lbl6.setBounds(400,90,80,30);
              add(lbl6);
              JLabel lbl7 = new JLabel("List ");
              lbl7.setBounds(10,10,100,30);
              add(lbl7);
              txt1.setBounds(480,10,200,30);
              add(txt1);
              txt2.setBounds(480,50,200,30);
              add(txt2);
              txt3.setBounds(480,90,200,30);
              add(txt3);
              JButton btn1 = new JButton("Add");
              btn1.setBounds(480,130,100,30);
              btn1.addActionListener(this);
              btn1.setActionCommand("Add");
              add(btn1);
              JButton btn2 = new JButton("Save");
              btn2.setBounds(480,170,100,30);
              btn2.addActionListener(this);
              btn2.setActionCommand("Save");
              add(btn2);
              JButton btn3 = new JButton("Cancel");
              btn3.setBounds(480,210,100,30);
              btn3.addActionListener(this);
              btn3.setActionCommand("Cancel");
              add(btn3);
              JButton btn4 = new JButton("Close");
              btn4.setBounds(480,250,100,30);
              btn4.addActionListener(this);
              btn4.setActionCommand("Close");
              add(btn4);
         public static void main(String[]args)
              JFrame frm = new JFrame("Address List");
              AddressList panel = new AddressList();
              frm.getContentPane().add(panel,"Center");
              frm.setSize(700,350);
              frm.setVisible(true);
         public void actionPerformed(ActionEvent e)
              String cmd;
              cmd = e.getActionCommand();
              if(cmd.equals("Add"))
                   txt1.setText("");
                   txt2.setText("");
                   txt3.setText("");
              else if(cmd.equals("Save"))
                   mdl.addElement(txt1.getText());
                   list.setModel(mdl);
                   try
                   RandomAccessFile rand = new RandomAccessFile(fob,"rw");
                   BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
                   LineNumberReader line = new LineNumberReader(br);
                    if(fob.exists())
                              rand.seek(fob.length());
                              rand.writeBytes("* " + txt1.getText());
                              rand.writeBytes("\r\n" + "# " + txt2.getText());
                              rand.writeBytes("\r\n" + "# " + txt3.getText() + "\r\n");
                    else
                         System.out.println("No such file..");
                        txt1.setText("");
                        txt2.setText("");
                        txt3.setText("");
                    catch(IOException a)
                         System.out.println(a.getMessage());
              else if(cmd.equals("Cancel"))
                   txt1.setText("");
                   txt2.setText("");
                   txt3.setText("");
              else if(cmd.equals("Close"))
                   System.exit(0);
    class ListInfo implements ListSelectionListener
         public void valueChanged(ListSelectionEvent e)
              ListSelectionModel lsm = (ListSelectionModel)e.getSource();
              int minIndex = lsm.getMinSelectionIndex();
            int maxIndex = lsm.getMaxSelectionIndex();
              try //*this one should display the info of the person whenever i click the person's name at the list box via textbox.. but i cant seem to get it right since it always display the info of the first person inputed.. i tried to get the program to display them whenever it reads lines with * on them....
                   File fob = new File("Address3.txt");
                   RandomAccessFile rand = new RandomAccessFile(fob,"rw");
                   BufferedReader br = new BufferedReader(new FileReader("Address3.txt"));
                   LineNumberReader line = new LineNumberReader(br);
                   if(fob.exists())
                              for(int i = minIndex; i<=maxIndex; i++)
                                   if(lsm.isSelectedIndex(i))
                                        while((name = rand.readLine()) != null)
                                             chars = name.toCharArray();
                                             if(chars[0] == '#')
                                                  continue;
                                             if(chars[0] == '*')
                                                  txt1.setText(rand.readLine());
                                                 txt2.setText(rand.readLine());
                                                 txt3.setText(rand.readLine());
                    else
                              System.out.println("No such file..");
              catch(IOException a)
                         System.out.println(a.getMessage());
    }thanks in advance if you can help me..

    well..
    almost everything works.. the only problems i have are:
    1)a working scrollbar - i dont know how to make it work, something about the setBounds or wrong method
    2)displays the saved names on the jlist whenever i run the program - something wrong with this one, i couldnt get to display
    their names on the jlist. i tried to make it read the whole file and read the lines with * on them (marks the name inputs)
    3)displays the saved info about the person whenever i click its name on the jlist via txtbox - ive tried making it read the following lines
    from the lines with * ( dunno if its the right thing ) or maybe a loop. anything that can fix it.

  • HELP!  possibly lost file twice because of same error... (CS4)

    hello.
    i have created a poster with embedded smart objects and multiple layers that is fairly complex in photoshop CS4.  I have made this poster twice and each time has taken a day to create the thing. i embedded a smart object that is a floor in the image and using a texture that the client provided.  i had to do it this way because they have not made up their mind about which floor texture they want to use for the poster, and by doing so it would be easier to change the texture if they do change their mind with a smart object.  so, i created a fairly large embedded smart object 'floor' that i had to apply a 'perspective' transform to that layer.  when i did this, the smart object handles go about 4-5 times wider than the actual dimensions of the poster width, which is normal when you apply a perspective transform to an object.  everything worked and looked fine...and i saved everything locally in one folder, including the imported psd 'floor' smart object. 
    i have had this major error two times.  i did the exact same process both times i have created this thing and i have gotten the identical error message each time i tried to re-open up this file for changes from the client.  the error is:
    "Could not complete your request because the file is not compatible with this version of photoshop"
    i really need to open this file without having to recreate it AGAIN.  PLEASE HELP!!!! 
    note: when i had the second version of the poster open after i created it again, i did a save as and made a copy because i had to make an A4 size print ad for the same thing, when doing this i converted the 'floor' smart object to a raster layer.  this file does open and i have no problems with it.  but i can not use it for the poster because the dimensions are considerably smaller than the poster and resolution is lost. 
    after doing some searching online i have not found any solutions for this and i'm desperate to find anything to get this file open so i don't have to recreate this a third time.  but, if i do not find help i thought i would mention what i believe to be the culprit of the problem...the gigantic embedded smart object with perspective transform that is much wider than the actual dimensions of the document.
    any help or advice is GREATLY APPRECIATED!
    thanks.

    update...
    ok. after the third recreation of the file and losing the file again, i downloaded the gimp open up the psd.  this was a suggestion in another forum i read online.  i was able to get the psd open in the gimp.  i then saved a copy with another name and it warned me that i could not save the file because the width of the document was larger than 30,000 pixels.  this was because the smart object perspective 'floor' layer was so wide as i mentioned previously.  i then cropped that layer to the visible pixels on the canvas and saved it as a psd.  then i was able to open the file in photoshop...but i did lose all of my layer styles and all of my masks were moved and had to be redone...but, at least i was not completely starting over so it is better than nothing. 
    in conclusion...i suspect the problem is what the gimp said when i tried to save a copy.  don't have your document layers and/or document larger than 30,000 pixels and you should be ok...in case anyone else has run into this problem.

  • NEED HELP!  Possibly easy question about 'sorting' on your iPod

    I can't find the answer anywhere... You know when you sort on 'artist' (or probably anything) on your iPod, if the artist's name is "The Beatles", the artist will be found under the letter "B", not "T". Or if the artist's name is "A Perfect Circle", the artist will be found under "P" and not "A". Etc...
    Is there a way to change this? I actually don't mind it, but was curious because:
    Is there a way to add words that it would do this for? i.e. add the word "Tha" in iTunes for your iPod so artist "Tha Dogg Pound" is found under "D" and not under "T".
    Sorry if this answer is somewhere but I cannot find it. Any help would be greatly appreciated! Thank you in advance!!!

    In iTunes for Windows the auto-sort feature is controlled by the file C:\Program Files\iTunes\iTunes.Resources\<Region Code>.lproj\SortPrefixes.plist. For English the words ignored for sorting are "A ", "An " & "The ". You could edit this list or just use the Sort Artist, Sort Album Artist etc. fields as necessary when you'd like something sorted into a different position. I can't recall ever testing to see if the iPod picks up on changes made to this file so it may be that another properties file would need editing on the classic in order to achieve the same end.
    tt2

  • Help with possibly dead ipod .... any hope?

    While listening to my Ipod, it suddenly sounded like it was dying - the music slowed down - like when a cassette tape gets twisted or runs out of battery life. The screen froze. I know it was fully charged - the previous day I charged it until it indicated that I could disconnect - and the green battery icon was near full before it seized up. I tried reset to no avail. The screen went blank Plugged into to PC to try and charge, but screen stays blank and the pc doesn't recognize it.
    Is there any hope for my ipod?
    (I'm in India - there are no service centers listed on the Apple web page)
    Any help from fellow Ipod users would be greatly appreciated.
    Steve
    Ipod 5th Gen Video 30G Windows XP
    Ipod 5th Gen Video 30G Windows XP
    Ipod 5th Gen Video 30G   Windows XP  

    Hi John,
    Thanks for the link. There may be some hope - as it seems that I might just have to keep trying. I did try plugging it into the pc to charge, but no response. I read somewhere that I have to wait 30 minutes or so for it to get enough charge to be recognized - assuming that it's the battery.
    Do you have any insight as to why the song that was playing just slowly died - slowed down and sounded warped - could this be what happens with a disk drive when the battery goes? Maybe then all I need to do is charge it...
    Thanks again,
    Steve
    Ipod 5th Gen Video 30G Windows XP

  • Help with possibly noobish question

    Hello,
    I need to make some complex graph structures such that this format will not do
    1: 2 ->4
    2: 4 ->2
    I have several additions to each node to take care of that is the main problem.
    each node has aarity which I could hold as a separate array to be accessed for each object instance of a node
    Part 1:
    The problem is that i have to know which node is connected to which arity element and then I have to search for the free elements and label their indexes with characters. I think I can solve this
    Part 2:
    The second problem is maybe a little worse as I have to translate certain groups graphs to something like this and then connect them to any graph as needed. Will i need to make a separate object for this purpose??
    | ..................| n input wires connected |
    |???????????????????????????????????|
    | Wires maped to edges from graph |
    |___________________________________|
    | ..................| n output wires wires connected |
    Part 3:
    To compound this I have to find a way to implement a menu selector to choose random graphs or parts of graphs for a Genetic Algorithm. Selection is not the problem here its is mapping the structures into a chromosone which is causing me the problem.
    Part 4:
    Each connection has the graphs triggers different application specific rules that cause the graph to reduce or change connections.
    Any help on strategies for these problems would greatly be appreciated
    kind regards
    Prashant

    Hello all and thanks for the replies positive or not. Sorry if I offended you bbritta. I guess its not such and easy question after all.
    Well its not due tomorrow and I am doing some research into a wierd topic so you guys are along the right lines. The topic I am researching is non-determinstic interaction nets. I don't know too many people doing this. Interaction Nets invented by a guy named Yves Lafont and you can google this and the topic I am researching.
    All the code written thus far exists in C and is very hard to interpret as it uses a Lex and Yacc parser to implement the creation of tokens and syntax rules of the Interaction Nets programming language.
    Basically its a high level visual graph programming language however it can also be used on low level based on interpretation. Thus the need for graph data structures. Essentially I have to modify this programming language for non-determinism and demonstrate this in a Genetic Algorithm. The latter would be no problem if I could get the data structure sorted. People familiar with Lamda calculus, Linear Logic and Process Calculus might have seen this in some research papers.
    However I have not had a very good theoretical background so finding the data structures to map the complexity of the graphs is a little problematic. I will outline my idea and what I have done a little clearer below.
    So far I have broken the prob into smaller steps as suggested by someone, I hope the pseudo code helps a little more.
    class Symbol
    convertASCIItoINt( char value) : return int
    getChar() : return char
    checkAvailability() : return boolean;
    //each Symbol is assigned to a free port and is traditionally input.
    //several instances of this obj are used to
    class Port  implements Symbol
      initialisePort( num);
      checkFreePorts( ) : return boolean;
      setPortSymbol (port [num])
      private ports [ num ];
      setEndPortAsSpecial( ports [ num ]) // each node has a special port called principal port
    // each node has a set of port and each port can have a label as a string
    class Node
    setNodeSymbol()
    getnodeSymbol()
    public Port node_obj [ port_num ];
    setSpecialSymbol( string)
      //destructor to delete node connected to
      //duplicator to create a copy of cell value
      //constructor create a copy of the cell
    getSpecialSymbol() : return string symbol;
    checkSpecialSymbol(node_obj [ port_num ]): return string symbol;
    //so far as a typical graph goes i think its acceptable to connect the nodes in an vector with
    //a list at each element although this is not shown below.
    class Net
      connecNodes( node_obj [ port_num], node_obj [ port_num] )
      checkDeadlock(): return boolean; //check for cycles
      public Node net_obj [ node_num ];
      checkConnected( node_obj [ port_num], node_obj [ port_num] ): return boolean;
    //this is where the execution engine will be placed
    class InteractionRules
    ruleTrigger( )
      Node n = new n
      n.checkSpecialSymbol()
      // its here where things get complicated with the data structure as according to the rules I have to delete
      // add or copy a value of a particular node in a Net
      determineReduction()
        //if (ports [ num ] = num )
        // a reduction occurs according to the rule in the method above ruleTrigger();
       //at this point the relevant nodes will be removed and new nodes will be added according to the rules
    storeCopyofOriginalNet()
       //needed to rollback if rules are infeasable or deadlock occurs.
    }I desperately still need help to complete the data structure I have also considered manipulating the complex associations between the sets as multimaps and maps
    Sorry if I am not clear I am trying my best to explain something I have had little background and almost no help in as I am creating the special rules as I go along such as keeping an copy of a net / graph before modifying it in the Genetic Algorithm.
    Kind Regards and Best Wishes
    Prashant

  • App Store and Download problems - Help If Possible :(

    Hiya. I am New. Sorry for delving straight in for help, but I don't know what I have done here, and I hope someone can help me rectify my problem. I received my BB last week and set it all up - working fine. A colleague of mine directed me to the App Store, and I downloaded that via the handset with no problems. I was able to download the FB, some themes and a dictionary app via the store and was able to access it just fine. Yesterday, I tried to install some new apps and themes via the Desktop Manager, and now the App Store has dissapeared from my handset. I tried to re-download it via my BB and it says something like 'Sorry, this device does not meet the requirements to download App store' and I cannot download any Apps at all. FB and Dictionary are still there, but the themes I tried to put on via DM are not. I removed battery and memory card, and tried again but still get the same message. I tried to put App store back via the DM. It says it was loaded successfully but its not in the handset. I deleted all the themes I had originally downloaded from app store in the hope something was causing a corruption in the handset software but that hasn't worked either. I haven't installed any updates (to my knowledge) and the contract plan i have with my provider doesn't impose any limits to my usage as I have opted for the unlimited package (Tesco Mobile) I can't understand how last week I was able to download and use App store just fine, but now it is saying my handset doesn't support it, and I can't download or install any new Apps, Games or Themes via the desktop manager either. Sorry for rambling on, but I was really happy with my new BB, and now I am afraid i have unwittingly bricked it! Any advice gratefully received! TIA

    You can change the settings in Security & Privacy to "Anywhere"...
    That should work... as to whether the printer driver will work, that's another question.
    Good luck,
    Clinton

Maybe you are looking for