OLE objects into word?????

j1nk5

Registered User.
Local time
Today, 15:30
Joined
Sep 10, 2001
Messages
10
Ok this ones a little tricky.

I want to automate the transfer of records to a word document.

I have the following code that creates the word doc and inserts text base on a field on my form.

Private Sub Command8_Click()
Dim WordApp As Word.Application
Dim Documents As Object
Set WordApp = CreateObject("Word.Application")
WordApp.Visible = True
Set doc = WordApp.Documents.Add
doc.Range.Text = Me.Text

End Sub


I then have a field called image which has an OLE Object format field which i want to transfer to the word document.

Any help would be great!!
 
Last edited:

Users who are viewing this thread

Back
Top Bottom