How to Launch Excel File from a Windows Phone 8 App ?

If you have a excel file within your application , you can launch the file and open it in Microsoft excel from a Windows Phone App using the Launcher.LaunchFileAsync method.

How to Launch Excel File from a Windows Phone 8 App ?

Below is a code snippet demonstrating how to launch the excel file from a Windows Phone 8 App.

var excelfile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("Ginktage.xls");
Windows.System.Launcher.LaunchFileAsync(excelfile);

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you’ll learn about the Win32 Error “0x000019E5 – ERROR_COULD_NOT_RESIZE_LOG” that you get when debugging system erors in...
In this post, you’ll learn about the error “CO_E_DBERROR 0x8004E02B” that is returned when working with COM based APIs or...
In this post, you’ll learn about the Win32 Error “0x000019D0 – ERROR_LOG_BLOCK_VERSION” that you get when debugging system erors in...