+ Reply to Thread
Results 1 to 4 of 4

Thread: copying building blocks

  1. #1
    Registered User
    Join Date
    11-10-2011
    Location
    Pennsylvania
    MS-Off Ver
    Excel 2010
    Posts
    3

    copying building blocks

    i have a user who will be on leave for a few months. she uses the building blocks app quite frequently and we would like the current employee who will be assuming her duties to have access to the building blocks on her own laptop.

    is there a way to copy the building blocks directory/information from on computer to another?

    I have attached a photo of where building blocks is being used in case others use it as a different name (i heard it called auto text too)

    thanks

    Jerry
    Attached Images Attached Images

  2. #2
    Forum Guru snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,151

    Re: copying building blocks

    You can copy the template that contains those autotextentries to the other user's system.



  3. #3
    Registered User
    Join Date
    11-10-2011
    Location
    Pennsylvania
    MS-Off Ver
    Excel 2010
    Posts
    3

    Re: copying building blocks

    Quote Originally Posted by snb View Post
    You can copy the template that contains those autotextentries to the other user's system.

    how would i go about doing so?

  4. #4
    Forum Guru snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,151

    Re: copying building blocks

    I assum the autotextentries are part of the normaltemplate.

    then use this macro
     
    Sub snb()
     With Documents.Add
       .SaveAs "E:\OF\Autotextentries.dot", wdFormatTemplate
       .Close
     End With
     Documents.Add "E:\OF\Autotextentries.dot"
        
     For Each te In NormalTemplate.AutoTextEntries
       Application.OrganizerCopy NormalTemplate, ActiveDocument.AttachedTemplate, te.Name, wdOrganizerObjectAutoText
     Next
    
     ActiveDocument.AttachedTemplate.Save
     ActiveDocument.Close
    End Sub
    Now the result is a template 'Autotextentries.dot'
    Every new document based on this template wil contain all 'buildingblocks'.



+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.2.0