Sorry for trouble you again,but i have another question need you to resolve.
$oItem = _OL_ItemCreate($oOutlook, $olMailItem, "Outlook-UDF-Test\SourceFolder\mail", "", "Subject=TestMail", "BodyFormat=" & $olFormatHTML, "HTMLBody=Bodytext in <b>bold</b>.")
For the HTMLBody property, How to write a line break?
I tried like< "HTMLBody=123"&@CRLF&"456"> ,but the string "123" and "456" are still in the sam row.
SO i changed the line 2144 and 2145 like belows:
$oOL_Item.ItemProperties.Item(StringStripWS(StringLeft($aOL_Properties[$iOL_Index], $iOL_Pos - 1), 3) ).value = _
StringMid($aOL_Properties[$iOL_Index], $iOL_Pos + 1)
(delete the second StringStripWS function) and it is not working.
Please help...thx again