Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Open document as hidden

Status
Not open for further replies.

scousethemoose

Programmer
Jul 14, 2002
69
AU
Hi I'm using Word 97 and I'm trying to open a document as hidden. I have found this code but I think it only works with Word 2000.

Code:
Documents.Open("C:\Test 1.doc", Visible:=False)

Does anyone know the code for word 97 if it is even possible?

Thanks
 
Hi scousethemoose,

Perhaps:
Application.Visible = False
or
Windows("DocumentName").Visible = False
would achieve the result you're after.

Cheers
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top