Recent content by vinimall

  1. V

    from Access to Excel

    Hi, Is there any chance you have a sample database with this code in so I can see it working? Im neve to this VBA thisg Thanks Vinimall
  2. 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