How to see and use MS Word files

What is the best App to download, edit, and store MS Word, Excel, and Powerpoint Files on the iPad2?

'Best' will be down to personal preference. But some of the top sellers are, firstly from Apple :
Numbers (support Excel) - http://itunes.apple.com/us/app/numbers/id361304891?mt=8
Pages (supports Word docs)  - http://itunes.apple.com/us/app/pages/id361309726?mt=8
Keynote (Powerpoint) - http://itunes.apple.com/us/app/keynote/id361285480?mt=8
Third-party apps which support all three document types :
Documents To Go - http://itunes.apple.com/us/app/documents-to-go-office-suite/id317117961?mt=8
     'premium' version (edit Powerpoint, not just view) -
     http://itunes.apple.com/us/app/documents-to-go-premium-office/id317107309?mt=8
QuickOffice HD - http://itunes.apple.com/us/app/quickoffice-pro-hd/id376212724?mt=8

Similar Messages

  • How to read and upload microsoft word file into database using forms9i

    Hi,
    How to read and upload microsoft word file into oracle database using forms9i. I appretiate if anyone can send me example or atleast a sujjetion.
    Thanks in advance
    Mahesh Ragineni

    The webutil package includes the ability up upload from the client to the database. See otn.oracle.com/products/forms and click on webutil for more details.
    Regards
    Grant Ronald
    Forms Product Management

  • How to SEE and USE Pulse Counter Output signal INSIDE my VI?????

    Hello.
    I am using a 6216 AOM board and I currently need to generate a 50 kHz signal for an external AOM, and this has been no problem.
    However, I also need to be able to SEE and USE this signal in my VI
    (for example, to be able to view the signal in a graph, and more
    importantly, to be able to use the signal as an input for a software
    based Lock-In Amplifier).
    How can I do this?
    I've been reading about routing signals and I believe I can do this,
    however, the routing does not solve the problem that I need to be able
    to see and use the signal inside my software.
    Please help!
    Sincerely
    JSL

    HI JSL!
    When you route the signal, you can “see” in an input channel the signal been generating by the output channels being routed, but you need to create the code for the acquisition and this code must have synchronization (start trigger and same sample rate) with the generation code. Then we can use it.
    If this is what you need, please let me know so that we can work on generating a little example. Can you give me more details about how is the signal (sample rates, etc.)?
    Please let me know in case I misunderstood your problem.
    Tania Lozoya | National Instruments

  • How to create and use library JAR files with command-line tools?

    Development Tools -> General Questions:
    I am trying to figure out how to put utility classes into JAR files and then compile and run applications against those JAR files using the command-line javac, jar, and java tools. I am using jdk1.7.0_17 on Debian GNU/Linux 6.0.7.
    I have posted a simple example with one utility class, one console application class, and a Makefile:
    http://holgerdanske.com/users/dpchrist/java/examples/jar-20130520-2134.tar.gz
    Here is a console session:
    2013-05-20 21:39:01 dpchrist@desktop ~/sandbox/java/jar
    $ cat src/com/example/util/Hello.java
    package com.example.util;
    public class Hello {
        public static void hello(String arg) {
         System.out.println("hello, " + arg);
    2013-05-20 21:39:12 dpchrist@desktop ~/sandbox/java/jar
    $ cat src/com/example/hello/HelloConsole.java
    package com.example.hello;
    import static com.example.util.Hello.hello;
    public class HelloConsole {
        public static void main(String [] args) {
         hello("world!");
    2013-05-20 21:39:21 dpchrist@desktop ~/sandbox/java/jar
    $ make
    rm -f hello
    find . -name '*.class' -delete
    javac src/com/example/util/Hello.java
    javac -cp src src/com/example/hello/HelloConsole.java
    echo "java -cp src com.example.hello.HelloConsole" > hello
    chmod +x hello
    2013-05-20 21:39:28 dpchrist@desktop ~/sandbox/java/jar
    $ ./hello
    hello, world!I believe I am looking for:
    1. Command-line invocation of "jar" to put the utility class bytecode file (Hello.class) into a JAR?
    2. Command-line invocation of "javac" to compile the application (HelloConsole.java) against the JAR file?
    3. Command-line invocation of "java" to run the application (HelloConsole.class) against the JAR file?
    I already know how t compile the utility class file.
    Any suggestions?
    TIA,
    David

    I finally figured it out:
    1. All name spaces must match -- identifiers, packages, file system, JAR contents, etc..
    2. Tools must be invoked from specific working directories with specific option arguments, all according to the project name space.
    My key discovery was that if the code says
    import com.example.util.Hello;then the JAR must contain
    com/example/util/Hello.classand I must invoke the compiler and interpreter with an -classpath argument that is the full path to the JAR file
    -classpath ext/com/example/util.jarThe code is here:
    http://holgerdanske.com/users/dpchrist/java/examples/jar-20130525-1301.tar.gz
    Here is a console session that demonstrates building and running the code two ways:
    1. Compiling the utility class into bytecode, compiling the application class against the utility bytecode, and running the application bytecode against the utility bytecode.
    2. Putting the (previously compiled) utility bytecode into a JAR and running the application bytecode against the JAR. (Note that recompiling the application against the JAR was unnecessary.)
    (If you don't know Make, understand that the working directory is reset to the initial working directory prior to each and every command issued by Make):
    2013-05-25 14:02:47 dpchrist@desktop ~/sandbox/java/jar
    $ cat apps/com/example/hello/Console.java
    package com.example.hello;
    import com.example.util.Hello;
    public class Console {
        public static void main(String [] args) {
         Hello.hello("world!");
    2013-05-25 14:02:55 dpchrist@desktop ~/sandbox/java/jar
    $ cat libs/com/example/util/Hello.java
    package com.example.util;
    public class Hello {
        public static void hello(String arg) {
         System.out.println("hello, " + arg);
    2013-05-25 14:03:03 dpchrist@desktop ~/sandbox/java/jar
    $ make
    rm -rf bin ext obj
    mkdir obj
    cd libs; javac -d ../obj com/example/util/Hello.java
    mkdir bin
    cd apps; javac -d ../bin -cp ../obj com/example/hello/Console.java
    cd bin; java -cp .:../obj com.example.hello.Console
    hello, world!
    mkdir -p ext/com/example
    cd obj; jar cvf ../ext/com/example/util.jar com/example/util/Hello.class
    added manifest
    adding: com/example/util/Hello.class(in = 566) (out= 357)(deflated 36%)
    cd bin; java -cp .:../ext/com/example/util.jar com.example.hello.Console
    hello, world!
    2013-05-25 14:03:11 dpchrist@desktop ~/sandbox/java/jar
    $ tree -I CVS .
    |-- Makefile
    |-- apps
    |   `-- com
    |       `-- example
    |           `-- hello
    |               `-- Console.java
    |-- bin
    |   `-- com
    |       `-- example
    |           `-- hello
    |               `-- Console.class
    |-- ext
    |   `-- com
    |       `-- example
    |           `-- util.jar
    |-- libs
    |   `-- com
    |       `-- example
    |           `-- util
    |               `-- Hello.java
    `-- obj
        `-- com
            `-- example
                `-- util
                    `-- Hello.class
    19 directories, 6 filesHTH,
    David

  • How to retrieve and use an XSL file from CLOB field

    I am using Java to query my data and return XML formatted data. I am able to format this data using an XSLStylesheet file. But I want to instead use an XSL Stylesheet stored in a clob field.
    I have an XSL file stored in a clob field. How can I retrieve and use it to initialize an XMLDocument and then create an XSLStylesheet.
    Thanks for your help,
    Les Smith

    I think this question has been raised before. Try searching this forum.

  • How to import and use a *.key file

    Hi I've been looking for the forum a solution for this but I haven't found,
    I need to sign a file, with a private key, but the private key is a file AAA01_0408021316S.key,
    how can I load this file in order to use it to sing a document
    hope someone can help me

    http://demo.quietlyscheming.com/source/SuperImage.zip
    this is the source code, but where do i need to put it?

  • How to transfer and use the project files from Premiere Pro cs6 MAC OS to Premiere Pro CS6 Windows

    Is there any plugin or tool that can help me to transfer my project files along data edited on adobe premiere cs6 MAC OS to the adobe premiere pro cs 6 on windows PC

    When transferring a project from one computer to another,to stop errors such as these, its essential to ensure that the project is copied with all the files and folders in exactly the same locations. Also before opening the project on the new computer, you need to set up a new project and set all the preferences to be exactly the same as on the first computer. Then when you open the project, premiere will find all the files in all the right places. Even then you may need to re-link some files. Just follow the prompts when Premiere asks "Where is file...."
    We use USB hard drives to store students projects on and they are used on many different computers without problems, as the preferences are all set to be the same.

  • How to copy and use the RAID files for ATI SB600 for a new build

    WinXP Home
    MSI K9A Platinum
    AMD Athlon X2-3600+
    2 x Seagate 250GB SATA2 3GB/s HHD
    2 x HIS X1950Pro in Crossfire
    2 x OCZ2A8002GK Crossfire certified modules
    Enermax Galaxy 850
    Hello, I plan on setting this new build up with SATA RAID 0. I tried to follow the ReadMe file in the RAID drivers download but think I am not fully understanding. The ReadMe says to copy all files to the media...it said floppy but I am going to use a flash drive. I did so but there were two folders, X64 and  X86. Do I open those two folders and copy all the contents or do I just copy the two folders directly to the drive?
    Thank you

    Quote from: lewislink on 05-July-07, 02:13:43
    Open the sub-folders and copy their contents, or copy the sub-folders, themselves?
    What about BIOS update? Will it be necessary to use a floppy or can a flash drive function?
    "What about BIOS update? Will it be necessary to use a floppy or can a flash drive function?"
    don't update the BIOS when everythink is working...
    "Open the sub-folders and copy their contents, or copy the sub-folders, themselves?"
    copy them as is.. directly with sub-folders included.

  • Music and Video on Nas in folders but how do i set up itunes on multiple computers to see and use these files and create libraries?

    Music and Video on Nas in folders but how do i set up itunes on multiple computers to see and use these files and create libraries?
    So i have had a itunes set up on my old PC, bought a NAS and copied the folders over to the NAS, i did this incorrectly and so then even when i told the old PC to use that folder it saw all the songs but wasnt able to play the songs as it was looking in the incorrect place.
    So now i want my Mac as well as my PC and others to all use the music, videos etc on the NAS they are in itunes friendly folders (as they were compiled this way by the itunes on the old PC.
    When i tell the mac to use the itunes library.itl file it sees the song list (about 100gb) but cant see any songs, so i have removed this file to another location for now with the hope to set up a new file and then get it to see the songs on the folder from the NAS.
    Can someone tell me how to do this for all the Mac's and PC's on my network as i really want one master library that all use and add too.
    Thanks for your help in advance.

    I have the same question but I am using two pc's

  • I Just received the update to iTunes, when I I look at the screen I do not see the normal icons.  When I select movies I do not get the new downloads unless i select the list in the sub file. How do I get backto the old method of seeing and using iTunes??

    I Just received the update to iTunes, when I I look at the screen I do not see the normal icons.  When I select movies I do not get the new downloads unless I select the list in the sub file. How do I get back to the old method of seeing and using iTunes??

    I can tell you that this is some of the absolutely worst customer service I have ever dealt with. I found out from a store employee that when they are really busy with calls, they have third party companies taking overflow calls. One of those companies is Xerox. What can a Xerox call center rep possibly be able to authorize on a Verizon account?  I'm Sure there is a ton of misinformation out there due to this. They don't note the accounts properly or so everyone can see them. I have been transferred before and have asked if they work for Verizon or a third party also and was refused an answer so, apparently they aren't required to disclose that information. I spent a long time in the store on my last visit and it's not just customers that get the runaround. It happens to the store employees as well and it's beyond frustrating.

  • How can I store and retrieve a Word file after it's been converted to a pdf?

    How do I store and retrieve a Word file after it's been converted to an PDF?  My file has been trapped in PDF"hell" assigned to a folder that cannot be opened or read, but when deleted, also deletes the original Word file...

    I think we need some more info here like, how are you converting to PDF. This is the Reader forum and it doesn't convert files to PDF.

  • I just switch to 10.8 from 10.6, and found that I can't use WORD.  How do I recover and use my word documents?

    I just switch to 10.8 from 10.6, and found that I can't use WORD.  How do I recover and use my word documents?

    ds store wrote:
    LibreOffice is the new (and better) port of OpenOffice as Oracle isn't sure of OpenOffice's fate.
    https://www.libreoffice.org/
    Of course they aren't sure, Open Office is nothing to do with Oracle, it's an Apache product ..... update your notes.
    Open Office is available here: www.openoffice.org/

  • How do I avoid importing MS Word file duplicates in Pages for Ipad 2?

    How do I avoid importing MS Word file duplicates in Pages for Ipad 2?

    Hi Cabrinii,
    The sign on the door is a bit misleading, and you're not the first (or even the first in the last hour or so) to come to this Pages (Mac version) forum to ask a question about Pages for iOS.
    Not many of us use iPad, so your question will be better served in the iWork for iOS community. The link will take you there.
    Regards,
    Barry

  • How do I read my old WORD files, it does not seem to recognize them?

    I downloaded LION and now my WORD files that I had previoulsy can not be read.  How do I get them back?

    Elaine, did you change your name from Andy, or are you a separate person? Most of us don't pay that close attention to the name and since your response seemed to be a continuation of Andy's problem, nobody noticed.
    Your question appeared to show absolutely no attempt to try the solutions provided for Andy (who we thought you were). What you did is called "threadjacking," and you did it in a way that made everyone believe you were actually Andy, who's thread you threadjacked.
    Being that you are a self-professed novice, here's a very basic thing you need to understand: for the most part, data is separate from applications. So, just because your application (Word in this case) no longer works, that doesn't mean your documents are in jeopardy. You can install Office (Word) 2008 or 2011 and open those documents just fine. You can also use any of the programs mentioned to open those documents. There is nothing to "merge" between the applications.
    To move them to your new computer, just copy the documents to an external hard drive, thumb drive, or CD/DVD. You can then move them to your Macbook. You can also turn on file sharing and move them that way, but you probably ought to have a backup since you claim them to be important.
    Do you have a backup of your iMac? If not, I would suggest getting an external drive copying all your data onto that, make sure it all reads ok, then do what you need to do with your iMac.
    Apple's setup assistant should have asked if you wanted to move stuff from your old computer to your new one, which would have been the best way to do that; however, since it appears you have already set up your account on the new Mac, I'd just back up the iMac, either by straight copy, Carbon Copy Cloner, or SuperDuper. You can then move the files you want onto your new Mac from the external hard drive.

  • I need to open and use a DFX file in Illustrator CS6 only displaying digits and letters

    I need to open and use a DFX file in Illustrator CS6 but it is only displaying digits and letters as opposed to fashion patterns. I believe the original file was  created in Gerber

    Thank you.
    I will see if I can access/download a CS2 version. Thats a kind offer, I will see how I go with the download first, as I will be needing to open several files over the next few weeks.
    Maxine

Maybe you are looking for

  • I downloaded software updates and now I can't get online with airport

    Hello! This morning, I got asked by my software update on my Mac (which automatically asks me every week) to install some software updates. I stupidly did not think much about it and clicked ok. The software updates that I installed were: 1.) Java fo

  • Windows 7: Crash at classpnp.sys on safe mode, freezes on windows logo on normal boot

    Windows 7 Home Premium crashes at classpnp.sys when I try to boot in any of the safe mode options. The normal Windows boot stops at the windows logo screen, and just stays there permanently. I have tried booting using the Windows install disk to acce

  • Iphoto created duplicates in seperate folder ?

    i had all of my photos in a folder 'digital camera photos' and put that folder in the 'pictures' folder, when i added/imported all the photos in the 'digital camera photos' to the iphoto library, a new folder was made in the 'pictures' folder which i

  • How to see the IDOC structure in XML format

    Hi, I am ver new to MII. I configured connection between SAPand SAP MII and IDOC is triggering in SAP MII. I can see the idoc triggered in Message monitor. Now my query is how to see the IDOC structure in XML format? I written a transaction where I a

  • Can i use the "calloc" function?

    I'm writing a plug-in which will a open source project. The project use a lot of calloc function. I found that if use this method it will cause a free error even if i calloc and then free it. But if i use new operator,it is OK. I don't know why. Shou