Am Mon, 18 Sep 2006 03:05:02 -0700 schrieb Paul:
In a VBA group I assume VBA, not any .NET language, for which I can´t help
you.

Signature
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --
> nope-that doesnt work bmark "& operator isnt defined for types
> Microsoft.Interop.Word.Bookmarks and String"
[quoted text clipped - 28 lines]
>>>
>>> Thanks
I think Michael was assuming, by the way you wrote your mItem.Body= bmark statement, that bmark was a string variable holding the text from your bookmark. In that case, bmark & mItem.Body should be a legitimate string expression in VB.Net. If, however, it's a Word.Bookmark object, then you need to get the text first from Bookmark.Range.Text.
In any case, if the message is in HTML format, you would need to use HTMLBody, not Body, to preserve the formatting. But that's doing things the hard way. Since you have Word as the editor, you should use Word methods. See http://www.outlookcode.com/codedetail.aspx?id=615 for sample code.

Signature
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
> nope-that doesnt work bmark "& operator isnt defined for types
> Microsoft.Interop.Word.Bookmarks and String"
[quoted text clipped - 28 lines]
>> >
>> > Thanks