Change 'Add A Place' header in Word

When using Word, a user can “Add a Place” for saving and opening documents for OneDrive or SharePoint; connecting to the Office 365 SharePoint location. By default, this location is set to the default SharePoint site collection (jcare.sharepoint.com)
and shows the following window when it opens:
Is there a way in which we can change the header (highlighted in red) for this dialog to display an icon, containing a link to another site collection? If so, where would we go to do this?
Best wishes, Colin

Hi Colin,
According to your description, you might want to customized the content of the “Open” dialog when using the “Add a place” feature in Word.
By default, the “Open” dialog can only display the certain types of content as what you have seen, there is no such OOTB feature in SharePoint, Office 365 or Office
desktop application can help to customize it as you wish.
What’s more, within the exposed APIs of SharePoint for developer, there is no related API for the “Open” dialog customization either.
Thus, I would suggest you submit a feedback to the Office Developer Platform if there any expectation about the future version of SharePoint or Office 365:
http://officespdev.uservoice.com/
If it is an urgent need, you can also open a ticket to Microsoft Support for a quick reply:
https://support.microsoft.com/
Thanks
Patrick Liang
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
contact [email protected]
Patrick Liang
TechNet Community Support

Similar Messages

  • Question about TextEdit. How do i add a custom header to a multipage document? For example, "Smith, page 2", "Smith, page 3', etc. I can do it in Microsoft Word, but cant figure out how in TextEdit.

    How do i add custom headers to a multipage document in TextEdit? i need to add a custom header in upper right of page, for example: "Smith, page 2", "Smith, page 3" etc.  The add header setting in Textedit file-print only adds date : time in upper right, with "Page 1 of 3" on bottom right.
    Thank you.

    It's just a text editor not a word processor.

  • Can't Place a specific Word 2010 docx into InDesign CS4

    I'm trying to use the Place command to bring the text from a specific Word 2010 docx into InDesign CS4.
    I've successfully brought in several Word 2010 documents (docx extention) to InDesign CS4 documents using the place command.
    I have one specific 30 page document (which is no loarger than others which have been successful), and when I use the place command with this file, nothing happens (and no text gets loaded onto the cursor for placement.
    I've tried re-saving the word doc, even pasted its contents into a new Word doc and still can't get the Place command to work.
    THere's nothing particularly unique about the file - doesn't have any odd embedded content, just a 30 page text document writtin in word.
    Any ideas what could be going wrong or how to fix it?
    I've tried restarting both Word and InDesign without any change (and the rest of my word files can be Placed without problem, so I imagine it's something specific to that file.
    NOTE - re-saving in RTF format lets the Place command work but leaves a bunch of empty squares/boxes (not sure if these were for tabs or empty spaces or what really??)
    Can work around this for now, but would like to know how to get the place command working with decent size Word Docs( docx for word 2010 if that matters).
    Thanks for any help.

    It turned out that for at least one particular document the OP had used some blank paragraphs as spacers at the start of the text, and that the style assigned to the second paragraph used a combination of left and right paragraph indents that was more than the width of the document page, sending the entire document (except for the empty first paragraph) into overset. I can't say for sure, but I think the Word styles might have been mapped to ID styles because I found no trace of the indents in the Word file itself, only in the ID document, and I had no trouble placing that Word file in my own ID test document. I did have some trouble placing another .docx file supplied by the OP in CS4, but not in later versions, and conversion to .doc solved that problem.

  • How can I get ExportPDF to not add hyphens when converting to Word?

    I am using the online service ExportPDF, at https://cloud.acrobat.com/exportpdf .It automatically adds hyphens in the resulting Word document for all words that were auto-hyphenated at line ends in the original PDF. How can I get it to convert these as whole words?
    I know that for example in InDesign there is a setting in the Preferences menu and changing it from Retain Flowing Text to Retain Page Layout should remove such extra hyphens upon exporting. But I don't find any such settings for the ExportPDF service online.
    It matters because I frequently need to cut and paste converted text from the Word documents into other documents with different formatting, and the hyphens, which are now hard characters, come out all wrong.
    Can anyone help with this?

    Hi liquidandrew,
    There is no setting in ExportPDF to change the output, other than choosing a language for OCR. ExportPDF does it's best to keep the converted document true to the original, so it sounds like it's maintaining the hyphens where they appear in the PDF. Could you do a quick find/replace in Word to remove the hyphens? However, you would run the risk of removing hyphens where you want them, such as in compound words.
    Best,
    Sara

  • How to add text vertically into a Word margin with C# (using namespace: Microsoft.Office.Interop.Word)

    I need to add text vertically in a word document outside the margins.  How can I do this with Microsoft.Office.Interop.Word and C#?
    Leonard Swarczinski Software Developer Postal Center International

    Hi Leonard,
    According to your description, do you want to add text vertically into Page Header/Footer? I wrote a sample  for you.
    using Microsoft.Office.Core;
    using Microsoft.Office.Interop.Word;
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    namespace AddTextToWord
    class Program
    static void Main(string[] args)
    CreateNewDocument();
    Console.ReadLine();
    private static void CreateNewDocument()
    Object oMissing = System.Reflection.Missing.Value;
    Microsoft.Office.Interop.Word.Application oWord;
    Microsoft.Office.Interop.Word.Document oDoc;
    oWord = new Microsoft.Office.Interop.Word.Application();
    oWord.Visible = true;
    oDoc = oWord.Documents.Add(ref oMissing, ref oMissing, ref oMissing, ref oMissing);
    String HeaderText = "Hello everyone!";
    WdParagraphAlignment wdAlign = WdParagraphAlignment.wdAlignParagraphCenter;
    AddHeader1(oWord, HeaderText, wdAlign);
    private static void AddHeader1(Application WordApp, string HeaderText, WdParagraphAlignment wdAlign)
    Object oMissing = System.Reflection.Missing.Value;
    WordApp.ActiveWindow.View.Type = WdViewType.wdOutlineView;
    WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekPrimaryHeader;
    Microsoft.Office.Interop.Word.Shape textBox = WordApp.ActiveDocument.Shapes.AddTextbox(MsoTextOrientation.msoTextOrientationVertical, 150, 10, 40, 40);
    textBox.TextFrame.TextRange.Text = HeaderText;
    WordApp.ActiveWindow.View.SeekView = WdSeekView.wdSeekMainDocument;
    If I misunderstood or anything wrong, please let me know and you can get more information from below articles.
    Office development in Visual Studio
    http://msdn.microsoft.com/en-us/office/hh133430.aspx
    Abhout: AddTextbox Method
    http://msdn.microsoft.com/en-us/library/office/aa171543(v=office.11).aspx
    How to: Programmatically Insert Text into Word Documents
    http://msdn.microsoft.com/en-us/library/vstudio/6b9478cs.aspx

  • Can you please tell me what to do when I change a file from PDF to word and it comes up with headers

    Can you you please tell me what to do when I change a file from PDF to word and it comes up with headers and footers. I do not want the headers and footers but I need the information so that changes can be made in them  - There are over 80 pages in this document and every page had a header and footer. The document did not have any headers and footers when it was first typed out.

    Good day,
    Try converting the document to a .doc format instead of .docx. 
    If that doesn't resolve the issue, please share the file with us via the File Conversion Issue form.  Be sure to reference this forum thread in your description so we can circle back on the issue.
    Kind regards,
    David
    Adobe Systems

  • Cannot add parameter or header to post request URL in Data/Services

    I'm trying to set up Data/Services in flash builder to connect to a RESTful API and as per usual Flash Builder attempts to scupper my efforts with it 'nearly but not quite' tools at every turn.
    So I need to pass a POST request with a JSON string containing auth details to the URL:
    https://myrestservice.com/rest/session/
    For authentication to work I also need to add either:
    A: an additional header containing: api_key = *my-api-key*
    or
    B: append the api key to the URL so: https://myrestservice.com/rest/session/?api_key=*my-api-key*
    Simple right? Wrong. In the data/services tool for a custom http service there seems to be no way to add a custom header. Ok annoying as even a free chrome plugin can do this but hey I can live with that, I'll use option B. Wrong again. The URL field in Data/Services will ignore the query on the end of the URL. Seriously WTF. Am I missing something here?
    So if I amend the auto-generated code in the super class and call it directly it works but if I try to take advantage of any of the tools the code is regenerated and overwrites my changes. Test Operation never works either.
    I know there is a second class which is supposed to be used to extended and override the super class but only certain overrides seem to work so for example:
    This works:
    ._serviceControl.baseurl = ("https://someotherurl.com")
    This doesn't work:
    ._serviceControl.headers = ({"api_key = *my-api-key*"})
    Oh and Test operation only seems to execute the super class. Once again a brick wall.
    Working with flash builder seems to be 50pc coding 50pc deciding if it's a bug in your code or flash builder f*****g you over.
    Any thoughts, workarounds, am I missing something would be much appreciated.
    Thanks

    Shameless bump here!
    So nobody has had this issue before?

  • How to place header and footer  in OO-ALV program using class

    How to place header and footer  in OO-ALV program using class tell me wat r the class we shold use and their attributes as well

    Hi Venkatesh,
    Take a look at this how to [ABAP Objects - ALV Model - Using Header and Footer|https://wiki.sdn.sap.com/wiki/x/xdw]
    it's explaining how to define the classes and use it for display an ALV with Header and Footer.
    Regards,
    Marcelo Ramos

  • I recently had to reinstall my Creative Suite 4 Design Premium and since then, I am not able to place a MS Word program. I also cannot enter text in PhotoShoip.

    I recently had a hard drive crash. I replaced the C: drive with a solid state and now have 3 internal HDs. C: for the OS (Windows 7), D: for data and P: for program installation. Because I replaced the C: drive, I had to re-install all my programs. Now, PhotoShop will not let me place text, inserting the text tool causes the program to stop responding. In InDesign, if I try to place a MS Word document, it acts as if I never did that action and I can't get it placed.
    I can copy and paste, but doing so makes the formatting get left behind. I suspect it may not have installed correctly. I've used Adobe products since 1991 and never had this happen before. I even used Aldus PageMaker before the Suites were available. Can anyone help? Is it a reinstallation issue?
    I use PhotoTools from OnOne and if I uninstall it to reinstall CS4, I'm afraid it will no longer honor my product key.

    How much free space is on the C: drive?

  • I have Microsoft Word for my MacBook Pro.  How do I add a pdf to a word document, I have Microsoft Word for my MacBook Pro.  How do I add a pdf to a word document

    I have Microsoft Word for my MacBook Pro.  How do I add a pdf to a word document, I have Microsoft Word for my MacBook Pro.  How do I add a pdf to a word document

    What do you want to do specifically.  They are two different document formats - one is PDF, the other DOC or DOCX.  In what way do you wish to "add" ad PDF to a word document. You can embed a mini version within a document (copy it and paste it from within the x.doc) but that's a pretty hokey looking solution.
    Oh, its mostly irrelevant if its office 2004,8 or 11 - they all do this more or less the same way.
    G

  • EXIT to change / add line items during STO PO creation in T.Code ME21N

    Hi
    Can somebody suggest me a EXIT or a BADI  to change / add line items during STO PO creation in T.Code ME21N.
    The requirement is as below.
    When the user enters a material no ( which has a BOM created in CS01), and presses enter or saves the PO, i need to get the sub components of the BOM and populate them as the next line items.
    This is because the user needs to create the delivery with reference to the PO. In the delivery, the BOM material needs to be populated with all the sub components of the BOM.
    I tried to do it using EXIT_SAPMM06E_013 in which i am able to change / add the line items in the XEKPO and YEKPO internal tables. The entries are available in the internal table when the EXIT is executed.
    But when the PO is posted internally, the item is not changed/added.
    Thanks in advance.
    Guna.

    Hi,
    Try BADI "ME_PROCESS_PO_CUST".
    cheers,

  • The name of my hard drive has changed on strange letters or some words chosen by random.

    I have iMac (2011) with OS X Lion 10.7.4, and I noticed that name of my hard drive has been changing on strange letters or some words chosen by random. It's quite strange. I have other apple computers and I have never experienced such things. I can't find any logical explanation of this "activity". Sometimes it happens after sleeping mode, sometimes there is no activity from my side or from OS. How to fix it? What should I do?
    Update: I don't have any cats or other animals that can walk on my keyboard. This is definitely not because of "accidentally pressed an icon of my HD and then pressed some keys" issue.
    Message was edited by: Guzzz

    Gremlins.

  • Unable to add custom SOAP header to consumer webservice in CRM( without using PI)

    Hello Experts,
    We have a requirement to consume webservice proxy in CRM without involving PI. We have WSDL file which has many services as depicted in the first screenshot.After checking old posts, I could add custom SOAP header by using if_wsprotocol_ws_header and there is no xml parsing error for ws_header.Have used if_ixml_stream_factory to check xml parsing error for header.
    '<soapenv:Header>'
    '<wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">'
    '<wsse:UsernameToken wsu:Id="UsernameToken-2">'
                '<wsse:Username>user id</wsse:Username>'
                '<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">paswd</wsse:Password>'
                '<wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">MT0B9XFzsZJXXKmVKOsj/Q==</wsse:Nonce>'
                '<wsu:Created>2015-03-30T06:29:17.407Z</wsu:Created>'
    '</wsse:UsernameToken>'
    '</wsse:Security>'
    '</soapenv:Header>' INTO l_string.
    But when my ABAP program as a whole gets executed where consumer proxy is called, then it still throws XML parsing error - undeclared namespace prefix. As mentioned, there is no parsing error for header and WSDL file as a whole in SOAP UI tool works fine,by manually adding SOAP header.
    Have configured SOAMANAGER with logical port.Or any wrong setting in SOAMANAGER can cause this issue? When I tested webservice ping, it gave me attached error but I read in a SAP note that such error can be ignored.
    I want to know if some more setting/coding is required if we manually add custom header to a payload? Is PI really required to implement this requirement? Payload mapping has to be done to add custom header and if that can be taken care by ABAP coding and how?
    Can you please help?
    BR,
    Nisha Verma

    Hello Experts,
    I have not found the solution yet.
    Can anyone provide some insight??
    BR,
    Nisha Verma

  • The numbering format keeps changing when making PDF's from Word 2007 ? Using Acrobat 9 Pro Extended

    The numbering in (Contents) format keeps changing when making PDF's from Word 2007 ? Using Acrobat 9 Pro Extended.

    The issue is that I have made up a contract in Word.
    The second page has a list of all contents of the contract.
    gghhjhhbhbhhbhbjbhj....1
    bv v vghvjvjnnnnnnnnn....2
    When we convert to PDF some of the numbers change. Example 20 becomes 201.
    Your help is appreciated.
    Cheers Ocean designs.

  • Add Ins tab disappears in Word 2007

    Hi -
    I installed Tutor 14 and I am having problem with the Add In.
    I am using Word 2007 - and when I create a new Tutor document, I can see the Add In tab at first. But as soon as I update the Document Properties, the Add In tab disappears.
    What is the issue with this, can anyone help? The OS is XP.
    Thanks.

    It may be a corrupt normal.dotm.
    Try deleting it.
    Close Word, find where normal.dot resides (should be in the same folder as Author.dot) and delete normal.dotm
    A new one will regenerate next time you open Word.
    Another cause could be other product's dot files that are installed to the Word start up folder.
    These may over-ride the Author.dot
    Examples are the snagit.dot, palm.dot, etc.
    Remove these from Word's startup folder and see if the behavior persisits.
    Kind regards,
    Emily

Maybe you are looking for