S
sd
hello
I need to assign formatted text to postitem's body.I tried HtmlBody
prop of PostItem but I need to modify
existing HtmlBody to append my formatted text to it.I tried with
redemption.SafePostItem as it has RTFBody
prop.But when I append my formatted text to RTFBody prop of
SafePostItem,it is not reflected on postitem's
body.I'm using below code
' BttnAdd_Click()
ObjSafePostItem = CreateObject("Redemption.SafePostItem")
If ObjSafePostItem IsNot Nothing Then
ObjSafePostItem.item = CurrentPostItem
ObjSafePostItem.RtfBody += ctlTxtLog.Text +
ControlChars.NewLine 'ctlTxtLog -txtbox on customized post form
ObjSafePostItem = Nothing
ctlTxtLog.Text = ""
End If
how to add formatted text to postitem's body & get it reflected
immediately on form? I'm using OL 2007.
Thanks
I need to assign formatted text to postitem's body.I tried HtmlBody
prop of PostItem but I need to modify
existing HtmlBody to append my formatted text to it.I tried with
redemption.SafePostItem as it has RTFBody
prop.But when I append my formatted text to RTFBody prop of
SafePostItem,it is not reflected on postitem's
body.I'm using below code
' BttnAdd_Click()
ObjSafePostItem = CreateObject("Redemption.SafePostItem")
If ObjSafePostItem IsNot Nothing Then
ObjSafePostItem.item = CurrentPostItem
ObjSafePostItem.RtfBody += ctlTxtLog.Text +
ControlChars.NewLine 'ctlTxtLog -txtbox on customized post form
ObjSafePostItem = Nothing
ctlTxtLog.Text = ""
End If
how to add formatted text to postitem's body & get it reflected
immediately on form? I'm using OL 2007.
Thanks