Transfer pdf or word documents to ipad from macbook

how can i transfer pdf and words documents of my iMac  to an ipad 2

Many options, depending on what you want to do with them.
mail them to yourself
use iTunes
use the desktop transfer programs that go along with Office Suite apps (i.e. Documents to Go, Quickoffice, etc)
use Goodreader (a PDF/document reader as well as a file transfer and management app)
use a cloud storage app (such as Dropbox or Sugarsync).
If you want to edit the documents, you'll need an app that can do so. If you just want to read them, you have more options.

Similar Messages

  • How can I transfer pdf and word document files from my computer to iphone 4?

    Hi,
    I have recently purchased an iphone 4,I need to know how to transfer my files from laptop to iphone, i have downloaded iTunes but can not add my iphone, basically I dont know if there is anything else i should do to be able to connect my laptop to iphone so that i can easily transfer files.
    Also,does any body know what application i can open my word documents with?
    and how easy it is to search through the file for a specific topic if its for example 1000 pages? how about in pdf files? how can i find a topic i need as fast as possible, say in an open book exam condition?!!
    thanks

    Try using the App PDF Reader Lite, I downloaded from the iTunes App store, it is free and works. Not only for PDF but Doc, page, etc.
    I Am using it and it is working oK

  • I have tried to access my recently subscription to transfer from PDF in word documents

    I have tried to access my recently subscription to transfer from PDF in word documents  

    Did you sign in with your Adobe ID?
    Anyway, this is the wrong forum; try → http://forums.adobe.com/community/exportpdf

  • Why am I only given the option to create a pdf when I want to convert from pdf to word document? My plan is the PDF pack.

    Why am I only given the option to create a pdf when I want to convert from pdf to word document? My plan is the PDF pack it should do it ¡

    Hi,
    I checked your account,you have an active PDF pack.
    You need to click on Export PDF to convert from PDF to word document.
    Regards,
    Florence

  • Why am I only given the option to create a pdf when I want to convert from pdf to word document?

    Why am I only given the option to create a pdf when I want to convert from pdf to word document?

    Hi,
    If you have PDF pack subscription you can avail all of the services like export PDF,create PDF & etc.
    Otherwise you have to purchase every service individually.
    Regards,
    Florence

  • How do I transfer powerpoint and word documents to my ipad with the new itunes?

    how do I transfer powerpoint and word documents to my ipad with the new itunes?

    Have a look at the following:
    http://itunes.apple.com/sg/app/quickoffice-pro-hd-edit-office/id376212724?mt=8&l s=1
    http://itunes.apple.com/sg/app/office2-hd/id364361728?mt=8&ls=1
    http://itunes.apple.com/sg/app/documents-to-go-premium-office/id317107309?mt=8&l s=1
    http://itunes.apple.com/sg/app/polaris-office/id513188658?mt=8&ls=1

  • Darg a drop PDF a Word documents

    Need help. How can i Drag a drop PDF and  Word documents from webmail Accounts into a app to make Some notices there and send it per Mail. Now i have installed paperdesk.  iOS 501 ipadII.

    I'm not sure if this will work when reading mail ona  website, but in the mail client you can open the PDF, click on the box with arrow coming out of it icon in upper right, and select any PDF readers and editors you have on the iPad to open it.

  • I am trying to convert a PDF to word document. But it is not happening.

    I am trying to convert a PDF to word document. But it is not happening.
    When I click on the save as the document does not change.
    I am getting very frustrated trying to complete this action.
    I have signed in to acrobat.
    I have exported the document to acrobat.
    I have saved the PDF in acrobat cloud.
    I need this document as a word doc so that I can learn how to use my scientific calculator for an exam.
    could you please assist.
    Thanks
    Kaye

    Hi Sara
    From the document
            When I try the file save as other, nothing happens after I click on Word or Excel Online.
            There is no way I can click on the convert button on Export PDF.
            I am logged in as you can see.                                                                               
            When I go to Cloud Acrobat I can see the file there but only as a PDF.
            There is no word document there.
            As you can see I have tried this more than once.
    I just don’t know what to do from there.
    Hope you can help
    Many thanks
    Kaye

  • Hot to display PDF and Word documents as an attachment in OBIEE Reports

    Hi,
    From few of Oracle threads I learnt that we can store the files in a server locaiton and read it thro a URL. What I am trying to do is, PDF or Word document will be stored in database as BLOB fields. This BLOB field needs to be come as an attachment in OBIEE Reports and by clicking that icon, it uses the local applicaiton PDF reader or a word applicaiton and open the attachment, just like how we open an attachment from a E-mail. Can you please help me with the possible methods of that. I can provide you more information incase if you need.
    Thanks
    Augesthi

    As long as you used the paper-clip Attach icon, that should be fine.
    The entire document appears to you because your Mac recognizes the document type, and displays it for you, saving you from having to mouse around and find a Reader for it. You can still use the Save icon to save a copy of only the attachment.
    To avoid problems with other email readers, be sure the checkbox [√] send windows-friendly attachments is checked.
    I addition, some email readers cannot cope with any attachments positioned at any place in the document other than at the very end. So make sure you move the cursor to the absolute end of the document before clicking "Attach".
    If all else fails, send an email that says, "attachment to follow", then send the attachment right away in a separate email, with nothing else in the body of the message. Some use the Subject abbreviation (nt) to indicate "no text", that is, no words typed in the message portion.

  • Urgent Help Regarding PDF and Word Document Downloading

    Many Thanks Shaik for you humble help. Actually now what I did in the past 3 days,
    I used Oracle Intermedia to store my PDF and Word Documents in the database using Oracle SQL Loader. Then I used PL/SQL Server Pages and Oracle Web Toolkit for the downloading of my documents.
    Now the problem is I saved all my formatted documents in the databse and for retrieval I am using following code in my stored procedure
    * Select BLOB Data
    select blob_data into myblob from mytable where blob_name = name;
    Setup headers which describes the content
    owa_util.mime_header('text/html', FALSE);
    htp.p('Content-Length: ' || dbms_lob.get_length(myblob));
    owa_util.http_header_close;
    Initiate Direct BLOB download
    wpg_docload.download_file(myblob);
    end;
    The structure of the mytable table:
    create table mytable
    doc_id varchar2(128),
    doc_name varchar2(128),
    blob_data blob
    But when it prompt the client to download the file actually it gives the junk file name like 'B104ea56' (which i understand is the address of the blob address). What I want is to show the "SAVE AS" download box with the proper document name which is stored in my field in the following way
    1 SALES.PDF
    2 PLANNING.PDF
    3 MANUAL.DOC
    4 STANDARD.TXT
    If I set the MIME type for the file format than it automatically starts download the file to the client browser, that I do not want, It should ask the user to download with the proper document name.
    Waiting consiously for your help
    Regards

    Presumedly you'd like those documents being accessiable by users as well, so they should be put on a web server, ftp or nfs sharing. You can just add the urls to those documents, or the directory they are in, into robot system as starting points and let robot run to collect them.

  • How can I add word document to IPad

    How to add word document to Ipad?

    If you don't mind spend some money, there is two solution.
    You can buy quick office which can open Word Excel and Powerpoint file for you.
    You can also buy Pages which has a better GUI but cannot open Excel and Powerpoint.
    If you don't want to spend money for this, you can sent the document to your registed mail account on Mail.app.This will work, but you can't do changes to the document.
    You can also convent it to PDF file in order to open it on iBook.app.

  • Adobe Acrobat 8 Standard Question - Converting PDF to word document

    Question:  I currently have Adobe Acrobat 8.  I need to convert a PDF to word document.  I know how to do that but the outcome of the word document sometimes varies as to retaining the exact formatting.  How can I retain exact formatting?  Is there something that I'm not doing that I need to be doing in order to retain the formatting.  Also do newer versions (Adobe Acrobat 11 (Standard or Pro?)) do a better job of converting and retaining formatting?

    Retaining the exact formatting is not possible in practice or in theory because Word documents are nothing like PDFs. For example, Word will cheerfully reflow text onto new lines or pages, while this will never happen with a PDF.
    That said, Adobe keep trying to get closer to what people need. Sometimes this results in complex parts of the file being made into an uneditable graphic or text box.
    Bottom line is you can get the basics into Word and then (according to your time, experience, and the abilities of Word) you might be able to reconstruct.
    On no account convert official forms to Word.

  • Storing PDF and Word document in oracle database

    any idea, how to store PDF and word document using oracle database.
    thanks

    The common approach is store as BLOB in database, use DBMS_LOB package to handle the loading and reading, sample script source asktom
    Also check this thread in Asktom
    SQL> create table demo
      2  ( id        INT PRIMARY KEY,
      3    theBlob   blob,
      4    dummy_col VARCHAR2(1)
      5  )
      6  /
    Table created.
    SQL> -- --------------------------------------------------------------
    SQL> -- Load a PDF file into a BLOB field and compress the BLOB.
    SQL> -- --------------------------------------------------------------
    SQL> declare
      2      l_blob    blob;
      3      l_bfile   bfile;
      4 
      5  begin
      6      insert into demo (id, theBLOB) values ( 1, empty_blob() )
      7      returning theBlob into l_blob;
      8 
      9      l_bfile := bfilename( 'BLOB_DIR', 'Test.PDF' );
    10      dbms_lob.fileopen( l_bfile );
    11 
    12      dbms_lob.loadfromfile( l_blob,
    13                             l_bfile,
    14                             dbms_lob.getlength( l_bfile ) );
    15 
    16      UPDATE demo
    17      SET    theBlob = utl_compress.lz_compress(l_blob, 6)
    18      WHERE  id = 1;
    19  -- If you don't want compress the LOB just update directly
    20      dbms_lob.fileclose( l_bfile );
    21      COMMIT;
    22  end;
    23  /
    PL/SQL procedure successfully completed

  • Displaying PDF and Word Document

    Hi,
    I have used the methods to display HTML :
    1. Link to Action and the IFrame -> The Result was the html file I was able to display in the same window.
    2. Link to URL -> The Result was html file opened in different window.
    3.IFrame and attaching the file in project -> it was resulted in html file getting dispalyed in IFrame.
    Now if I want to extend the functionality for PDF or word document, is the procedure same or different
    Can anyone enlighten me on this
    Any thoughts on this.
    Thanks in Advance
    Srikant

    Hi srikant,
    You can also display word documents and pdf by uploading it in the server.
    For this you'll have to create  aliases in the server for the corressponding documents that you want to uploaad.
    Go to visual admin ->services->httpprovider.
    Then click the tab 'aliases'. Here you can give the name of your alias and also the document to which the alias should point(first upload the document to the server machine and then give the path here ) .
    Now when you type http://server:port/aliasname your document will open in the browser. You can display it either through your iFrame or linktourl as you prefer.
    Hope my effort will help you.
    Regards,
    Rahul.

  • How do I transfer a .mov file to my iPad from my Mac?

    How do I transfer a .mov file to my iPad from my Mac?

    If .mov files are compatible with iPad, you can add your .mov file to iTunes and sync it to your iPad.

Maybe you are looking for

  • Multiple iTunes accounts with iPad2.

    I have the following scenario: We have purchased several iPads for our employees and we are trying to find the best way to administer them. We would like to be abble to: 1. Users to use their home computer and personal iTunes account to purchase apps

  • My Mac only works on the mains

    Hello, i have a problem my macbook only works when it's connected to the mains. when i click on the battery icon it says battery is not charging and when i push the button on the battery i get five green lights. in the system profiler it says: Charge

  • PHP / MySQL help

    Hello all, I've got an update record form on one of my pages (it is a php / MySQL site). I followed the tutorial in dreamweaver 8, it works, but it does not work like I want it to work. I am hoping that when a user logs into the site, and they want t

  • Mystery file in trash at startup

    Hi! I have this mysterious file in the trash every time I turned the iMac. It has been going on for a while now and I can't get rid of it. Even secure empty trash did not work. When I click on get info, instead of giving me information about the file

  • Is my internal HD broken?

    My MacBook Pro (4 years old) got frozen so I had to shut it down with power button. When I tried to switch it on Instead of loading OS X i have been offered restore from time machine, reinstall os, get help online and disk utility. My disk has two pa