Drag & Drop to Hamon.ie in Outlook creates a new version instead of new document - drag-and-drop

When I drag & drop an attachment from an Outlook email to the Hamon.ie for Outlook window, I expect harmon.ie to add the document to the active library/folder.
But if I drop the document over an existing document in Hamon.ie, it creates a new version of that document instead of adding a new document. There is no indication of the Harmon.ie behaviour and it took some time before I figure out what was happening.
Is there an option that would make Harmon.ie ask if the user wants to add a new version to the existing document or create a new document.
If not, where should users drop the file when the file list is full of documents? Dropping in the header does not work. Do I have to tell my users to drop the document in the few white pixels at the bottom of the list?
Thanks.

You can find additional details about the "Add as new version" feature in harmon.ie User Guide under Uploading SharePoint Documents section(https://harmon.ie/documentation/sharepoint/outlook/uploading#replaceexisting) section.
As detailed in the user guide, following UI prompt occurs when using this feature
When uploading to a document library with versioning support: 1.Drag the document onto the document you want to overwrite and hold for 2 seconds. A tooltip displays: Add as a new version to .
The following registry key can be applied to deactivate this feature.
[HKEY_CURRENT_USER\Software\Mainsoft\Prefs\AddNewVersionDelay]
#="0"
Create AddNewVersionDelay key under HKEY_CURRENT_USER\Software\Mainsoft\Prefs and set its default value to 0 (zero).

Related

Automatically Update Page Numbers for Table of Contents in DOCX generated using OpenXML SDK

I have been able to successfully generate word document (.docx) using OpenXML SDK 2.5.
Can we directly update the page numbers in TOC of the generated document using OpenXML SDK
I found few similar queries on Stack overflow.
[https://stackoverflow.com/questions/28348550/how-to-generate-table-of-contents-using-openxml-sdk-2-5]
[https://stackoverflow.com/questions/9762684/how-to-generate-table-of-contents-using-openxml-sdk-2-0/]
One of the ways is to have users click yes to update the Table of Contents on a modal dialog when they open the document the first time. Is there a way to avoid this modal dialog and user intervention but still update page numbers on opening the document the first time?
Thanks,
Gagan
Since the page numbers can be different depending on how the opening application renders the document, i don't think that there is a way to do that by means of the OpenXml-SDK.
You can update fields/tocs using a macro or automation:
How to automatically update tables of contents

Drag and Drop in Office JS page to Word Document

I am creating an online office add-in for the Word application. I have created an HTML page with some fields like, Name, Address, Mobile etc.
On drag and drop of such a field I want to create a MergeField in Word Document.
I have done R&D regarding drag and drop but I am not able to find how to control a drop event outside of the container.
Is there any way to fulfill my requirement?
Due to browser limitations we don’t currently support drag and drop from the taskpane to the word surface.
But what many developers have implemented is a ‘+’ button to add items into the document, or other sorts of events like dbl click.

How can I include a clickable (hyperlinks) table of contents when generating documents in Enterprise Architect?

I have a data dictionary report in Enterprise Architect (same as in this question: How can I exclude a "report.specification" from a Report in Enterprise Architect?) and I would like a table of contents that is clickable (has links).
The current report does generate bookmarks, but if it is possible, I'd like to have a "live" Table of Contents in the output PDF.
This isn't possible in EA right now
Closest developper response I could get for this issue is this forum post:
I talked with Sparx on this topic as I had the same question.
Their response...
"The 3rd party add-in we use for generating these documents does not
support the TOC hyperlinking - so unfortunately the only alternative
is to open the document in another application like Open Office or
Word and simply right-click and update the TOC."
You can always open the Document in Word or Adobe Reader and use the Navigation Pane:
(Word 2013)
1. Click View on the ribbon
2. In the show Section, click Navigation Pane
(Acrobat Reader)
Use the Bookmarks Pane
Also, I find that when generated as a .rtf or .pdf report, the Table of Contents generates with the wrong Style, messing with the Navigation Pane.
Generating the Document in Word format solves this issue
Another Solution:
You can generate the report without the table of contents with Word, create the table of contents when generated and then export it to whatever format you need
Edit:
After some digging, I found that in Word, you can update the TOC and then ctrl+click the numbers to jump pages.
You cannot do this with a pdf

VSTO Word AddIn 2007/2010 Disable Editing, like document management systems do

Could you tell me please how it is possible to:
somehow disable editing an open document?
or get notified when the user is about to change the current document?
like some document management apps do: while the document is checked in they:
do not allow modifications to it or
when user tries to modify it he will be notified that the document is checked in so it should be checked out first
Set the document protection type to WdProtectionType.wdAllowOnlyReading which is similar to opening word document from Email, Internet or SharePoint portal.
When the use click the Edit anyway yellow bar in the top ProtectedViewWindowDeactivate Event will occur where you can raise an alert.

How to prevent a user from Editing Word document loaded in DsoFramer using C#4.0?

We are developing C#.net 4.0 Windows Forms based application.we are using Dsoframer control to embed the Word document into my Application.Here, i want to prevent the user to edit the document.I have already opened Word Document in READ Only Mode.But still user can able to edit the doucment.Anyway, the updated content is not refelected in the original Document.But i would also like to prevent the user to make such editing?
wordDoc.Protect(Microsoft.Office.Interop.Word.WdProtectionType.wdAllowOnlyReading);
This is do that...