Search results

  1. V

    Save As in word

    Hi I have a word document where on the On Close event I have the following code: Sub SaveFilename() Dim PathAndFileName As String, n As Long PathAndFileName = Path & "\Letters\.doc" If Dir(PathAndFileName & ".doc") = "" Then ActiveDocument.SaveAs (PathAndFileName & ".doc") Else n =...
Back
Top Bottom