|
-
May 3rd, 2001, 02:18 PM
#1
Word
How do create an applications that you can insert into a word document using word->insert->object object type ?
-
May 4th, 2001, 02:30 AM
#2
Re: Word
This will insert a new empty bitmap in the document
set WA = CreateObject("Word.Application")
WA.Visible = true
set Doc = WA.Documents.Add()
Doc.Shapes.AddOLEObject ClassType:="Paint.Picture", FileName:="", _
LinkToFile:=false, DisplayAsIcon:=false
Tom Cannaerts
[email protected]
Programming today is a race between software engineers striving to build bigger and better idot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook
-
May 4th, 2001, 03:46 PM
#3
Re: Word
Many thanks but what I am really after is the ability to create an application that word will recognise in its list of object types.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|