How to open Microsoft office files from my wp8 app?

Is there any way to open Microsoft office documents? I want to open a doc file which is in my phone.My app may try to open pdf also. So is there any way for that? I need a free one.

//where file is your StorageFile type object of perticular //Office documents i.e. ppt or doc etc
await Windows.System.Launcher.LaunchFileAsync(file);
Please Refer these links 
How to open pdf file in Windows Phone 8?
Launcher.LaunchFileAsync
shah
// Please Mark as answer if it is Helpful to you. Thank You

Similar Messages

  • How to open Adobe Reader file from another native IOS application?

    There is an existing thread, but I want to re-open it because I think this is an important feature that we need badly.  I was wondering if there is any plan to add this feature so we can open PDFs directly into Adobe from the web / other apps.
    How to open Adobe Reader file from another native IOS application?
    Basically, we just want to use a custom URL scheme to open a specific document in the App.  Currently, this only opens the app but does not load the file.
    APB

    Not to hijack the conversation but I can explain why this would be useful for both the above case and another.
    What I believe Pavel is talking about is setting up a "URL Scheme" for the Adobe Acrobat iOS application so that you can easily open a PDF specifically in Adobe Acrobat iOS from other native applications and even from web applications opened within Safari. This is particularly useful if your application requires some of the specific features in Adobe Reader iOS to grant them the best experience possible and you want to encourage this.
    Another case: If you're using Adobe Livecycle's document security modules (that encrypts PDF files so that Adobe Acrobat must "phone home" to decrypt and view the document), these PDF's can only be viewed inside the Adobe Acrobat application and appear as blank in most other PDF readers. Having a URL scheme allows your application utilising this functionality to have a 1 click step to view the PDF rather than the current non-user friendly process:
    - Within Safari, touch the PDF link (appears as blank in the default Safari PDF reader, which in itself is confusing)
      - Touch "Open in..."
      - Touch "Adobe Acrobat"
    We have an immediate need for this functionality for the example above. I can resubmit it in a separate post if necessary.

  • HT3967 I have a new MacBook Pro and need to know what I need to do to open Microsoft Office files so that I can work on them?

    I have a new MacBook Pro and need to know what I need to do to open Microsoft Office files?

    Use a product such as OpenOffice, LibreOffice, Google Docs, iWork, or Microsoft Office 2008 or newer. In the case of Word documents, you can also use TextEdit.
    (82026)

  • How to browse, view, open Microsoft Office files in Contribute CS4

    To browse or view Microsoft Office files (not Office 2007)in Contribute CS4: (I won't say how long it took me to figure this out!)
    Make sure Contribute is closed.
    Open C:\Program Files\Adobe\Adobe Contribute CS4\Configuration\ViewableExtTypes.txt
    Add doc,xls,ppt to the list, save & close ViewableExtTypes.txt and restart Contribute/
    It doesn't work for Office 2007 file extensions.
    I put my heart and my soul into my work, and have lost my mind in the process.
    Vincent Van Gogh.

    //where file is your StorageFile type object of perticular //Office documents i.e. ppt or doc etc
    await Windows.System.Launcher.LaunchFileAsync(file);
    Please Refer these links 
    How to open pdf file in Windows Phone 8?
    Launcher.LaunchFileAsync
    shah
    // Please Mark as answer if it is Helpful to you. Thank You

  • Opening microsoft office documents from link in flash site

    I have created a flash site, (its an internal site so nobody
    outside the network will be able to access it) and I have numerous
    documents linked in it. The documents all reside on the same server
    as the flash website. When I click on the link to open a microsoft
    office file (I have .doc, .xls, and .ppt on there) IE gives this
    error:
    Action canceled
    Internet Explorer was unable to link to the Web page you
    requested. The page might be temporarily unavailable. I have
    tried adding the domain to trusted sites under tools->options,
    but that doesn't seem to work. After I get the Action canceled
    error, if i hit enter or click the Go button next to the address
    line, it will then go on and open the file. There is some kind of
    communication error I can't figure out. The odd thing is that .pdf
    files are not affected. They opened just fine from the get-go. Only
    Office files. Is there a line of actionscript that needs to be in
    there? Or a setting in IE that I am not thinking of? PLEASE HELP!!!
    Thanks

    "cmutters" <[email protected]> wrote in
    message
    news:emh0t0$ef3$[email protected]..
    >I installed firefox and all the links worked. so its
    something in IE 6.
    > Anyone have any ideas? I have looked on microsoft.com
    and googled it and
    > can't
    > find a thing that might help! the website is listed in
    my trusted sites.
    ie has added security for activex controls... so you will
    need to look at
    the security settings for your browser and relax them...
    either in popups
    or/and in the advanced section of the tools menu...

  • How to open an InDesign file from CMIS repository?

    We are using CS SDK 2.0 , looking to use CMIS to keep versionning of .indd file. The uss case as following:
    form our de4veloped InDesign pluging, user click a button
    the button will open a .indd file from cmis repository
    plugin check-out the file, open it within InDesign IDE
    user make changes
    user make save
    the plugin export a pdf and swf files from the current document, if the files exists it will update, aslo on CMIS repo to keep also versions of exported pdf and swf, if files not exist in first time .. it will create
    when user clos the document , it will check it in.
    the problem there is no sufficent sample code for, even was thinking to use Adobe Drive, but there is no Adobe Drive SDK for Flex.
    i used to fuse the sdk, but
    private function getFileByPath(sPath:String):Fileable {
    appStatus = ">> get File By Path";
    message = "";
    viewEnabled = false;
    var request:GetObjectByPathRequest = new GetObjectByPathRequest(session);
    var oFileable:Fileable;
    request.path = sPath;
    request.execute(onSuccess, onError);
    function onSuccess (event:GetObjectByPathResponse) : void {
    oFileable = event.object;
    //var oDoc2:Document = new Document(event.object);
    doc = event.object as Document ;
    //children = new ArrayCollection(vectorToArray(event.target));
    appStatus = ">> getFileByPath : Success";
    viewEnabled = true;
    return oFileable;
    private function checkOutFile(oFile:Document):Document{
    appStatus = ">> Check Out File";
    message = "";
    viewEnabled = false;
    var request:CheckoutRequest = new CheckoutRequest(session);
    request.object = doc;
    var oDocument:Document;
    request.execute(onSuccess, onError);
    function onSuccess (event:CheckoutResponse) : void {
    oDocument = event.object ;
    appStatus = ">> Check Out File : Success";
    viewEnabled = true;
    return oDocument;
    private function openTestFile():void {
                                            appStatus = "Open Test File";
                                            message = "";
                                            viewEnabled = false;
                                            var oFile:Fileable  = getFileByPath("/Collaboration/test.indd");
                                            //var oDoc2:Document = new Document(oFile);
                                            var oDoc:Document  = checkOutFile(doc);
    i do not know what method in the CS SDK to open document fom active window and  how to map CMIS Document to com.adobe.indesign Document ?

    Dear Seoras
    i fixed the to return the cmis path:
    public function resolveRemotePath(file:File):String
                                  if (file.nativePath.indexOf(LOCAL_FILE_CACHE.nativePath) != 0)
                                            return null;
                                  var remoptePath:String =file.nativePath.substr(LOCAL_FILE_CACHE.nativePath.length);
                                  trace("resolveRemotePath [11] : "+ remoptePath);
                                  if(File.separator!="/") {
                                            //var pattern:RegExp = /(\/)/g;
                                            var pattern:RegExp = /(\\)/g;
                                            remoptePath =  remoptePath.replace(pattern ,"/");
                                            trace("resolveRemotePath [22] : "+ remoptePath);
                                  return remoptePath;
    i have another issue, why everytime update the generated pdf it creates new pdf file with same name in the cmis repo .. does the pdf is not updatable over the cmis service ???
    Regards

  • How to open a local file from javascript in a jsp-page

    Hi
    I have created an iview from a PAR file. In the par file I have a jsp-page with some javascript code. From the javascript coe I want to open a new window with an Excel file.
    I have tried window.open("c:
    test.xls", "test_window"), but it doesn't seem to work. I have created a small HTML page locally with the same command and there a new window opens with the Excel file.
    If I change the local file path with an URL it also works.
    Any idea how to open a local file ?
    Thanks
    /Jakob

    Jacob,
    I'm not 100% (but 99,9%) and it has to do with security ristrictions of the browser not allowing to have local workstation interation from the web. This is ofcourse very dangerous if the browser would allow it... So therfore it is blocked. What if somone would point to a file/executable that formats your drive so for that reason it is not allowed to have web interaction with a local file. Only with Java Applets this is possible but still with many limitations, and what I remember Google Gears and Adobe Air do have some limited web 2 local file interaction... So best and most simple solution you are left with is pointing to a url instead of a file on a c:\ drive.
    PS The reason why it works when you start the html from your local PC has todo with the fact that the browser detects that the html is not running in the web at that moment therefor allowing the access.
    Cheers,
    Benjamin Houttuin

  • I accidentally removed some ms office files from macbook through app cleaner . now they are in trash . how to restore them as some applications are not opening

    i just downloaded appscleaner from net and accidentally removed some of the ms office files like database utility , entourage ,etc. now when i open word, excel , it shows some message . how to restore the files. i tried by dragging them to the desktop but  don't know how to reinstall them at original place.

    Dragging them to desktop was not a good idea. Now you need to know where they came from.
    For any still in the Trash right-click on the file and select "put back" from the context menu.
    What version of Office, and what are the file names? We may be able to help you trace where they should be.

  • How to open a BUP file from a flashdrive in Macbookair?

    Pl let me know how to view a video with BUP extension from a flashdrive in my macbookair?

    You can open a PUB file ONLY with MS Publisher (Windows). No other possibility.

  • How to OPEN MS PowerPoint files from my Droid RAZA phone

    Hi There,
         Is there any way to OPEN the attached Microsoft Office PowerPoint files with the emails I received?
         I appreciate all your help and suggestions in advance.
         Thank you very much,
    Best,
    ylwny01

    Have you checked the Google Play Store to see if there is an application capable of viewing PowerPoint files?
    This result took all of two seconds.
    https://play.google.com/store/apps/details?id=com.dataviz.docstogo

  • How to open an PDF file from Java Application

    Hi
    I am developing a GUI application in java swing.
    on clicking one button, I want to open PDF file from my swing application.
    Is there any API through which I can achieve this?
    Tapan Maru
    Sun Certified Java Programmer

    Here's a way to do it (if I understand you
    correctly). Just let explorer.exe do it for you.
    import java.awt.*;
    public class openPDF
         Desktop desktop = Desktop.getDesktop();
         public openPDF()
              open("test.pdf");
         public void open(String path)
              try
                   Runtime.getRuntime().exec("explorer.exe "+path);
    } catch(Exception e) { System.out.println("NAI!
    I! ERROR!\n"+e); }
         public static void main(String[] args)
              openPDF myApplication = new openPDF();
    Why do you have a Desktop object as a member but instead of using it, you execute a command with Runtime (which is not platform independent!)???
    -Puce

  • How to open/convert RAW- files from new CANON 5D Mk III in LR 3 and CS 5?

    Hallo!
    The RAW- files from my new CANON 5D Mk III are not convertible into LR 3 and CS 5.
    What is the reason and how to solve the problem?

    The work around of converting the CR2 to dng either with the dng converter or ACR 6.7 will allow working in LR and CS5 but not with the latest raw conversion engine from Adobe i.e PV 2012.
    Remember to keep a copy of the CR2 files if you wish to utilize the Canon software.

  • How to open an existing file from java

    Hi Guys,
    I have one problem Please help me in this.
    How to open file(i.e. file can be any type, it is may be image file, doc file or pdf file) using java.
    Even i tryed in one way but it is static way that is working in windows not for other OS.
    Code :
    import java.io.*;
    public class CmdExec {
    public static void main(String argv[]) {
    try {
         DataInputStream din=new DataInputStream(System.in);
         System.out.println("Enter File Path to Open");
         String fName=din.readLine();
         File file=new File(fName);
    Runtime.getRuntime().exec("rundll32 SHELL32.DLL,ShellExec_RunDLL " + file.getAbsolutePath());
    catch (Exception err) {
    err.printStackTrace();
    If any other way to do please tell me.
    Regards
    Siva Prasad

    Well, if the OS doesn't provide a mechanism to associate a file name with a certain program, there's nothing you can do.
    I don't know whether something like JDIC can help you - otherwise, you'd have to find the solution for each OS. What's inside the exec()'s parenthesisses is not a Java problem anymore.

  • How to open an excel file from labview?

    I tried to use "open file" vi from File I/O -- Advanced file functions to open an excel file in LabVIEW. Why the excel file wouldn't open after I run the program?

    In addition to ActiveX, you can also manipulate Excel data files using the Windows ADO interface - a technique that is more robust, faster and IMHO easier. Do a search on the forum as there have been several threads within the last week or so discussing this very thing.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How to deploy a war file from a different app server to the SAP one

    Hello,
    I hve recieved a war file from Tomcat that needs to be deployed on the SAP Java App server. As far as I know the SDM only allows to deploy ear files. How can I deploy this war to the app server?

    Hi Roy,
    in order to deploy the WAR file you have to wrap an EAR around it. I had the same problem.
    You can do this using Netweaver Developer studio.
    Perform the following steps:
    - Start NWDS
    - Create a New Enterprise Application Project
    - Create a New Web Module Project (name it like your war file => e.g. your war file is called myApp.war => call your Web Module myApp)
    - Edit the application.xml of your Enterprise App if necessary (description, Displayname etc.)
    - Link your Web Archive to your application archive (right Mouse click on Application Archive and from the Context Menu choose "Add Modules" => In the list choose your Web Module)
    => You can also perform a right mouse click on your web Module and from the context menu choose "Add to EAR Project" => In the list choose your Enterprise Application!
    - Build Web Archive (right mouse click on your Web Module and from the context menu choose "Build Web Archive" => This will create a war file that has the same name as your war file! => If you do not see it try to switch to resource perspective!)
    - Build Application archive (right mouse click on Application archive => from the context menu choose "Build Application Archive")
    You are done
    The EAR file is generated and will be created in your workspace.
    Now browse to your workspace. Unpack the EAR using WinZip or any other Archiver program.
    Replace the contained war with your war and repack the ear file (You can also use tools like Total Commander to directly replace the war file in the EAR with your war without having to unpack the war). You can also import your war into NWDS and rebuild it so you won't have to replace the WAR in the EAR but as your WAR is already built I would just replace it as described!
    You can now deploy the ear file to SAP J2EE
    Hope this helps (Reward points for helpful answers are appreciated!)
    Cheers

Maybe you are looking for

  • Need Help ::  Current row attribute value returning null

      Hi Frds, I am facing the problem that Current row attribute value returning null............ even though value is there..... plz.. he This is the code in PFR OAApplicationModule am = pageContext.getApplicationModule(webBean); if (pageContext.getPar

  • How can I enlarge my notes on the yellow notepad?

    How can I enlarge print on the yellow notepad?

  • Bringing my 27"iMac as carry-on luggage on plane

    Hello everyone!!!! I know that if you see this topic you think "whaaaaaaaat????!!??" But this is the problem: I'm moving from Italy to USA and I have to bring my 27" Imac with me . I know that a macbook would be easier to carry, but I bought the IMac

  • Creating interface objects in the IR

    I want to create a scenario in which I send a file from a Legacy system to the XI, process the message using the BPM and send it to SAP R/3. In the integration repository I have 3 software components (one for each system: legacy, SAP APPL, SAP BASIS)

  • Sort Hierarchy Alphabetically

    How can I sort a hierarchy alphabetically? The hierarchy structure is extracted from 3rd party source system and the records in same level sorted according to nodename. In the reports I can sort alphabetically according to text but when I create a Be