Recent content by sillykid

  1. S

    Word Mail Merge through Access, small error

    Hello, I've edited it again and still am seeking your help. I'm having an issue calling the database.
  2. S

    Word Mail Merge through Access, small error

    My code is now Function RunWordMacro() Const wdFieldMergeField As Long = 59 Const wdSendToEmail As Long = 2 Const wdDefaultFirstRecord As Long = 1 Const wdDefaultLastRecord As Long = -16 Dim WordApp As Object Dim WordDoc As Object Set WordApp = CreateObject("Word.Application")...
  3. S

    Word Mail Merge through Access, small error

    I'm sorry, I still don't understand where to put it. using the ? thing, I found: ?wdSendToEmail 2 ?wdDefaultFirstRecord 1 ?wdDefaultLastRecord -16 Thank you for your patience.
  4. S

    Word Mail Merge through Access, small error

    ok, I enabled everything. Where in the code do I put the line "wdFieldMergeField As Long = 59"? and is that the only thing I need to add?
  5. S

    Word Mail Merge through Access, small error

    Thanks for your help. It says my macros aren't enabled, even though I'm pretty sure they are. How else could I find them? and where in the code do I put that line? I'm very new to this (Just started yesterday). Thanks again for your prompt response.
  6. S

    Word Mail Merge through Access, small error

    My code is as follows: Function RunWordMacro() Dim WordApp As Object Dim WordDoc As Object Set WordApp = CreateObject("Word.Application") Set WordDoc = WordApp.Documents.Open _ ("S:\MGMTSRV\INDIVIDUAL STAFF PROJECTS\MSwagle1\mailmerge.docm") WordApp.Visible = True...
  7. S

    Word Macro - Running one from Access?

    I can't click References under Tools. How do I fix this?
Back
Top Bottom