Download presentation
Presentation is loading. Please wait.
Published byDiane Saffell Modified over 10 years ago
3
What are Access Web App Microsoft Access What are Apps for Office Access Apps for Office Value of Apps for Office Apps for Office How it all works Creating an App for Office with Visual Studio 2013 APIs, Publishing, Resources Technical Details
6
Add-ins of functionality for some Office programs (Word, Excel, Outlook, …) Placed within the document or in the task pane Can use web connectivity Apps for Office Fully functioning apps that run on the web within SharePoint Hosted on SharePoint sites in the cloud Access web apps are SharePoint Apps Apps for SharePoint S
17
ApplicationSupported types Excel 2013 Task pane Content Excel Web App Content Word 2013 Task pane Outlook 2013 Mail Outlook Web App Mail Project Professional 2013 Task pane Supported app types
38
var sampleDataTable = new Office.TableData(); sampleDataTable.headers = [["From Address","To Address", "Distance Field"]]; sampleDataTable.rows = [ ["White House", "Seattle", "2716.2"], ["Houston","Dallas","293.3"], ["400 Broad St., Seattle, WA", "1 Microsoft Way, Redmond WA", "13.3"]]; Office.context.document.bindings.addFromPromptAsync(Office.BindingType.Table, { id: BindingName, sampleData: sampleDataTable }, BindingHandler); function BindingHandler(bindingCallback) { if (bindingCallback.status == Office.AsyncResultStatus.Succeeded) { //Binding has been created successfully }
44
function SetDistance(MilesTraveled) { Office.select("bindings#" + BindingName).setDataAsync([[MilesTraveled]], { rows: "thisRow", columns: [PostField] },SetDataHandler); } function SetDataHandler(callback) { //Set Data Callback }
59
Having a friend buy your coffee? Yea, its kind of like that. MSDN Subscribers get up to $150/mo in Azure credits. Stop by the Developer Platform and Tools booth and visit the MSDN Subscriptions station to activate your benefits and receive a gift! http://aka.ms/msdn_teched 3 Steps to New Gear! With Application Insights
60
Microsoft Engineering Stories Visual Studio Industry Partner Program Visual Studio | Integrate http://www.visualstudio.com
63
Contact: Gary Devendorf Access PM Gary.Devendorf@Microsoft.com
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.