MS Word API - EXISTS?

  • Thread starter Thread starter dev2
  • Start date Start date
D

dev2

I'm looking for an API to allow me to programatically an
MS word doc. Does such an API exist?

TIA

dev2
(e-mail address removed)
 
You program Word by creating an object reference to it. In VB/VBA, either
add a project reference to the Word library, or use
CreateObject("Word.Application").
 
Back
Top