Opening Word without loading templates through VBA

P

pranavsv

Hi,

I am using Word 2003.

I want to open Word in my VBA code without loading the templates
(similar to winword/a from command line)

I'm using Cretaeobject("Word.Application").
I would like to load Word application without loading the default
templates and assign it to an Object variable.

Her's my current code

Private m_app As Object
Set m_app = CreateObject("Word.Application")

Can someone help me on this?

Thanks.
 
Top