minimising word document

C

Chris

Hello Group. from Access. I am opening a word document and inserting some
bookmarks.

I would like the document to be minimised but I can either get it full
screen or hidden.

I don't see anything within objword.documents or through active documents.

any ideas?
 
B

Barry Gilbert

Something like this should work:

Dim objWord As New Word.Application
objWord.Documents.Add
' Do your bookmark stuff here
objWord.Visible = True
objWord.WindowState = wdWindowStateMinimize

Barry
 
C

Chris

your the man!

Barry Gilbert said:
Something like this should work:

Dim objWord As New Word.Application
objWord.Documents.Add
' Do your bookmark stuff here
objWord.Visible = True
objWord.WindowState = wdWindowStateMinimize

Barry
 
Top