The Word object thats created is invisible If youd like to see the object while its being manipulated, set its Visible property to Tr
Sub GetWordVersion() Dim WordApp As Object Set WordApp = CreateObject("Word.Application") MsgBox WordApp.Version WordApp.Visible = True WordApp.Quit Set WordApp = Nothing End Sub