JJ
Try taking out the 'Windows(1).Activate
Sub Test()
Dim docMyName As String
docMyName = "My Name"
Documents.Add DocumentType:=wdNewBlankDocument
With Dialogs(wdDialogFileSaveAs)
.Name = docMyName
.Show
End With
End Sub

Signature
Greg Maxey/Word MVP
A Peer in Peer to Peer Support
> I'm trying to open a new document and bring up the File
> Save As dialog to save it. I'm having problems reliably
[quoted text clipped - 15 lines]
> I am running MS Word 2002 on Windows 2000.
> J.J. Kayande