.NET
bibport.txt
Associated article: BibPort: Creating Bibliographic References
Tags: Global Developer .NET Tools Design
Published source code accompanying the article by Matthew Curry and Jeffrey G. Gray in which they present BibPort, a tool that extracts relevant information from a set of legacy documents to create a database of bibliographic references using Visual Studio Tools for Office in combination with Visual Studio 2008 and Word 2007. Also see BIBPORT2008.ZIP.
BibPort: Creating Bibliographic References
by Matthew Curry and Jeffrey G. Gray
Listing One
Word.Document doc = Globals.ThisAddIn.Application.ActiveDocument;
while (doc.Words[index].Underline ==
word.WdUnderline.wdUnderlineSingle)
{
if (doc.Words[index].Text.Trim() == "." &&
doc.Words[...


