How do create an applications that you can insert into a word document using word->insert->object object type ?
Printable View
How do create an applications that you can insert into a word document using word->insert->object object type ?
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
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.