How do I use the Microsoft word application on iPad

I have recently bought Microsoft office 2010 on the application store and I  can not figure how to use it for documents,please help

There is no Microsoft Word for the iPad. You can use 3rd party suites (I use Documents to Go, other popular ones are QuickOffice and Office squared) or the Apple WP app (Pages has an iOS version).

Similar Messages

  • How can I use the QR codes with my iPad 2. do I need to download first an app ?

    How can I use the/read the QR codes with my iPad 2 ? Do I need to download an app ?

    Yes.  There are quite a few available for free in the app store

  • How can I use the Netflix app on my iPad while traveling outside the US?

    Is there any way to use the Netflix app on my iPad while traveling out of the country? I am curently in Russia. I downloaded software to mask my IP address on my laptop. Is this possible for the iPad?

    There's no way to mask or hide an IP address on an iPad that I am aware of. As to using Netflix from outside of your country, ask Netflix about that.
    Regards.

  • How do I use the INTO word in my querys?

    Hi! I'm working with Oracle 10g and Microsoft Visual Studio 2008 (Visual C#), I connected both succesfully, now I can add data to my tables from C#, but the problem comes when I try to request data from the database, I'm trying to do that with this query: "SELECT Id_Estado, DetalleEstado FROM Estado", but it doesn't work, it shows me an error, saying that I have to put an "INTO" in my query, but, where should I put it? and in wich kind of "object" should I save the data that I'm requesting.
    I guess I have to make a query like this: "SELECT Id_Estado, DetalleEstado INTO "an object/container" FROM Estado".
    I'm new with Oracle, I hope you can help me. Thank you so much.

    I would suggest you this
    1. Create a stored function with return typer as REF CURSOR. You can create your own REF CURSOR or use the oracle supplied one i.e. SYS_REFCURSOR.
    2. Inside the function do something like this.
    create or replace function get_estado_data return sys_refcursor
    as
      pOutCursor sys_refcursor;
    begin
      open pOutCursor for
      select * from Estado;
      return pOutCursor;
    end;
    /3. Now from your C# call this function using ExicuteDataSet API and store the output in a DataSet.

  • How can I modify the microsoft word graph

    Hi,
    I'm trying to modify the Legend section of a graph after creating it in labview.
    Any ideas?
    thanks.

    Hello,
    The legend property of the graph/chart can be accessed through Labview. If you take a look at the Word_Insert_Chart.vi (C:\Program Files\National Instruments\LabVIEW 7.1\vi.lib\addons\_office\_wordsub.llb\Word_Insert​_Chart.vi), you will notice that there is a property node to the chart. One of the properties is for the legend on the chart, and from there, you could create a property node for the legend.
    A few of the exposed properties are font, height, width, and position. In particular, the font property is read only. So, in short, you will not be able to change the font in your legend short of possibly getting an ActiveX reference to your graph and see what properties this reference exposes.
    Thanks.
    Wendy L
    LabWindows/CVI Developer Newsletter - ni.com/cvinews

  • Launch Microsoft word application inside AIR

    Hi Guys,
    I am stuck up somewhere not able to find the solution to my
    prolbem.Let me explain the problem in detail.
    I working on an Adobe AIR application and I need to launch
    the microsoft word application to open a particular document which
    a user can then modify.
    This word document are some defined documents stored some
    where in system. The user can then modify the document and can
    store that locally in the database.My concern is to launch the
    microsoft word document in my AIR application and then let user do
    the changes to the document and then i will save the document in my
    database as BLOB.
    Is there any good way of doing this.I hope Adobe has taken
    care of such scenarios and there must be some API's or component in
    Flex builder 3 so that i can use that.
    I am hoping with the finger crossed and waiting for a good
    response from Flex people.
    ~ Hstrong

    I am importing Word documents ( in xml format ) into an Air
    application and storing them in a blob in SQLite. When a user
    selects a document, I export it to a file and submit a URLRequest
    to open it. It launches in IE initially (asking if you want to open
    the document), but when IE sees the xml declares it a Word
    document, IE opens Word.
    To load the file to the database:
    //set up and open the database
    var sqlConnection:SQLConnection;
    sqlConnection = new SQLConnection();
    var dbFile:File =
    File.applicationDirectory.resolvePath("cASM_db.db");
    sqlConnection.open(dbFile);
    //open the file, read, and close (note reading bytes with
    readBytes)
    var fileStream : FileStream = new FileStream();
    fileStream.open(asmModel.newTemplate, FileMode.READ);
    var myBlob:ByteArray = new ByteArray();
    fileStream.readBytes(myBlob); //read the object
    fileStream.close();
    //insert the blob into the database (note use of QUOTE
    function to format blob into hex)
    myStmt.sqlConnection = sqlConnection;
    myStmt.text = "Insert into doctype (" +
    "docname_ch, document_bl) " +
    "values (?, QUOTE(?))";
    myStmt.parameters[0] = asmModel.newTemplate.name;
    //docname_ch
    myStmt.parameters[1] = myBlob; //template_bl
    myStmt.execute();
    To unload the file from the database and open:
    //identify the file to be populated and delete if already
    there (note use of File type and resolvePath function)
    curFile = File.applicationStorageDirectory;
    curFile = curFile.resolvePath("view/version_" +
    asmModel.selectedDocument.VERSION_NU + "_" +
    asmModel.selectedDocument.DOCNAME_CH);
    //if it is there, delete it
    if (curFile.exists)
    curFile.deleteFile();
    //open the database connection
    var sqlConnection:SQLConnection;
    sqlConnection = new SQLConnection();
    var dbFile:File =
    File.applicationDirectory.resolvePath("cASM_db.db");
    sqlConnection.open(dbFile);
    //get the document (now in hex string format)
    myStmt.sqlConnection = sqlConnection;
    myStmt.clearParameters();
    myStmt.text = "Select docname_ch, document_bl " +
    "from doctype " +
    "where docname_ch = ?";
    myStmt.parameters[1] = asmModel.selectedDocument.DOCNAME_CH;
    myStmt.execute();
    myResult = myStmt.getResult();
    //now convert the hex string back to a byteArray (note the
    use of a custom toArray function)
    var myBlob:ByteArray = new ByteArray();
    myBlob = toArray(myResult.data[0].DOCUMENT_BL);
    //now write the document to the file
    var fileStream:FileStream = new FileStream();
    fileStream.open(curFile, FileMode.WRITE);
    fileStream.writeBytes(myBlob);
    fileStream.close();
    //now set up the URLRequest
    var request:URLRequest = new
    URLRequest("app-storage:/view/version_" +
    asmModel.selectedDocument.VERSION_NU + "_" +
    asmModel.selectedDocument.DOCNAME_CH);
    var docType:String = request.url.substr(request.url.length -
    4, 3);
    if ((docType != "pdf") ||
    (HTMLLoader.pdfCapability == HTMLPDFCapability.STATUS_OK))
    navigateToURL(request);
    else
    Alert.show ("You need to upgrade Adobe Reader.", "Error");
    trace("PDF cannot be displayed. Error code:",
    HTMLLoader.pdfCapability);
    Here's the custom function toArray:
    public static function toArray(hex:String):ByteArray {
    hex = hex.substring(hex.search("3C3F786D6C"),hex.length - 3);
    var a:ByteArray = new ByteArray;
    //make sure the string has an even number of characters
    if (hex.length&1==1) hex="0"+hex;
    //change each hex pair to a single int (ascii char code)
    // and place the int in the byte array
    for (var i:uint=0;i<hex.length;i+=2) {
    a[i/2] = parseInt(hex.substr(i,2),16);
    //return the byte array
    return a;
    Hope this helps!
    Steve

  • HT4796 I have made a file using the Pages app.I mailed it to a friend.When she tried opening the same file on her pc at home , It did not open.Please help me as to how to open the file in the Microsoft word format on her pc.

    I have made a file using the Pages app.I mailed it to a friend.When she tried opening the same file on her pc at home , It did not open.Please help me as to how to open the file in the Microsoft word format on her pc.

    Send it as a PDF.

  • How can I use the F11 short cut to go to next field in Microsoft Word 2011 on Macbook Air

    How can I use the F11 short cut to go to next field in Microsoft Word 2011 on Macbook Air?

    The default setting for the function keys is that they do OS X functions.
    To get a regular function hold the fn key and then press the function key.
    This action can be reversed in keyboard preferences.

  • How do you use the bluetooth VIs with a Microsoft Bluetooth Driver?

    How do you use the LabVIEW Bluetooth VIs with the Microsoft Bluetooth driver?  I have been trying with no such luck.
       I want to use 2 computers to talk to each other using the bluetooth VIs.  Eventually, I think we would like a PDA/phone to talk to a custom built electronics board with Bluetooth.  But for now, I would just like 2 computers to talk and then eventually talk to our own device. 
    One is a desktop w/ the Belkin F8T012 USB adapter.  It installs fine with the Belkin driver (but I know I need to use the Microsoft Driver in order to use the LabVIEW VIs, but I have tried to get Windows to install its own but it says it is a BCM92045DG-Flash.  It says it cannot install it because it cannot find the necessary hardware.  I thought this USB adapter was on the approved Bluetooth devices list?  What else should I try?  Another Bluetooth USB adapter? 
    The other computer is a Dell Latitude 820.  It has a built in Bluetooth module which I believe is the Dell 350 Bluetooth Module.  On this machine I have been able to setup a COM port with a bluetooth device (blood glucose meter).  It came with a serial port interface which we modifed to go through a bluetooth interface.  It comes up as COM40. We have been able to communicate to it using their program originally designed to talk through a serial port.  But we would like to use the Bluetooth VIs in LabVIEW.  I can't even use the Discover VI.  Perhaps it is not using the Microsoft Driver as well.  Do I just uninstall the driver and then try to have Windows install its own driver?  Do you have any other recommendations?
    Thanks,
       Javi

    Hi Javi,
    This sounds like an issue with Windows and your specific Bluetooth devices.  As you mentioned, the LV Bluetooth VI's do require that the devices use the Windows drivers.  Take a look at this link for specific requirements for using Bluetooth with LabVIEW.  Also, you can take a look at our Developer Zone tutorial on designing Bluetooth applications a found here.  Regarding your device drivers, sometimes it is as easy as uninstalling the driver and then letting Windows discover the device and fine its own driver.  You could check out the Microsoft Knowledgebase for more information.  Thanks and have a great day!    
    Stephen S.
    National Instruments
    1 Test is worth 1000 expert opinions

  • I wrote a assignment in the microsoft word 97-2003 doc but by mistake replace in the same name but with different thing . how can i retain my orinal file which was as Basel III and Banking law

    i wrote a assignment of almost 2500 words in the microsoft word 97-2003 doc but by mistake replace  a table only in same name  . how can i retain my orinal file which was as Basel III and Banking law

    Hey Christian
    Thanks I havn't seen that post, busy trying it now but no luck so far.
    I defined it in the second one (Content Management - Utilities - MIME Types).
    Tried it now in NWA, no luck either . . .
    What I noticed is no matted what it is defined as in NWA or Content Management, the properties of the mht file still shows Binary File (application/octet-stream)
    Any ideas?
    Regards
    Antonette

  • 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 can I use the open in " My application" option to open image attachments.?

    How can I use the open in " My application" option to open image attachments.?
    I am trying to use the uti's given in the apple docs but just unable to do it however its working perfect for pdf and rtf files.
    please help needed urgent.   

    Perhaps you should Contact the iTunes Store Customer Service:
    Apple - Support - iTunes Store - Contact Us

  • My Microsoft Office won't work! Here is the error report. Microsoft Error Reporting log version: 2.0  Error Signature: Exception: EXC_BAD_ACCESS Date/Time: 2015-03-04 12:04:03  0000 Application Name: Microsoft Word Application Bundle ID: com.microsoft

    My Microsoft Office won't work after upgrading to the newest OS from Apple! HELP!!!!!!
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2015-03-04 12:04:03 +0000
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 14.4.8.150116
    Crashed Module Name: unknown
    Crashed Module Version: unknown
    Crashed Module Offset: unknown
    Blame Module Name: MSXML
    Blame Module Version: 14.4.8.150116
    Blame Module Offset: 0x00003125
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0

    If your startup disk says it is full, you need to remove some of your stuff.
    Either move some documents/movies/pictures to an external drive (if you want to keep them), or delete them from your startup drive. Then, empty the Trash.
    If you move them to an external, you will still have to delete them from the internal drive.
    That won't fix Office (I don't think), but it will make everything run better. You need a minimum of 10GB free (more would be better).
    You might need to reinstall Office. It should work without problem (well, at least as little problem as Office can muster).

  • I would like to use the VoiceOver utility application to only speak the words i type in TextEdit-to speak nothing else.  can it be configured to do this?  thanks.

    i would like to use the VoiceOver utility application to only speak the words i type in TextEdit-to speak nothing else.  can it be configured to do this? i would like to use it as a substitute for my voice.  thanks.

    Please locate the model number on the side of the AirPort Express. Hard to see.....gray lettering on a white background....so you may likely need a magnifying glass and good lighting to see it.
    The model number starts with a "A" followed by four numbers. If you see A1084 or A1088, unfortunately AirPort Utility 6.x in Mavericks OS X (10.9.4) does not support these older models. However, you can still administer these models if you have a Mac.....or can borrow one for a few minutes....using Leopard (10.5.x) or Snow Leopard (10.6.x), or a PC with AirPort Utility installed on the device.

  • How can we make the ms-word data as read-only using java code?

    How can we make the ms-word data as read-only using java code?

    MVSK wrote:
    By using java code i opened a file in ms-word. But the data i want to display as read-only. that means should not change it.I don't think you can do that. Display pdf documents instead.

Maybe you are looking for

  • Is there any way to create a HTTP_AAE Receiver without a path in NW PO 7.31

    Hi , Does anyone know how to create a HTTP_AAE Receiver without a path?? We are in a phase of migrating Interfaces from PI 7.1 to PO 7.31(Java Only). For one of the Interface in PI 7.1 there is a RFC Destination for vendor communication through HTTPS

  • Time synchroniz​ation in producer/c​onsumer loop

    I wanted to save data from producer loop once in 4 secs. But this is not possible due to the wait function in the producer loop. It saves data once in 5 secsonce in 4-5 loops. When I cancel the wait function, the loop uses CPU extremely high. How can

  • Problem with versions

    I am very new in sql server.  I downloaded sql server express 2012.  I then downloaded adventureworks sample database.  I used the following command to attach the database: CREATE DATABASE AdventureWorks2012 ON (FILENAME = 'M:\Data\AdventureWorks2012

  • Don't get mad, get a refund

    There are a string of issues with the new iPhone: 1. Blemishes on the finish 2. Labels printed askew 3. Light leaking around the bezel of some white iPhones 4. WiFi refuses to connect or breaks off constantly 5. "No Signal" reception problems 6. Unus

  • How to realize retiree (inactive employee) payroll result posting to FICO?

    Hi, Now I have one requierment:  the retiree who postion is '99999999'  need to run payroll and posting. now I have make the retiree run payroll by change It0003. but I don't know how to make the payroll result posting ,because no cost centre. who ca