Easy Facebook Question for you!!

When i'm trying to post a message or write on someones wall i type in the textbox, however it doesn't word wrap..Is there a way to have it word wrap?
Also if i move my cursor out of the textbox, i can never start my message where i ended off.  I go on to the text box and slowly scroll to the end of my msg to continue, i click the trackball and it moves the cursor somewhere else.
Can someone tell me if its possible to get the cursor back to the end of the msg so i can continue posting if i where to move my cursor..
Thanks

Let me recommend you use the Facebook for BlackBerry application.
On your Facebook mobile website page, scroll to the bottom and you'll a link to download.
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

Similar Messages

  • Hi,  I have keep seeing a small 'Connection failed'  warning box popping up: [[Connection failed  There was an error connecting to the server "Warning; Self Aware"]].  Question for you gods - what does it mean. is it important?  my computer connects to my

    hi,  I have keep seeing a small 'Connection failed'  warning box popping up: [[Connection failed  There was an error connecting to the server "Warning; Self Aware"]].  Question for you gods - what does it mean. is it important?  my computer connects to my server works.  Could it be related to  "Network Preference & Monitor icons missing from my system preferences page?  and my guest sign=in account is now the main account??     thanks you. jb

    hi,  I have keep seeing a small 'Connection failed'  warning box popping up: [[Connection failed  There was an error connecting to the server "Warning; Self Aware"]].  Question for you gods - what does it mean. is it important?  my computer connects to my server works.  Could it be related to  "Network Preference & Monitor icons missing from my system preferences page?  and my guest sign=in account is now the main account??     thanks you. jb

  • Hello, I have a question for you. receipt of some Internet providers or notices notifications on the lock screen and I consume the battery on my iPhone 4S. would you please tell me how do I block these ads in blue letters on the screen me? thanks

    hello, I have a question for you. receipt of some Internet providers or notices notifications on the lock screen and I consume the battery on my iPhone 4S. would you please tell me how do I block these ads in blue letters on the screen me? thanks

    Hi demir67,
    Welcome to the Support Communities!
    The articles below will show you how to block text messages from your iPhone:
    iPhone User Guide for iOS 7:
    Send and receive messages - iPhone
    http://help.apple.com/iphone/7/#/iph01ac18d71
    Block unwanted messages. On a contact card, tap Block this Caller. You can see someone’s contact card while viewing a message by tapping Contact, then tap the "i" with the cirle.   You can also block callers in Settings > Phone > Blocked. You will not receive voice calls, FaceTime calls, or text messages from blocked callers.
    iOS 7: Understanding call and message blocking
    http://support.apple.com/kb/HT5845
    Notification Center - iPhone
    http://help.apple.com/iphone/7/#/iph6534c01bc
    Set notification options. Go to Settings > Notification Center. Tap an app to set its notification options. You can also tap Edit to arrange the order of app notifications.
    Cheers,
    Judy

  • Question for you Deathstalker

    Hi Richard.
    I have a question for you about the MSI K7N2G-LISR (NVIDIA nForce2 IGP) motherboard we were discussing.
    If this board has integrated graphics, why do I need a video card? I had someone else ask me the same thing but I didn't know the answer.
    Thanks
    Mike

    Hi Mike, I not sure if I should step in and put in this reply, but couldn't stop myself not to as this is quite important.
    Mobos that comes with on board/integrated/shared Memory Graphics usually dun ends up giving you good framerates and graphics details. I have a friend who spent Sin 2000 over dollars to D.I.Y a creative slix look alike com with on board graphics has regretted not getting a proper mobo with AGP slot. The graphics that are produced on his com are like running a TNT2 Riva 32MB card for games like warcraft 3 and any latest 1st person shooting games... juz imagining it...
    I'm the type of person who are more for graphics and smoothness of gameplays and details of model as I do some 3D designs and picture designing. I juz dun understand why there are still people going for onboard graphics and complaining about poor fps produced which they should have blame themselves for it X( ... It's good that you've pointed out your doubts on that...
    All the Best...  :D !!!

  • Easy swing question for Java friends

    Hi could somebody test this short application and tell me why the "DRAW LINE" button doesnt draw a line as I expected?
    thank you very much!
    Circuitos.java:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.awt.geom.*;
    public class Circuitos extends JApplet {
         protected JButton btnRect;
         protected Terreno terreno;
         private boolean inAnApplet = true;
         //Hack to avoid ugly message about system event access check.
         public Circuitos() {
              this(true);
         public Circuitos(boolean inAnApplet) {
            this.inAnApplet = inAnApplet;
              if (inAnApplet) {
                   getRootPane().putClientProperty("defeatSystemEventQueueCheck",Boolean.TRUE);
         public void init() {
              setContentPane(makeContentPane());
         public Container makeContentPane() {
              btnRect = new JButton("DRAW LINE");
          btnRect.addActionListener(new ActionListener() {
             public void actionPerformed(ActionEvent e) {
                terreno.pintarTramo();
              terreno = new Terreno();
              JPanel panel = new JPanel();
              panel.setLayout(new BorderLayout());
              panel.add("North",btnRect);
              panel.add("Center",terreno);
              return panel;
         public static void main(String[] args) {
            JFrame frame = new JFrame("Dise�o de Circuitos");
              frame.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
              Circuitos applet = new Circuitos(false);
              frame.setContentPane(applet.makeContentPane());
              frame.pack();
              frame.setVisible(true);
    }Terreno.java:
    import java.awt.*;
    import javax.swing.*;
    import java.awt.geom.*;
    public class Terreno extends JPanel {
         Graphics2D g2;
         public Terreno() {
              setBackground(Color.red);
              setPreferredSize(new Dimension(500,500));
         public void paintComponent(Graphics g) {
              super.paintComponent(g);
          g2 = (Graphics2D) g;
          g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);    
         public void pintarTramo () {     
              Point2D.Double start   = new Point2D.Double(250,250);
              Point2D.Double end     = new Point2D.Double(250,285);
              g2.draw(new Line2D.Double(start,end));            
    }

    I don't think the date I became a member has anything to do with it. Yes, I signed up a year ago to ask a question or two when I didn't know anything. It wasn't until recently have I started to use this forum again, only to try and help people as well as ask my questions. It took me a year to get to this point to where I can actually answer questions instead of just asking. So don't be silly and judge a person based on their profile.
    Secondly, I agree with you, the search utility is great. I use it all the time and usually I'll find my answers, but if I don't is it such a pain in the butt for you to see the same problem posted again?? I know how much you want people to use the resources available before wasting forum space with duplicate questions, but it's not going to happen. Some people are not as patient and you being a butt about it won't stop it.
    My point in general is that there are nice ways to help people and even rude ways, and your comments at times come across rude to me, even condescending. You have a lot of knowledge, therefore certain things seem trivial to you... but try to understand where some of the new people are coming from. The Swing tutorial is extremely helpful but if you don't understand the concept of programming or java that well... then it can be overwhelming and you don't know where to start. It's a huge tutorial and when people are stuck they just want an answer to their one question. Most figure it's easier to ask someone who already knows instead of reading an entire tutorial to get their answer.
    I've learned by both methods, by taking the time to research it myself and by asking a lot of questions. I have the time. Some don't. Please realize that not everyone is like you and they will continue to ask whether you like it or not. You have a choice, either help them or not.

  • Easy Slide Question for Website

    Easy question for u guys.
    What is the easiest way to create slider header such as these websites ->
    http://www.pclsolutions.com/
    http://www.alivre.com/
    What is the easies way of doing it???
    Dreamweaver has so many options, and I have very limited time so I was wondering if anybody could give me the easy answer here so I can proceed further.
    Thank you in advance guys.

    Log-in to the Adobe Widget Exchange and grab Spry Content Slideshow
    http://labs.adobe.com/technologies/widgetbrowser/
    WOW slider
    http://wowslider.com/
    NIVO slider
    http://nivo.dev7studios.com/
    just to name a few...
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • First 6 weeks with Mac Pro - Bunch of questions for you

    I'm a new Mac convert and now after having my 1st Mac for about 6 weeks I've developed a list of questions I'd love to have some help with.
    1) How can I "minimize all" like in a PC
    2) Some programs seem to require an admin status to install. Can I do this without logging into a separate admin account? Some will ask for a name and password, but some just won't install correctly. Can I "run as admin" somehow from the start without logging out or user switching first?
    3) If I'm running a fullscreen app (i.e. game such as Age of Empires) is there a way to get to the desktop without quitting the game?
    4) Is there a quick shortcut way to get to the downloads window?
    5) Can I change my mail so that there is a delay before a message is marked "read" - right now even scrolling past it marks it read.
    6) Can I auto log in to a network drive? I have a NAS that i use for backup storage and want it available evertime I start my computer
    7) How do I control what app opens a type of file - for example for a long time until I installed the full adobe PDF program all PDF files were opening in safari and I couldn't adjust the view
    8) I have a hot swap / Firewire drive. For some reason it won't show up unless I physically unplug it and then plug it back in. Is there an "update" that will update all drives and scan for connected drives?
    I appreciate any help with these questions - love my Mac and getting great work from Aperture. Have a project with Final Cut express coming up which will be my first movie project on the Mac - used Sony Vegas on the Pc in the past.

    1) How can I "minimize all" like in a PC
    There are several options
    a-Use Expose ( F9, F10, F11 & F12 keys)
    b-with the program whose windows you want to minimise active, while holding the option key, click the yellow window widget. All open windows in that program will minimise to the dock.
    c-while holding the option key, click on a running programs icon in the dock and choose "hide others" from the popup menu. This will hide all running programs except the one your working on.
    2) Some programs seem to require an admin status to install.
    You should be able to enter your admin name & password to install anything. This will affect where some things are installed sometimes, so you can also consider turning on fast user switching, so you have quick access to each account. If all that is not doing it for you ...
    You can go to the accounts panel in System Preferences and set the admin account to auto-log in, or to log into the admin account and wait for you to enter the password. If you wanted to run as admin full time, you would do better to change your user account to an admin account and then delete the original admin account. No need for two admin accounts. While it is good practice to run and admin and a user account, the vast majority of Mac users run as admin.
    3) If I'm running a fullscreen app (i.e. game such as Age of Empires) is there a way to get to the desktop without quitting the game?
    Command-H will hide most running programs. Clicking on the programs icon in the dock will restore the full screen window.
    4) Is there a quick shortcut way to get to the downloads window?
    I like to keep a copy of the download manager in the Finder sidebar. You can get to the download manager from any Finder window, plus you can drag & drop URL's onto the icon to download files.
    With the Finder active, press Shift-Command-G, which will open the "Go to Folder" window. Download manager is in /System/Library/CoreServices, so type /System/Library/CoreServices and hit the "go" button, At the bottom of the list, is an application called Verified Download Manager. Drag it to the sidebar of the open Finder window, placing it in the section below the iDisk/Network/HD.
    Be careful not to move the actual program, you just want a link to it in the sidebar.
    5) Can I change my mail so that there is a delay before a message is marked "read" - right now even scrolling past it marks it read.
    Not that I've found. You might want to visit http://www.hawkwings.net/ where you'll find a lot of Mail.app tips
    6) Can I auto log in to a network drive? I have a NAS that i use for backup storage and want it available evertime I start my computer
    You can, several complicated ways come to mind ... I'm going to skip over them as they probably won't work with a PC type NAS anyway. What you could do, is to mount or connect to your NAS, so it is visible in the Finder, then, open the Accounts panel in System Preferences and click on the login items tab. Click the + button to add an item and the navigate/select your NAS.
    This will mount your NAS at Startup, but could cause really slow startups and all kinds of other problems if you're using a laptop, or otherwise unable to connect to the NAS at startup/login. If the NAS is always available, this should work fine.
    7) How do I control what app opens a type of file - for example for a long time until I installed the full adobe PDF program all PDF files were opening in safari and I couldn't adjust the view
    Select/Click-on (highlight in the finder) any file that you want to modify, and then press Command-I
    This will open a get info window for the file, where you can choose "Open with..." to select what application to open this file with, then, just below, notice the "Change All" button, which, when clicked, will change every file type like the selection to work with the chosen app in the future.
    You really should consider using Preview fro PDF's unless you need Acrobat advanded features - it's nicer/faster etc.
    8) I have a hot swap / Firewire drive. For some reason it won't show up unless I physically unplug it and then plug it back in. Is there an "update" that will update all drives and scan for connected drives?
    Best way to deal with this is to make an alias (aka shortcut). While the drive is mounted, highlight it in the Finder and press Command-L
    You can also add it (or the alias) to the sidebar, just like the download manager.
    Both options let you click to mount the drive, which is handy to allow you to unmount it when you don't need it.
    Mac Pro 2.6 4GB/3x500GB Raid/X1900, MacBook Pro C2D   Mac OS X (10.4.8)  

  • I have a question for you. How can i print only a few pages (so not everything) from a bookmarked page? Please send your answer to peterdoornaar@***.nl THANKS !!!

    I bookmarked a website and wanted to print it. It is about a book. Somehow firefox crashed, and recovered. Now i want to print the the last 8 pages but it prints EVERYTHING AGAIN. I tried copying and pasting, didn't work. I really hope you can help me.
    with regards
    Peter Doornaar
    ''no email support from forum threads, all responses are posted here in the forum''

    The option should be visible here: http://support.mozilla.com/en-US/kb/Printing%20a%20web%20page#w_print-window-settings
    Print range section - Lets you specify which pages of the current web page are printed:
    * Select '''All''' to print everything.
    * Select '''Pages''' and enter the range of pages you want to print. For example, selecting "from 1 to 1" prints the first page only.
    * Select '''Selection''' to print only the part the page you've highlighted.
    Does it work for you?

  • SQL - PL/SQL question for you SQL degenerates.

    I wish to create a view from a tableZ as follows. I have a table with 4 columns. I want to group col1,col2 and col3 based upon the value of col4. The value of col4 is based on a algorithm that needs to search for the lowest number in that particular grouping. So, from the example I am listing the value of col4 in the first block (A,A,A) is 1 since the smallest number in that block of 4 rows is a 1. Second block value would be=4 (A,A,B) since there are all 4's in the last column. Third Block (AAC) would be = 2 since we have 2,2,3,3. Fourth block (AAD) would be = 3 since we have 3,3,3,4 and the Fifth block (AAE) would be a 1 since we have 1,1,1,1. Remember the value is equal to the lowest integer of the four. The integer 1 is the lowest value in any list so if you loop and search the list and find a value of 1 you can exit at that point and automatically assign a one. So the Summary view would look like this based upon the sample values in the tableZ contents.
    A A A 1
    A A B 4
    A A C 2
    A A D 3
    A A E 1
    Table Z Contents of
    col1,col2,col3,col4
    ========================
    A A A 1
    A A A 1
    A A A 2
    A A A 3
    A A B 4
    A A B 4
    A A B 4
    A A B 4
    A A C 2
    A A C 2
    A A C 3
    A A C 3
    A A D 3
    A A D 3
    A A D 3
    A A D 4
    A A E 1
    A A E 1
    A A E 1
    A A E 1
    Thanks in advance,
    Anon

    I am using a fairly common slang use of the word in Information Technology offices throughout the United States[Humpty Dumpty language|http://www.wordspy.com/words/HumptyDumptylanguage.asp]
    n. An idiosyncratic or eccentric use of language in which the meaning of particular words is determined by the speaker.
    As in
    "There's glory for you!"
    "I don't know what you mean by 'glory,' " Alice said.
    Humpty Dumpty smiled contemptuously. "Of course you don't—till I tell you. I meant 'there's a nice knock-down argument for you!' "
    "But 'glory' doesn't mean 'a nice knock-down argument,' " Alice objected.
    "When I use a word," Humpty Dumpty said, in rather a scornful tone, "it means just what I choose it to mean—neither more nor less."
    Lewis Carroll, Alice through the Looking Glass
    Cheers, APC
    blog: http://radiofreetooting.blogspot.com

  • Hey all you pros, question for you...

    I am a new convert, and I and trying to learn all the ins and outs of mac worship. With the one-button mouse (i got myself a cute little wireless one here...), are there shortcut keys to do more with the mouse? I wasn't particularly fond of the mighty mouse, but I am already missing scrolling and the such. I assume there is something to alleviate this, as so much is keyboard driven anyways...
    Thanks for you help...!

    You can get the equivalent of a right-click a couple of ways. One way is to hold down the control key when you click. Another way is to click and wait a second before releasing the click. This is my preferred way for activating context menus, etc.
    15 1.67 GHz PowerBook   Mac OS X (10.4.3)   2 GB RAM

  • I have some question for you???

    Consider this Class diagrams of Directed Graph
    ***Picture 1 >>> http://thaimp.i8.com/4-1.jpg
    Please write Java Application when have this data example
    ***Picture 2 >>> http://thaimp.i8.com/4-2.jpg
    -------------------- End of Question --------------------------
    Hope you like it : )

    BufferedImage img = new BufferedImage( 150, 150 , BufferedImage.TYPE_INT_RGB  );
    Graphics g = img.getGraphics();
    g.setColor( Color.PINK.fouler() );
    g.fillRec( 0, 0, 150, 150 );
    g.setColor( Color.PINK );
    g.drawString( "50meg does not support linking...." );
    g.flush();
    ImageIO.write( img, .... );

  • I have a question for you: Inserting Word document in BLOB column

    Hey Experts,
    I have found a good info and a sample on how to achieve this on
    http://www.sys-con.com/java/source/5-6/code.cfm?Page=76.
    declare
    f_lob bfile;
    b_lob blob;
    begin
    insert into sam_emp(empno,ename,resume)
    values ( 9001, 'Samir',empty_blob() )
    return risumi into b_lob;
    f_lob := bfilename( 'MY_FILES', 'MyResume.doc' );
    dbms_lob.fileopen(f_lob, dbms_lob.file_readonly);
    dbms_lob.loadfromfile
    ( b_lob, f_lob, dbms_lob.getlength(f_lob) );
    dbms_lob.fileclose(f_lob);
    commit;
    end;
    I have a jsp project and the users ( on the client side)must be
    able to create a word document and send it to the server with an
    uplaod servlet. With another servlet or jsp i want to process
    this word document in BLOB column using JAVA. The sample above
    uses PL/SQL to achieve this. Is there a way i can do this in my
    servlet/jsp to do the same thing?
    Any hints are welcome!

    The option should be visible here: http://support.mozilla.com/en-US/kb/Printing%20a%20web%20page#w_print-window-settings
    Print range section - Lets you specify which pages of the current web page are printed:
    * Select '''All''' to print everything.
    * Select '''Pages''' and enter the range of pages you want to print. For example, selecting "from 1 to 1" prints the first page only.
    * Select '''Selection''' to print only the part the page you've highlighted.
    Does it work for you?

  • Easy Question for you hard programmers

    Do I have to do something special to read from a file using Fort�? My program compiles fine, and it'll even run at a prompt or in TextPad, but when I run it in Fort�, it throws a FileNotFoundException.
    Help Appreciated.

    You do have to look in the correct directory for the
    file, but that's true whether you are using Forte or
    not. Perhaps you are not specifying any directory
    path and you don't know what Forte uses as its current
    directory?I've run into the same problem with Forte when I try to use ClassLoader.findResource to find a file. I never did figure out where it's supposed to be, even if I modifed the classpath. However, it worked when I specified a specific file path, i.e. starting with C:\ etc etc. What's annoying is that you of course have to escape the backslashes. C:\\dir\\subdir.... etc. yuck.

  • An easy question for you (I presume)

    Hi,
    Within a couple of week from now, I will install the latest version of OAS and OAS Portal to my client. They're already using the latest version of discoverer. It's a Linux platform and they access the database (with discoverer) using windows desktop.
    I'm wondering how long, according to your experience, I would have to plan on the installation ?
    Thanks in advance for your help !!

    Lately there have been different "point releases" of OracleAS, some of which are aimed at delivering certain new middleware services or features. These releases (e.g. 10.1.3.1.x) does not necessarily include each and every possible component of AS.
    One way of getting an overview of which components are included in a release of AS, is the download pages (start there and see previous, and perhaps newer, releases)
    Portal Concepts, including a high level architectural view, can be found here. Remaining books of AS 10.1.2 in the Documentation Library.
    OID, in short, is Oracle's implementation of a LDAP v3 directory service. It is an essential part of Infrastructure services, that serves much of the other parts of the AS platform and applications.
    Make sure you take some good amount of time for finding out the clients actual needs and resources, analyzing needs and coming up with a suitable solution and plan...
    Message was edited by:
    orafad

  • I have an easy question for you, why do I have to pay every month when I want to buy Photoshop? Do I really need to download it from thepiratebay?

    Help me out here

    If you want to buy Photoshop you can buy CS6.
    Purchase CS6 products:
    http://www.adobe.com/products/catalog/cs6._sl_id-contentfilter_sl_catalog_sl_software_sl_c reativesuite6.html

Maybe you are looking for