Insert Field / Feld einfügen via .NET

M

Matthias Langbein

Hi all,
can anybody tell me how to insert a field as described in the
following xml-code via .NET (preferrably C#) into a blank document?
I've got

Microsoft.Office.Interop.Word.Application applicationObject
and
Microsoft.Office.Interop.Word.Document ThisDocument

already defined and initialized.

XML-Code:
<w:r><w:fldChar w:fldCharType="begin"/></w:r>
<w:r><w:instrText>MyText1</w:instrText></w:r>
<w:r><w:fldChar w:fldCharType="separate"/></w:r>
<w:r><w:t>MyText2</w:t></w:r>
<w:r><w:fldChar w:fldCharType="end"/></w:r>

THX for your help...
Langi


______________________________________________


Hi zusammen,
can mir jemand sagen, wie ich ein Feld wie im folgenden XML-Code via
..NET (vorzugsweise C#) in ein leeres Dokument einfüge? Ich habe
bereits

Microsoft.Office.Interop.Word.Application applicationObject
und
Microsoft.Office.Interop.Word.Document ThisDocument

definiert und initialisiert.

XML-Code:
<w:r><w:fldChar w:fldCharType="begin"/></w:r>
<w:r><w:instrText>MyText1</w:instrText></w:r>
<w:r><w:fldChar w:fldCharType="separate"/></w:r>
<w:r><w:t>MyText2</w:t></w:r>
<w:r><w:fldChar w:fldCharType="end"/></w:r>

Tausend Dank für jeden Tip. Gruß Langi
 
F

Frank Dzaebel

Hallo Matthias,
can anybody tell me how to insert a field as described in the
following xml-code via .NET (preferrably C#) into a blank document?
<w:r><w:fldChar w:fldCharType="begin"/></w:r>
<w:r><w:instrText>MyText1</w:instrText></w:r>
<w:r><w:fldChar w:fldCharType="separate"/></w:r>
<w:r><w:t>MyText2</w:t></w:r>
<w:r><w:fldChar w:fldCharType="end"/></w:r>

In deutschen Gruppen bitte in Deutsch fragen.
Lösung etwa wie:

[Einfügen eines Feldes in Word mit C#]
http://Dzaebel.NET/WordFieldInsert.htm


ciao Frank
 
M

Marvin Massih

Hallo Matthias,

Matthias Langbein wrote:
[vierfaches X-Post ohne F'up2]

Es reicht i.d.R., nur an eine Newsgroup zu posten.
Und wenn, dann bitte mit gesetztem Followup-To-Header.

Gruß
Marvin
(F'up2 csharp)
 
Top