I am using the following:
Word 2000
..NET 1.1 (Visual Studio 2003)
C#
I actually figured out how to modify the form fields using .NET code
shortly after posting the original question.
The new wrinkle is that after I execute the following statements at the
end of the code:
wordApplication.Quit(...); // wordApplication is of type
Word.ApplicationClass
Marshal.ReleaseComObject(wordApplication);
wordApplication = null;
The process WINWORD.exe (occasionally, and more often than not) stays
resident in memory and consumes 100% of the processor. The only way I
can recover from this is to manually kill the process through Task
Manager. I am not sure what is causing this.