Hello,

I have created a form with a bound object frame containing a Word document. I can activate the document, type something in it, exit Word (I use out-of-place activation), the content is displayed on the form. If I activate the document again, the content is still there. However, when I close the form and re-open it, the content is gone. Also, when I open the associated table I see that there is an OLE object in the associated column, but it is empty.

I have added a simple bound text field and that one works.

Here is an abridged text export for my form:

Begin Form
RecordSource ="SCP_DealFiche"


Caption ="DealFiche2"
Begin
Begin Section
Height =7149
Begin
Begin TextBox
OverlapFlags =95
IMESentenceMode =3
Name ="ISIN_CD"
ControlSource ="ISIN_CD"
End
Begin BoundObjectFrame
OldBorderStyle =1
OverlapFlags =95
OLETypeAllowed =1
BackStyle =1
Name ="DealPerformance"
ControlSource ="DealPerformance"
Class ="Word.Document.8"
End
End
End
End
End

Private Sub Form_Load()
Me!ISIN_CD = "APSCI0000434"

With Me![DealPerformance]
.Enabled = True
.Locked = False
.OLETypeAllowed = acOLEEmbedded
.Class = "Word.Document"
.Action = acOLECreateEmbed
.SizeMode = acOLESizeZoom
.Verb = acOLEVerbOpen
End With

End Sub