Skip to content

Commit c00adbb

Browse files
authored
Merge pull request #569 from MicrosoftDocs/ghogen-coauth
Add coauthoring doc from Excel team
2 parents 7733ebf + 860c6b2 commit c00adbb

File tree

5 files changed

+63
-1
lines changed

5 files changed

+63
-1
lines changed

docs/vsto/TOC.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@
145145
###### [How to: Map Schemas to Word Documents Inside Visual Studio](how-to-map-schemas-to-word-documents-inside-visual-studio.md)
146146
###### [How to: Map Schemas to Worksheets Inside Visual Studio](how-to-map-schemas-to-worksheets-inside-visual-studio.md)
147147
##### [Using Local Database Files in Office Solutions Overview](using-local-database-files-in-office-solutions-overview.md)
148+
#### [How AutoSave Impacts Office Solutions](how-autosave-impacts-office-solutions.md)
148149
#### [Troubleshooting Office Solutions](troubleshooting-office-solutions.md)
149150
##### [Troubleshooting Errors in Office Solutions](troubleshooting-errors-in-office-solutions.md)
150151
##### [How to: Re-enable a VSTO Add-in That Has Been Disabled](how-to-re-enable-a-vsto-add-in-that-has-been-disabled.md)
@@ -208,6 +209,7 @@
208209
##### [How to: Map ListObject Columns to Data](how-to-map-listobject-columns-to-data.md)
209210
##### [How to: Fill ListObject Controls with Data](how-to-fill-listobject-controls-with-data.md)
210211
##### [Walkthrough: Programming Against Events of a NamedRange Control](walkthrough-programming-against-events-of-a-namedrange-control.md)
212+
#### [Understanding Coauthoring and Add-Ins](understanding-coauthoring-and-addins.md)
211213
#### [Globalization and Localization of Excel Solutions](globalization-and-localization-of-excel-solutions.md)
212214
#### [Using Windows Forms Controls on Excel Worksheets](using-windows-forms-controls-on-excel-worksheets.md)
213215
#### [Walkthrough: Creating Your First Document-Level Customization for Excel](walkthrough-creating-your-first-document-level-customization-for-excel.md)

docs/vsto/developing-office-solutions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ manager: "ghogen"
5555
|[Programming Document-Level Customizations](../vsto/programming-document-level-customizations.md)|Provides an overview of the programming model of document-level customizations and related programming tasks.|
5656
|[Office UI Customization](../vsto/office-ui-customization.md)|Describes the different ways that you can customize the UI of Office applications by using VSTO Add-ins and document-level customizations.|
5757
|[Data in Office Solutions](../vsto/data-in-office-solutions.md)|Describes the different ways that you can work with data in Office solutions, such as binding data to controls and caching data in document-level customizations.|
58+
|[How AutoSave Impacts Office Solutions](./how-autosave-impacts-office-solutions.md)|Describes adjustments you might need to make to Office Solutions when AutoSave is enabled.|
5859
|[Troubleshooting Office Solutions](../vsto/troubleshooting-office-solutions.md)|Provides tips for solving common problems that you might encounter when creating Office solutions.|
5960
|[Threading Support in Office](../vsto/threading-support-in-office.md)|Provides an overview of working with multiple threads in Office solutions.|
6061
|[Accessibility in Office Projects](../vsto/accessibility-in-office-projects.md)|Describes the accessibility features that are available in Office solutions.|

docs/vsto/excel-solutions.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,8 @@ manager: "ghogen"
119119
|[Windows Forms Controls on Office Documents Overview](../vsto/windows-forms-controls-on-office-documents-overview.md)|Describes how you can add Windows Forms controls to Excel worksheets.|
120120
|[Walkthrough: Creating Your First Document-Level Customization for Excel](../vsto/walkthrough-creating-your-first-document-level-customization-for-excel.md)|Demonstrates how to create a basic document-level customization for Excel.|
121121
|[Walkthrough: Creating Your First VSTO Add-in for Excel](../vsto/walkthrough-creating-your-first-vsto-add-in-for-excel.md)|Demonstrates how to create a basic VSTO Add-in for Excel.|
122-
|[Walkthrough: Adding Controls to a Worksheet at Run Time in VSTO add-in Project](../vsto/walkthrough-adding-controls-to-a-worksheet-at-run-time-in-vsto-add-in-project.md)|Demonstrates how to add a Windows Forms button, a <xref:Microsoft.Office.Tools.Excel.NamedRange>, and a <xref:Microsoft.Office.Tools.Excel.ListObject> to a worksheet at run time by using a VSTO Add-in.|
122+
|[Walkthrough: Adding Controls to a Worksheet at Run Time in VSTO add-in Project](../vsto/walkthrough-adding-controls-to-a-worksheet-at-run-time-in-vsto-add-in-project.md)|Demonstrates how to add a Windows Forms button, a <xref:Microsoft.Office.Tools.Excel.NamedRange>, and a <xref:Microsoft.Office.Tools.Excel.ListObject> to a worksheet at run time by using a VSTO Add-in.|
123+
|[Understanding Coauthoring and Add-Ins](./understanding-coauthoring-and-addins.md)|Describes adjustments you might need to make to your solutions to accommodate coauthoring.|
123124
|[Excel 2010 in Office Development](http://go.microsoft.com/fwlink/?LinkId=199011)|Provides links to articles and reference documentation about developing Excel solutions. These are not specific to Office development using Visual Studio.|
124125

125126

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: "How AutoSave Impacts Office Solutions | Microsoft Docs"
3+
ms.custom: ""
4+
ms.date: "07/20/2017"
5+
ms.prod: "visual-studio-dev15"
6+
ms.reviewer: ""
7+
ms.suite: ""
8+
ms.technology:
9+
- "office-development"
10+
ms.tgt_pltfrm: ""
11+
ms.topic: "article"
12+
dev_langs:
13+
- "VB"
14+
- "CSharp"
15+
helpviewer_keywords:
16+
- "autosave"
17+
ms.assetid: b60bb228-0e72-4f24-88bb-397dfc5d50a7
18+
author: "ghogen"
19+
ms.author: "ghogen"
20+
manager: "ghogen"
21+
---
22+
# How AutoSave Impacts Office Solutions
23+
24+
AutoSave is a feature for Excel, PowerPoint and Word that, when turned on, enables the user’s edits to be saved automatically and continuously. If AutoSave is turned off, then save must be triggered manually for the user's changes to be persisted. With the addition of this feature, you may need to make adjustments to your Office solution in order to ensure that it works smoothly even while AutoSave is on. For details, see [How AutoSave impacts add-ins and macros](https://msdn.microsoft.com/vba/office-shared-vba/articles/how-autosave-impacts-addins-and-macros). For more information about AutoSave in general, see [What is AutoSave?](https://support.office.com/en-US/article/What-is-AutoSave-6d6bd723-ebfd-4e40-b5f6-ae6e8088f7a5).
25+
26+
Note: AutoSave for Windows Desktop Word, Excel and PowerPoint was introduced in 2017 and is currently available for Office365 subscribers. Users who purchased a perpetual license to Office 2016 or earlier do not currently have access to the coauthoring feature. (Excel Online, Excel for Android, Excel for iOS, and Excel Mobile in the Windows Store also support AutoSave).
27+
28+
## See Also
29+
[Developing Office Solutions](./developing-office-solutions.md)
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: "Understanding Coauthoring and Add-Ins | Microsoft Docs"
3+
ms.custom: ""
4+
ms.date: "07/20/2017"
5+
ms.prod: "visual-studio-dev15"
6+
ms.reviewer: ""
7+
ms.suite: ""
8+
ms.technology:
9+
- "office-development"
10+
ms.tgt_pltfrm: ""
11+
ms.topic: "article"
12+
dev_langs:
13+
- "VB"
14+
- "CSharp"
15+
helpviewer_keywords:
16+
- "coauthoring, in Excel"
17+
ms.assetid: a9479a52-54e5-421c-9a89-69607153bf6b
18+
author: "ghogen"
19+
ms.author: "ghogen"
20+
manager: "ghogen"
21+
---
22+
# Understanding Coauthoring and Add-Ins
23+
24+
Coauthoring is a feature of Excel for Windows desktop that allows you to edit a workbook hosted in the cloud (that is, OneDrive, OneDrive for Business, or SharePoint Online) simultaneously with other users. With the addition of this feature, you may need to make adjustments to your Excel Solution in order to ensure that it works smoothly even while users are coauthoring. See [About Coauthoring in Excel](https://msdn.microsoft.com/vba/excel-vba/articles/about-coauthoring-in-excel).
25+
26+
Note: Coauthoring for Windows Desktop Excel was introduced in 2017 and is currently available for Office365 subscribers. Users who purchased a perpetual license to Office 2016 or earlier do not currently have access to the coauthoring feature. (Excel Online, Excel for Android, Excel for iOS, and Excel Mobile in the Windows Store also support coauthoring).
27+
28+
## See Also
29+
[Excel Solutions](./excel-solutions.md)

0 commit comments

Comments
 (0)