BlackBerry Smartphones Open .doc, .pdf original BlackBerry 900

Hi all;

to day I first used BlackBerry 9000 and send - receive emails OK.

but in the e-mail has attatched file .doc and .pdf that I can't see from email that I need to know

Original blackberry can open view .doc, .pdf file or can not?

AND if original BB can view .doc, .pdf file how I can fixed, because now I can't see attatched file?

Thank you very much

JO

Please press menu, options, advanced options, applications and you can see a list of applications installed on your device, check if you have Documents to Go.

Tags: BlackBerry Smartphones

Similar Questions

  • "open doc" javascript based on the name of the original pdf, for example pdf a5.pdf a button to open the b5.pdf because the script is able to know its "5"

    I hope this makes sense.

    I have two sets of PDF files containing 100 + individual pages (for a total of 200 pages in a single file)

    Set/series 1: a1, a2, a3-> a100

    Set/series 2: b1, b2, b3-> b100

    I would like to create a button on every page that opens to a page number corresponding to the other series of pdf.

    If I click the button open the file location that is sitting on the a50, for example, it will open b50.

    Any tips or clues on how I can run this? Probably a smart way to isolate the number (last character) "50", the name of the pdf existing and adding 'b' for 'b50' as the file to open at the end of the text?

    If you have a file called "a50.pdf" and you want to add a button that will open "b50.pdf" in the same folder? That's good enough?

    If so, you can use this code:

    var this.documentFileName = fname;

    fname = fname.replace (/ ^ has /, "b");

    app.openDoc ({cPath: fname, oDoc: this});

    If you want a link in 'b50.pdf' that opens "a50.pdf" just change the second line to:

    fname = fname.replace (/ ^ b /, "a");

  • When I open a pdf file. the document that I'm automatically redirected to page 3 of the doc. How can I open the 1st page?

    When I open a pdf file. the document that I'm automatically redirected to page 3 of the doc. How can I open the 1st page?

    Hi Monica

    Open the properties of the Document window (ctrl + d), click on "Display Initial" tab, check "Open page" option, type 1 in the text box.

    Kind regards

    Rahul

  • Modify imported .eps, the original "edit" button opens a pdf file

    I try to import a .eps file, but I need to modify the original. When I click on the original 'edit' button it opens a pdf file. Is there anyway other than image trace to sketch the eps so I can change it?

    What do you get he call you just file > open... and open the EPS file? If it is indeed the vector, it should open in edit-able condition. If you bring via file > Place, there should be a "Embed" button available on the options bar, which should also put in a State of edit-able.

  • problem opening the pdf file and word doc

    Hello

    I have the problem at the opening of pdf files (adobe reader 9 or XI) when word docx is open.

    PDF opening start and then close spantaneously.

    If the pdf file is already open, and tried to open the word document, pdf file closes automatically

    can someone advise?

    Thank you

    Very strange!  Try turning off protected (as reader XI) Mode [Edit |] Preferences | (Improved) security].

  • Problem by opening a pdf url in a BrowserField of an application.

    Feature: 9530 (Simulator)

    Device and App OS: 5.0

    BES version: 4.1.7.18

    Device Manager: 5.0.1.20

    Desktop Manager: 5.0.1

    I need to open files PDF url my request. Initially, I discovered that a normal MDS Simulator will not open a PDF in a BlackBerry Simulator

    http://supportforums.BlackBerry.com/T5/Web-development/viewing-PDF-through-Simulator/m-p/25503#M81

    and I need a BES for this, so I installed BES and after a lot of turning around, I managed to do the work. From now on, I can open the url of the pdf and all the other URLS in the native browser of my Blackberry Simulator. But when I try to open the pdf from an application url by using a browserField it does not.

    I tried to use the simple browserField sample provided with the API

    http://www.BlackBerry.com/developers/docs/5.0.0api/NET/rim/device/API/browser/Field2/BrowserField.ht...

    I tried to use a KB browserField sample (in desperation really, I dunno what it does)

    http://supportforums.BlackBerry.com/T5/Java-development/BrowserField-sample-code-using-the-BrowserFi...

    Even tried using the code example given in the book of Apress Advanced BlackBerry development by Chris King . Here is the code for anyone who is interested to have a look

    import java.io.IOException;
    import java.util.*;
    
    import javax.microedition.io.*;
    
    import net.rim.device.api.browser.field.*;
    import net.rim.device.api.io.http.HttpHeaders;
    import net.rim.device.api.system.Application;
    import net.rim.device.api.ui.*;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.container.*;
    
    public class BrowserScreen extends MainScreen implements Runnable,
            RenderingApplication
    {
        private RenderingSession renderSession;
        private LabelField status;
        private StatusUpdater updater;
        private String url;
    
        public BrowserScreen()
        {
            renderSession = RenderingSession.getNewInstance();
            status = new LabelField("Loading...");
            add(status);
            updater = new StatusUpdater(status);
            url = "http://www.google.com";
            (new Thread(this)).start();
        }
    
        private class BrowserFieldContainer extends VerticalFieldManager
        {
            public BrowserFieldContainer()
            {
                super(Manager.VERTICAL_SCROLL | Manager.VERTICAL_SCROLLBAR
                        | Manager.FIELD_HCENTER);
            }
    
            public void sublayout(int maxWidth, int maxHeight)
            {
                int width = BrowserScreen.this.getWidth();
                int height = BrowserScreen.this.getHeight();
                super.sublayout((int) (width * .9), height / 2);
            }
        }
    
        public void run()
        {
            HttpConnection conn = null;
            try
            {
                conn = (HttpConnection) Connector.open(url);
                updater.sendDelayedMessage("Connection opened");
                BrowserContent browserContent = renderSession.getBrowserContent(
                        conn, this, null);
                if (browserContent != null)
                {
                    Field field = browserContent.getDisplayableContent();
                    if (field != null)
                    {
                        synchronized (Application.getEventLock())
                        {
                            deleteAll();
                            add(status);
                            add(new LabelField("Your search starts here."));
                            BrowserFieldContainer container =
                                new BrowserFieldContainer();
                            container.add(field);
                            add(container);
                            add(new LabelField("Don't forget to tip the service!"));
                        }
                    }
                    browserContent.finishLoading();
                }
            }
            catch (Exception e)
            {
                updater.sendDelayedMessage(e.getMessage());
            }
            finally
            {
                try
                {
                    if (conn != null)
                    {
                        conn.close();
                    }
                }
                catch (Exception e)
                {
                }
            }
        }
    
        public Object eventOccurred(Event event)
        {
            if (event.getUID() == Event.EVENT_URL_REQUESTED)
            {
                UrlRequestedEvent urlRequestedEvent = (UrlRequestedEvent) event;
                url = urlRequestedEvent.getURL();
                (new Thread(this)).start();
            }
            updater.sendDelayedMessage("Handle event " + event.getUID() + " for "
                    + event.getSourceURL());
            return null;
        }
    
        public int getAvailableHeight(BrowserContent browserContent)
        {
            return getHeight() / 2;
        }
    
        public int getAvailableWidth(BrowserContent browserContent)
        {
            return (int) (getWidth() * .9);
        }
    
        public String getHTTPCookie(String url)
        {
            return null;
        }
    
        public int getHistoryPosition(BrowserContent browserContent)
        {
            return 0;
        }
    
    protected HttpConnection getResourceConnection(String url,
            HttpHeaders requestHeaders)
    {
        HttpConnection connection = null;
        try
        {
            connection = (HttpConnection) Connector.open(url);
            if (requestHeaders != null)
            {
                Hashtable headers = requestHeaders.toHashtable();
                if (headers != null)
                {
                    Enumeration names = headers.keys();
                    while (names.hasMoreElements())
                    {
                        String name = (String) names.nextElement();
                        String value = (String) headers.get(name);
                        connection.setRequestProperty(name, value);
                    }
                }
            }
        }
        catch (IOException ioe)
        {
            updater.sendDelayedMessage(ioe.getMessage());
        }
        return connection;
    }
    
        public HttpConnection getResource(final RequestedResource resource,
                final BrowserContent referrer)
        {
            if (resource == null || resource.isCacheOnly())
            {
                return null;
            }
    
            String url = resource.getUrl();
    
            if (url == null)
            {
                return null;
            }
    
            if (referrer == null)
            {
                return getResourceConnection(resource.getUrl(), resource
                        .getRequestHeaders());
            }
            else
            {
                (new Thread()
                {
                    public void run()
                    {
                        HttpConnection connection = getResourceConnection(resource
                                .getUrl(), resource.getRequestHeaders());
                        resource.setHttpConnection(connection);
                        referrer.resourceReady(resource);
                    }
                }).start();
            }
            return null;
        }
    
        public void invokeRunnable(Runnable runnable)
        {
            (new Thread(runnable)).start();
        }
    
    }
    

    I can open google.com and other pages in my application using the above given alternatives, but cannot open a PDF url. And the pdf file opened fine in the browser BlackBerry local. I'm getting a little desperately need help now. All that I can appreciate.

    Much obliged.

    The field of browser does not support the rendering of PDF files.  There is no API in the set of BlackBerry APIs that allow you to programmatically display one PDF other then opening the BlackBerry browser the URL of your PDF file, which must point to a web server.

  • Why can not open .doc attachments without having to pay for the Office?

    I get attachments for a lawyer to use land and other, and sometimes they will be .doc instead of pdf. I get that a lot of them to justify the cost of the Office ($6.99) per month. Why keep this office? Thanks.Phil

    I guess that's what you have configured in YOUR computer the software to open .doc files.
    You can download Open Office for free and open most of all the files that will open the office suite. Then, simply put YOUR computer to use instead of office.

  • Open a PDF with acrobatcu

    Helle,

    When I open a Pdf authorization from icloud, it opens with an unknowned pdf viewer. I wonder how if IT possible to 'open with' and chose to note SOFT Island arcrobat or DocAs

    Thanks for YOUR help

    IF you download the PDF to iCloud drive, tap the share icon in the upper right and drag to get to one of your applications of PDF documents and that select the option ' copy to '.

  • When I try to open a PDF in a Web site, I get a runtime error and the site is stopped.

    Hello

    When I try to open a PDF in a Web site, I get a runtime error and the site is stopped. How can I fix this problem? I am running Windows XP Home Edition.

    original title: Run time error

    Hello.

    I guess you are using Acrobat Reader to view the PDF files?

    You can try to download the latest version of Acrobat Reader here:

    http://www.Adobe.com/

  • my laptop has begun to open all PDFs in Wordpad and all I get is looking for binary files

    original title: download Word pad

    Recently, my laptop started to open all PDFs in Wordpad and all I get is looking for binary files. what I did to get it and how do I get that back to normal PDF files?

    Open any folder on your computer.  Click Tools > Folder Options > File Types

    Find the PDF and click on modify.  Chose the Adobe Reader software.

    Make sure the bottom box is checked. (Always use the selected program to open this type of file)

    Click Ok.   Apply.

  • When you try to open a PDF from Adobe, I get this message "to the 882 ordinal not found in SHELL32.dll dynamic link library.

    When you try to open a PDF from Adobe, I get this message "to the 882 ordinal not found in SHELL32.dll dynamic link library.  Any ideas on how to solve this problem.  Have Windows Vista.  Thank you.

    original title: problem opening Adobe pdf.

    Hi Gary,.

    Are you facing this issue only when you open pdf files?

    Method 1:

    You can try uninstalling and reinstalling Adobe software and check if it helps.

    Uninstall a program

    Method 2:

    You also try to run the system restore.

    Note: When you perform the system restore to restore the computer to a previous state, programs and updates that you have installed are removed.

    To run the system restore, you can consult the following links:

    System restore

    System Restore: frequently asked questions

    Hope this information is useful.

  • When you try to open a PDF file, Windows Media Center opens

    My aunt has Windows Vista on her computer and whenever she tries to open a pdf file that opens Windows Media Center. Is there a way to get Windows Vista to point to Acrobat Reader to open the file, or should it go directly to the RA? Thanks for any help you can give on this subject.


    Steve

    PS; I don't know if it's 32-bit or 64-bit.
    * original title - PDF problem on windows Vista *.

    Acrobat Reader or Adobe Reader? Personally, I wouldn't use Adobe at all, but try this. Skip #1 if it is already on the HARD drive.

    Create a file association.

    1. download and save the attachment to the office.
    2. right click on the saved file.
    3. Select: Open with on the shortcut menu.
    4. click on: choose [default] program.
    5. Select: PDF reader program.
    6. check: always use the selected program to open this type of file.
    7. click on OK.

  • How can I open .doc files without being encrypted?

    original title: open .doc files

    How can I open .doc files without being encrypted?

    How can I open .doc files without being encrypted?

    What program are you trying to open them in? If you don't have MS Word, then you need this program.

    Word Viewer
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=3657CE88-7CFA-457A-9AEC-F4F827F20CAC&displaylang=en

    Bruce Hagen
    MS - MVP October 1, 2004 ~ September 30, 2010
    Imperial Beach, CA

  • In Windows Mail, I can not open .doc files, I get the error that it was not bound

    In Windows Mail, I can not open .doc files, I get the error that it is not associated, and he tries to search in appdata/IE5 for a reason any.  PDF, PPT, XLS all work fine.  I tried unassoc to unassociate file types for .doc and .docx associate then again these via Control Panel and it STILL does not work.  I'm at the end of my home please help.
    Nicki

    I had to remove the regedit.  for some reason the mail windows refuses to unassociate so go to regedit, I don't like playing with regedit, but it worked, I deleted and then again, all ok now.

    Thanks for the help!

  • Cannot open DOC files that are sent to me. I have wordpad and Notepad on my computer but you do not have Microsoft Office

    original title: DOC files

    Cannot open DOC files that are sent to me. I have wordpad and Notepad on my computer but you do not have Microsoft Office. Most of the time, I get a screen that says 'open' or 'save' the file and when I click on 'Open', this message disappears. Sometimes it opens, but the message is completely scrambled with letters and symbols.

    Cannot open DOC files in wordpad or Notepad. you will need a more advanced software suite. Try OpenOffice.org - it's free, and it supports the DOC format. But the best solution is to get Microsoft Office once and for all.

    Download OpenOffice.org: http://download.openoffice.org/contribute.html?download=mirrorbrain&files/stable/3.2.1/OOo_3.2.1_Win_x86_install-wJRE_en-US.exe. Note: Click on the link at the bottom that says "http://download.services.openoffice.org/files/stable/3.2.1/OOo_3.2.1_Win_x86_install-wJRE_en-US.exe" to download the program.

    This should solve your problem,

    Rifdhan

Maybe you are looking for

  • iNode files

    Can I safely delete files iNode in lost + found without causing problems to the OS / X?  I have two of these files of more than 5Gigabytes each.

  • Windows.exe files are no longer works!

    My windows.exe stop working, I can access my desktop icons go to the start menu. The screen is all black, the only way that I can use all the files is to use the Task Manager. Please help ive tried everything I could

  • Smartphones blackBerry used to my phone lights up!

    I was using my phone perfectly well and in working condition. Then I put it in charge overnight. I woke up in the morning to find that my phone won't turn on. When I tried to charge, the red light was about 5 to 10 seconds then turns off.  My phone s

  • Who is thinner: ThinkPad X120e or IdeaPad S205?

    Hello I reduced my decision until the ThinkPad X120e or the IdeaPad S205. It will be used for light work surfing and word processing. Could someone do a real comparison side by side to see which model has the thinner body? I saw several pictures of p

  • redemption of the education code does not work

    I have a redemption of the education code, but he says already redeemed.  I never activated cloud creative prodcuts however.  How can I get a license for the product?