Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 10-17-2015, 09:53 PM
Guessed's Avatar
Guessed Guessed is offline corrupted source list? Windows 7 32bit corrupted source list? Office 2010 32bit
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 4,176
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default


The Bibliography in a docx/docm is stored as a CustomXMLPart and this can be extracted to an xml file if you wanted to save all those items in a structured file format which can be edited with text editors or xml tools and then placed back into the document. The following code would extract that file to the same folder as the document.
Code:
Sub WriteBibliographyToFile()
  Dim xmlPart As CustomXMLPart
  Dim sFilename As String
  
'  For Each xmlPart In ActiveDocument.CustomXMLParts
'    Debug.Print xmlPart.ID & vbTab & xmlPart.NamespaceURI
'  Next xmlPart
  
  Set xmlPart = ActiveDocument.CustomXMLParts.SelectByNamespace("http://schemas.openxmlformats.org/officeDocument/2006/bibliography").Item(1)
  If Not xmlPart Is Nothing Then
    sFilename = ActiveDocument.Path & "\Bibliography.xml"
    'Debug.Print xmlPart.XML
    Call WriteStringToFile(sFilename, xmlPart.XML)
  End If

End Sub
Sub WriteStringToFile(pFileName As String, pString As String)
  Dim intFileNum As Integer
  intFileNum = FreeFile
  Open pFileName For Output As intFileNum
    Print #intFileNum, pString
  Close intFileNum
End Sub
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
corrupted source list? Urgent: Multi Level List issues with list levels becoming "corrupted?" beanie Word 5 05-24-2014 10:04 AM
Citations Source Manager Master List empty! rachetta Word 16 08-07-2012 03:30 PM
corrupted source list? drop down list from external data source Excel 2007? Intruder Excel 1 08-03-2012 05:41 AM
Corrupted strike Office 0 05-15-2010 03:28 PM
corrupted source list? Installation Source Corrupted browneyes Office 1 01-23-2006 02:33 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 04:24 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft