Converting Word Templates from 2003 to 2013 Version

Hello.  I work at a school environment and most of our secretaries had been running Office 2003.  They have a lot of Word templates.  Recently, as we have decided to upgrade Office to 2013, we have the problem of hundreds of old templates
that need to be converted over to the 2013 version.
Is there a quick and efficient way to do this?  Instead of manual converting each file, one by one.
Thanks in advance!

In addition to the answer of Edward I would add the following line of code:
Sub Convert2003To2013()
' Convert2003To2013 Macro
Application.ScreenUpdating = False
Dim strFolder As String, strFile As String, wdDoc As Document
strFolder = "D:\Sample\OfficeDev\Word\OldFolder"
If strFolder = "" Then Exit Sub
strFile = Dir(strFolder & "\*.doc", vbNormal)
While strFile <> ""
If InStrRev(strFile, ".docx") = 0 Then
Set wdDoc = Documents.Open(FileName:=strFolder & "\" & strFile, _
AddToRecentFiles:=False, Visible:=False)
wdDoc.Convert
wdDoc.SaveAs2 FileName:=strFolder & "\" & Left(strFile, InStrRev(strFile, ".doc")) & "docx", _
Fileformat:=wdFormatXMLDocument, AddToRecentFiles:=False
wdDoc.Close SaveChanges:=False
End If
strFile = Dir()
Wend
Set wdDoc = Nothing
Application.ScreenUpdating = True
End Sub
I added the wdDoc.Convert because otherwise you are not explicitly converting documents but only renaming them to .docx
The additional functionality of Office 2013 comes available when the document is actually converted. You can test this by opening the document after het has been really converted, you should be able to see the SmartArt options. If you only rename them to
.docx you will see that the 'new' smart art functionality is not available.
Doesn't mean that the provided code block by Edward doesn't work, it does a great job. My advice would be to add the convert line if you really want 'converted' files.
Last thing you have to think about is these code snippets use SaveAs2, that means that you will get two instances of your document. If you choose convert you are actually converting the original document. In that case you do not choose SaveAs2
but you use Save.
Maurice
When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer. Thank You

Similar Messages

  • How to edit a converted Word Document from a PDF file

    how to edit a converted Word Document from a PDF file

    Hi Edit Converted Word Doc,
    What's happening when you try to edit the file? Have you tried triple-clicking in the text block that you want to edit?
    Please let us know what sort of trouble you're running into. It would also be helpful to know how the PDF file was created, and what version of Word you're using.
    Best,
    Sara

  • Making Word template from DW code

    I know, I know, Office products are evil but bare with me. I work in a corporate setting and the CEO has asked that I create Word templates from the html email templates that I created for internal communications. The idea from the begining was that each support group would communicate to the internal masses via a custom email format (attached) instead of simply shooting out a standard email. The problem is, I have become the guy who has to format everyone's email since they can't code. I have better things to do.
    My question:
    In an effort to make this process as easy as composing an email, we thought about putting the html frame work into Word as a template and keep the main content area open for modification from the various users. How do i do this? I figure it can be done somehow since most of the junk email i get these days has some reference to MS Word within its code.
    Can anyone provide any direction?
    Thanks.
    David

    The best thing to do in your case is save the HTML in DW and then open the document in Word.  Word can open and edit .html documents with minor issues (if you send emails to Outlook 2007 you are aware of the quirks, if not --> http://msdn.microsoft.com/en-us/library/aa338200.aspx , read that article and get the DW plugin to validate pages).
    Then just save the document as a .dotx (if you have 2007 this is better because file sizes are smaller and there are more options available to an end-user).
    After that you should be set to go.

  • Converting commercial template from PNG

    Hello
    I bought a CD with a bunch of web site templates in PNG
    format. The readme says I have to use photoshop to convert them
    into HTML before I import them. Is that to make all the text and
    pictures editable...I would assume so?
    Anyway, I don't have Photoshop; and Paint Shop Pro, which I
    do have, cannot convert them to HTML (unless you know otherwise??).
    So, does anyone know of any software prefereably freeware or
    shareware or try-before-you-buy that would do the conversion
    please?
    Thanks
    Phil

    > give up the
    > idea of importing these pre-made templates from CDs.
    The idea you should give up is the one of being able to use
    some "wizard" to
    magically transform the image into a web page (having said
    that, I now
    remember a program called SiteGrinder that does a much better
    job than any
    graphics editor wizard, but it is commercial - Google to find
    it).
    > I also should probably have said that I have MX 2004,
    not rev 8. IIRC
    > Trent,
    > MX will not allow me to plow through the FTP window when
    I am setting up
    > the
    > site because it will not light up the Next button until
    there are entries
    > in
    > all fields.
    I think you are mistaken, but if you switch to the advanced
    tab, I can
    guarantee you that you can define a site with nothing in the
    Remote
    Category.
    > I need something a bit more exciting than that
    Go here -
    http://dreamweaverresources.com/
    > ideally I'd love some Flash
    Candidly, no, you wouldn't.
    > if there is some way I can upload them here
    What most folks here do is to upload images to some webspace
    that they have
    access to and post links to the pages.
    But try that dreamweaverresources site for some really lovely
    templates -
    and they are the REAL THING.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "zzypt" <[email protected]> wrote in message
    news:[email protected]...
    > Hi
    >
    > Thank you for your posts. I can understand what you say
    about how each
    > element
    > in the design would become a jumble of editable items. I
    suppose that is
    > the
    > appeal of using this kind of template: they look better
    than I could
    > create,
    > and I thought just editing the text in the space would
    do just fine.
    >
    > However, if I am going to ask for advice in the forum, I
    have to be
    > prepared
    > to give up some preconceptions, so I will do what you
    suggest and give up
    > the
    > idea of importing these pre-made templates from CDs.
    >
    > I also should probably have said that I have MX 2004,
    not rev 8. IIRC
    > Trent,
    > MX will not allow me to plow through the FTP window when
    I am setting up
    > the
    > site because it will not light up the Next button until
    there are entries
    > in
    > all fields. However, I will go sign up for a host in a
    minute so...ok.
    >
    > The appeal of the pre-made templates was not so much in
    the text but in
    > the
    > headers. I really don't want something that is just a
    solid, colored
    > rectangle
    > with my name in it using Ariel font. I need something a
    bit more exciting
    > than
    > that (ideally I'd love some Flash; would I be correct in
    assuming that I
    > could
    > search for "Flash snippets" or something similar and
    find examples that
    > guys
    > have already created and just import them??).
    >
    > I'd be happy to show you some examples of (static)
    templates that I
    > thought
    > would be visually pleasing if there is some way I can
    upload them here.
    > Then
    > maybe you could help me understand how I could create
    something similar
    > from
    > scratch. The thing that they all have in common is that
    they have no
    > rectangular blocks for the heading; they all have some
    sort of curved or
    > swept
    > borders. As the files are all PNGs I don't have any way
    of cropping out
    > the
    > image and deleting any text that would have to come out
    with it. In fact,
    > I
    > would think that anything I might want to use for a
    banner that I could
    > import
    > would have text in it. Perhaps you know of a repository
    of text-free
    > graphics
    > or backgrounds suitable for web sites please?
    >
    > Anyone who would be interested in looking at this site
    would definitely
    > have
    > Acrobat and Word loaded on their machine. So that's not
    an issue,
    > fortunately.
    >
    > Thanks
    > Phil
    >

  • Links to Word template from Reader X

    I have setup pdf document with links to Microsoft Word templates. They were working correctly in Reader 9 and they are working correctly when opened from Acrobat X Professional but when I open pdf file in Reader X the do not work. In Acrobat Pro clicking on link opens window which shows the name of the template i.e. sample.net. In Reader X it is showing the path to Winword.exe. Template is opened but macros are blocked. Can I modify some settings of the Reader X to have it working properly as it does in Acrobat Pro ?
    Thanks for help.
    Tony

    If it worked before but doesn't work after you "upgraded" then, you upgraded the wrong thing.
    You "may" have had Adobe Acrobat before but now you have Adobe Reader which cannot do what you want.
    Look around in your program files. Reader should not have removed Acrobat if that's indeed what you were using.

  • Word Templates from WebFolders

    A user reports:
    If you try to open a template (Word) from iFS web folder it says that the template doesn't exist.
    Any way to correct this?
    Thanks,
    Scott

    Scott--
    We've reproduced this problem here and logged it as a bug (#1910909). We don't currently have a workaround, but we are working on the issue.

  • How to restore word template from a document library

    Is there any possibilty to find the template directly in the file system? I have an older version of the file system, so if I would know the place where the templates would be saved, I will be able to get this template back.

    Document templates are stored in the default site resource location http://Server Name/Site/Document Library Name /Forms/Content Type Name/ or a resource list of library set up specifically the for document templates. The URL can be relative
    to a location on the site or the resource folder. For example, a URL relative to the site would be <Server Name>/Site/Library Name/Forms/Docname.doc, and a URL relative to the resource folder would be simply Docname.doc.
    Ref : https://support.office.com/en-us/article/Create-and-edit-content-types-3d5d45af-608d-4183-8d51-073095fe0312
    Regards, Khalil Kothia, PMP Blog : http://khalil-kothia.com Site : http://StayGreenAcademy.com/

  • Problem converting Word Documents into pdf

    Hi Folks - and Happy New Year to You!
    I'm using version Adobe 7.0. 
    I written an e-book and can't get the darn thing to convert into a pdf file. Sometimes it works -- sometimes it doesn't. 
    I suspect the problem is with my many embedded graphics. I have created Microsoft Powerpoint slides, and have cut and pasted them into my ebook as objects inserted between the paragraphs of text. 
    When converting from the "Convert to Adobe PDF" button in my Word Toolbar, it gets all the way through and finally has an error at the end saying: "an error occured while creating a temporary file; Word was unable to write some of the embedded objects due to insufficient memory or disk space" 
    I have Adobe set with a password to protect copying, and the Word file size is around 1Mb. 
    My computer is only a year old, and I have 23 Gb of free space. 
    I'm using Windows Professional XP and Word 2002 
    Please reply asap or email me on [email address deleted by host] 
    You Have My Best Regards 
    Dave

    Hi,
    I have tried to get this right for a few days now Finally found some info at
    http://kb.adobe.com/selfservice/viewContent.do?externalId=330729
    See point 2 below.
    Creating PDF files by using PDFMaker
    You can convert Word files from within either Word or Acrobat. Because both applications use PDFMaker, you can achieve the same results in either application.
    To create a PDF file from within Word:
    1. Exit from all applications except Word to minimize processing time. To further minimize processing time, complete the following:
    -- If the document contains several fonts, either reduce the number of fonts or replace TrueType fonts with Type 1 fonts.
    -- If the document contains large or complex tables, reduce the number of columns and rows.
    2. If the document contains hyperlinks, make sure that the page margins are .8 inch or larger.
    3. To add features such as font embedding and compression to your PDF file, choose Adobe PDF > Change Conversion Settings. (To create customized job options settings with these features, edit the conversion settings. For more information, see "Editing the PDFMaker Conversion Settings" in the Acrobat Help.)
    Isn't it totally obvious to anyone that the margins have to be at least 0.8 inches for hyperlinks to work.....
    I made a new page format slightly larger and increased the margins. After making the PDF file i trimmed it in Adobe. Worked like a dream...
    Roger
    Roger

  • Message "error #1 converting file message="(20)word(ver.xp)could not be found" when converting Word

    I have users who can't convert Microsoft Word 2000 documents in Designer 7.0. 1 user is using a Dell Optiplex GX260 running Windows 2000 SP4, P4 1.8 Ghz, 512 MB RAM. Another user is working on a Dell Latitude D610 also running Windows 2000 SP4, Pentium M 1.73 Ghz, 512 MB RAM. Both of these users have Adobe Acrobat 7.0 Professional, I have applied the 7.0.5 patch. Both users have Microsoft Office 2000 SP-3. Any Ideas???

    Well, as mentioned in the Designer Help you can convert Word files from Word XP and Word 2003, it doesn't mention Word 2000, so that is probably the problem (unsupported format).
    If Acrobat is installed on the machines you can probably export out to a PDF from Word and then import that PDF into Designer as an alternative work flow. Though, off the top of my head I'm not sure if that is supported in Word 2000 either, but could be worth a try.
    Chris
    Adobe Enterprise Developer Support

  • MS word templates free text referenced gets cut

    Hello Experts,
    CRM 5.0
    We have a scenario where we have implemented a custom BADI to add attributes in the list of fields that can be pulled into MS word templates from an order object in CRM. Some of the free text areas are also being referenced in the MS word templates. However only the first 128 characters from the free text area get pulled into the MS word template. The BADI does not seem to put this limit as in debugging, we can see all the text being referenced but on the front end only 128 characters flow through. Can someone please suggest a solution around this?
    Thanks & regards
    Ritwik Sharma

    BackInBlack wrote:
    >
    > The problem arises when I try to display the content on
    that field on some
    > display templates. The formatting is lost and there are
    several characters that
    > get replaced by ~ as well as little square boxes that
    are a special character
    > that I can't identify.
    >
    > Is there anything anyone can suggest on how to approach
    this problem? is it a
    > coldfusion administrator issue, a server setup issue,
    does word have to be
    > installed on the server that the applications run? is it
    a setting in SQl
    > server. I was hoping someone has had a similar problem
    and can point me in the
    > right direction.
    It is a character encoding issue. This is a big topic, but
    there is
    plenty written up about it. You probably want to configure
    your
    application use use window-1252 or unicode encoding format.
    You will
    want to make sure the entire system running the application
    is talking
    the same encoding, database web server and ColdFusion.

  • Converting Word Documents, PDF, Powerpoint to BLOB types using HTTP DB

    I designed a knowledge base using httpdb and it's working out well. It's great finally have our documentation contained in an Oracle database as opposed to Windows folders Word dcouments. The only issue is that some of our word documents contain images along with text. When I cut and paste the content into the text area field/CLOB the images do not paste. I also tried this using text with HTML and got closer but image did not appear after pasting into the text html field. Is there a way to cut and paste word doc content and images into an http db application ?
    Thank you

    Hi,
    I have tried to get this right for a few days now Finally found some info at
    http://kb.adobe.com/selfservice/viewContent.do?externalId=330729
    See point 2 below.
    Creating PDF files by using PDFMaker
    You can convert Word files from within either Word or Acrobat. Because both applications use PDFMaker, you can achieve the same results in either application.
    To create a PDF file from within Word:
    1. Exit from all applications except Word to minimize processing time. To further minimize processing time, complete the following:
    -- If the document contains several fonts, either reduce the number of fonts or replace TrueType fonts with Type 1 fonts.
    -- If the document contains large or complex tables, reduce the number of columns and rows.
    2. If the document contains hyperlinks, make sure that the page margins are .8 inch or larger.
    3. To add features such as font embedding and compression to your PDF file, choose Adobe PDF > Change Conversion Settings. (To create customized job options settings with these features, edit the conversion settings. For more information, see "Editing the PDFMaker Conversion Settings" in the Acrobat Help.)
    Isn't it totally obvious to anyone that the margins have to be at least 0.8 inches for hyperlinks to work.....
    I made a new page format slightly larger and increased the margins. After making the PDF file i trimmed it in Adobe. Worked like a dream...
    Roger
    Roger

  • Hello! I have the Acrobat XI test version installed, got the registration Mail and confirmed it. When i have the program opened and try to convert the file from a pdf to a word and press the convert button, it shows a the message "application failed" (in

    Hello! I have the Acrobat XI test version installed, got the registration Mail and confirmed it. When i have the program opened and try to convert the file from a pdf to a word and press the convert button, it shows a the message "application failed" (in german "Fehler bei der Anmeldung"). I hope have explained the issue on the right way with my bad english. Do you have a solution for it?? Best regards, Marcus Wenk

    yes, you are right. it is the adobe reader via exportPDF. but it should be the acrobat. it was written on the internetpage...

  • Server based Office 2013 - where do I save word templates on the server for all users to access from "New"?

    Wonder if anyone can point me in the right direction. I'm used to working with stand alone desktop MS Office products.
    We have a server connected to six desktop work stations. All stations have access to Microsoft Office 2013 on the server, and the printer is linked through
    the server.
    Users are currently accessing Word doc Documents on the shared (p) drive as templates, and then saving them with relevant file names to their area on the
    (p).
    Surely there is a way to save Word templates to the server, so that when someone clicks on "New" in Word our own templates are also offered automatically?
    Thanks
    Mark

    If
    anyone knows the address
    for where Microsoft stores the main default templates  - then that would
    be really useful? It would also allow us to get rid of the numerous templates that we would never use.
    Thanks :)

  • Office 2013 - Unable to open word template

    Hi,
    I have windows service written in VC++ and trying to open a word template xxx.dotx located on the server. however, I am geting below error code while opening the same template. I have written a sample application and it is opening the template.
    my windows service is 32 bit and I have installed office 2013 64bit and OS win 7 64bit.
    <hr=-2147467259>
    working code
    #import "MSO.DLL" rename_namespace("MSOFFICE") rename("RGB", "ofRGB") rename("DocumentProperties", "ofDocumentProperties")
    #import "VBE6EXT.OLB" rename_namespace("MSVBEXT") rename("Application", "ApplicationVBExt") raw_interfaces_only
    #import "msword.olb" rename_namespace("MSWORD") rename("DialogBox", "DialogBoxWRD") rename("RGB", "RGBWRD") rename("DocumentProperties", "DocumentPropertiesWRD") rename("ExitWindows", "ExitWindowsWRD") named_guidsvoid CWordTestDlg::OnButton1()
    // TODO: Add your control notification handler code here
    MSWORD::_ApplicationPtr m_pWordApp;
    HRESULT hr = m_pWordApp.CreateInstance("Word.Application");
    if(FAILED(hr))
    AfxMessageBox("Unable to start MS Word.", hr);
    return;
    AfxMessageBox("Successfully Created");
    m_pWordApp->DisplayAlerts = MSWORD::wdAlertsNone;
    // Make sure the application is not visible.
    m_pWordApp->Visible = VARIANT_FALSE;
    MSWORD::_DocumentPtr m_pWordDoc = NULL;;
    MSWORD::DocumentsPtr pDocs = m_pWordApp->Documents;
    if(pDocs == NULL)
    AfxMessageBox("Unable to retrieve the documents collection from MS Word.", pDocs);
    return;
    // Open the template.
    CComVariant varTemplateName(_T("\\\\xxx.xxx.xxx.xxx\\kx.dotx"));
    m_pWordDoc = pDocs->Open(&varTemplateName);
    if(m_pWordDoc == NULL)
    CString msg;
    msg.Format("Unable to open %s.", _T("\\\\xxx.xxx.xxx.xxx\\kx.dotx"));
    AfxMessageBox(msg);
    return;
    AfxMessageBox("Successfully Opened");
    m_pWordApp.Detach();
    // Reset the MSWord Document ptr.
    m_pWordDoc.Detach();
    thanks,
    Krishna

    Hi,
    Interop is not supported on a Server or with in a services.
    But if you want to this, you have to set up the Environment. I follow this Guideline with my Word and I'm able to start Word on a Server.
    1) Goto Control panel -> Administrative Tools -> Component Services
    2) Expand Tree by clicking on Component Services -> Computers -> My Computer -> DCOM Config
    3) Search CLSId 00020906-0000-0000-C000-000000000046 (which is for Word 97-2003 application)
    4) By selecting 00020906-0000-0000-C000-000000000046 this CLSId now right click on Properties
    5) In the Propeties area, click on Security TAB
    6) Select Customize option from all (Launch and Activations Permissions, Access Pemissions, Configuration Permissions)
    7) Take the User of the Services and Allow all permissions for this user
    8) Go to Identity TAB in the same properties area, select option as a This user and then add username (the user must be administrator of this machine) and password. Click on Apply, Ok
     Locale Profile: True
    9) Refresh Component Services and check your application is working fine or not.
    10) set Folder, if not present:
       C:\Windows\SysWOW64\config\systemprofile\Desktop
    This article gives some insights.
    http://theether.net/download/Microsoft/kb/288367.html
    Hope this helps.
    Kind Regards
    Thomas

  • Why does choosing "convert to PDF" from a Word Doc's context menu bring up two Save As dialog boxes?

    I have a user that every time she chooses "Convert to PDF" from the context menu on a MS Word document she gets a Save As box, enters the name and location, clicks Save. Then Word starts and it brings up another Save As box and makes her enter the name and save location AGAIN. It does then create the PDF, but it is very annoying to her as she makes lots of PDFs for our board of directors (she is our CEO). I have tried it on other PCs that have a similar setup, but none have done this. They all just run the converter window after one dialog box. Please HELP

    Does your user have custom add-ons besides the Acrobat PDFMaker add-on?  If so, try disabling the other add-ons as a test to see if you get the same results.
    Does your user have a custom template?  Try moving it out and using the standard MS Word template as test?
    Did your user have a previous installation of Adobe Acrobat??  If so, check the Add-ons to see if an older version is still registered with MS Word.

Maybe you are looking for